Last active
March 5, 2021 15:49
-
-
Save bwalsh/70cfd959780e76f99235e8fa8a6c8eef to your computer and use it in GitHub Desktop.
Example FHIR resource
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"resourceType": "DocumentReference", | |
"id": "example-document-reference-id3", | |
"meta": { | |
"profile": [ | |
"http://fhir.ncpi-project-forge.io/StructureDefinition/ncpi-drs-document-reference" | |
] | |
}, | |
"status": "current", | |
"identifier": [ | |
{ | |
"system": "urn:ncpi:unique-string", | |
"value": "example-document-reference-id3" | |
} | |
], | |
"content": [ | |
{ | |
"attachment": { | |
"url": "drs://dg.ANV0/a3177754-19c7-41a0-94ce-0943a47ce931" | |
} | |
} | |
], | |
"custodian": { | |
"reference": "Organization/example-organization-id" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment