Skip to content

Commit

Permalink
adds ccc4 to the samples
Browse files Browse the repository at this point in the history
  • Loading branch information
elmariachi111 committed Feb 16, 2021
1 parent 268e687 commit 0166674
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ a verifier that displays presentiation requests for validateable credential type

https://github.com/decentralized-identity/ethr-did-resolver/pull/106 : the resolver would be able to resolve key material in base58 encoding (instead of base64url) as required by most crypto did libraries at the moment.


curated list of all vaccination passport providers in the world:
https://docs.google.com/document/d/1MQfZzlkYkXCXvnUXd7Cd6Y5g0RRXrKxGGqVcbBnSk1k/edit


# Background

## DID backgrounders
Expand Down Expand Up @@ -264,7 +269,7 @@ CVX (Vacc codes): https://www2a.cdc.gov/vaccines/IIS/IISStandards/vaccines.asp?r
MVX (Vacc manufacturer codes): https://www2a.cdc.gov/vaccines/IIS/IISStandards/vaccines.asp?rpt=mvx
CPT (Snomed?) -> CVXmappings: https://www2a.cdc.gov/vaccines/IIS/IISStandards/vaccines.asp?rpt=cpt

#### Immunization JSON schemas
#### Immunization schemas

FHIR4 immunization general
https://www.hl7.org/fhir/immunization.schema.json.html
Expand All @@ -278,6 +283,11 @@ Covid 19 sample:
https://github.com/microsoft-healthcare-madison/health-wallet-demo/blob/master/src/fixtures/vc.pcr.json
(in action: https://smarthealth.cards/credential-modeling/)

CCC4 initiative's schema, based on a Canadian effort, driven by Consensas / Sovrin e.a.
https://docs.google.com/document/d/1pCyS_lhbMGhOkq1jFEkI_od-9QunURKzGWA7ty5DCII/edit

with a spec background described here: https://docs.google.com/document/d/1a4j0-6kJonEfSlX50ZEfAEbx2ab2IW8UuBK8vigsoLU/edit#heading=h.y43f7b8rk9yr

Qatar open data:
https://www.data.gov.qa/explore/dataset/h4-vaccination/information/

Expand Down
54 changes: 54 additions & 0 deletions docs/samples/ccc4.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"@context": "http://schema.org/",
"@type": "ImmunizationRecord",
"patient": {
"@type": "Patient",
"birthDate": "••••-••-25",
"familyName": "Steele",
"givenName": "Adrian",
"name": "Adrian Steele",
"healthCard": {
"@type": "HealthCard",
"identifier-healthCard": "•••••••••••2097",
"issuedBy": "CA-BC",
"validUntil": "2025-06"
}
},
"primaryPrevention": {
"@type": "ImmunizationRecommendation",
"drug": {
"@type": "Drug",
"code": {
"@type": "MedicalCode",
"codeValue": "MVX-MOD.CVX-207",
"codingSystem": "CDC-MVX.CVX"
},
"manufacturer": {
"@type": "Organization-CDC-MVX",
"identifier": "MVX-MOD",
"name": "Moderna US, Inc."
},
"name": "Moderna COVID-19 Vaccine"
},
"healthCondition": {
"@type": "MedicalCondition",
"code": {
"@type": "MedicalCode",
"codeValue": "U07",
"codingSystem": "ICD-10"
}
}
},
"location": {
"@type": "Hospital",
"address": {
"@type": "PostalAddress",
"addressCountry": "CA",
"addressRegion": "BC"
},
"name": "Shopper's"
},
"doseSequence": 2,
"lotNumber": "1234-5678-90A",
"immunizationDate": "2021-01-01"
}

0 comments on commit 0166674

Please sign in to comment.