Difference between revisions of "Smart Health Card"

From MgmtWiki
Jump to: navigation, search
(Technical Details)
(Use Cases)
Line 18: Line 18:
 
* Authentication and Information Sharing occurs when a [[Relying Party]] scans or downloads the card and checks the user name and birthdate against other ID, like a driver's license.
 
* Authentication and Information Sharing occurs when a [[Relying Party]] scans or downloads the card and checks the user name and birthdate against other ID, like a driver's license.
 
* [https://support.apple.com/en-us/HT212752 Apple iOS 15 can capture and share] the [[Smart Health Card]].
 
* [https://support.apple.com/en-us/HT212752 Apple iOS 15 can capture and share] the [[Smart Health Card]].
 +
* [https://support.apple.com/guide/healthregister/verifiable-health-records-support-apdc9fec917c/web Verifiable Health Records support] for Apple EHR vendors describes that the SHC is included in the health app rather than in the wallet.
  
 
==Technical Details==
 
==Technical Details==

Revision as of 14:40, 7 October 2021

Full Title or Meme

A (usually virtual) Smart Card containing at least some Identity and some Health Information, typically vaccination data,

The Smart Health Card is one of a series of SMART health specifications initiated by Boston Children's Hospital often with Harvard and other Boston hospitals.

Context

Design Goals

  1. Support end-to-end workflow where users receive and present relevant healthcare data
  2. Enable workflow with open standards
  3. Support strong cryptographic signatures
  4. Enable privacy preserving data presentations for specific use cases

Use Cases

Technical Details

The overall JWS payload matches the following structure (before it is minified and compressed):

{
 "iss": "<<Issuer URL>>",
 "nbf": 1591037940,
 "vc": {
   "type": [
     "https://smarthealth.cards#health-card",
     "<<Additional Types>>",
   ],
   "credentialSubject": {
     "fhirVersion": "<<FHIR Version, e.g. '4.0.1'>>",
     "fhirBundle":{
       "resourceType": "Bundle",
       "type": "collection",
       "entry": ["<<FHIR Resource>>", "<<FHIR Resource>>", "..."]
     }
   }
 }
}

References