BD-Core-FHIR-IG/input/examples/Library-example.json

27 lines
646 B
JSON

{
"resourceType" : "Library",
"id": "example",
"url" : "http://somewhere.org/fhir/uv/myig/Library/example",
"version" : "1.0.0",
"name": "Example",
"title": "Example CQL Library",
"status" : "draft",
"experimental": true,
"description": "Some example library",
"type" : {
"coding" : [{
"system" : "http://terminology.hl7.org/CodeSystem/library-type",
"code" : "logic-library"
}]
},
"subjectCodeableConcept": {
"coding": [{
"system": "http://hl7.org/fhir/resource-types",
"code": "Patient"
}]
},
"content" : [{
"id" : "ig-loader-example.cql"
}]
}