Difference between revisions of "Smart Health Card"
From MgmtWiki
(→Context) |
(→Technical Details) |
||
| Line 22: | Line 22: | ||
* [https://spec.smarthealth.cards Smart Health Card Technical Specs] | * [https://spec.smarthealth.cards Smart Health Card Technical Specs] | ||
| + | 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== | ==References== | ||
[[Category: Health]] | [[Category: Health]] | ||
Revision as of 20:25, 24 September 2021
Contents
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
- What are SMART Health Cards? Web Site from Boston Children's Hospital.
- The primary context is the Kantara Health Care Profile.
- There is a half-baked effort in Microsoft as part of VCI to take ownership of this term for Microsoft or the VCI that they belong to using DIDs.
Design Goals
- Support end-to-end workflow where users receive and present relevant healthcare data
- Enable workflow with open standards
- Support strong cryptographic signatures
- Enable privacy preserving data presentations for specific use cases
Use Cases
- 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.
- Apple iOS 15 can capture and share the Smart Health Card.
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>>", "..."]
}
}
}
}