@prefix fhir: .
@prefix owl: .
@prefix rdfs: .
@prefix xsd: .
# - resource -------------------------------------------------------------------
a fhir:SupplyDelivery;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "pumpdelivery"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "[Put rendering here]
"
];
fhir:SupplyDelivery.identifier [
fhir:index 0;
fhir:Identifier.value [ fhir:value "98398459409" ];
fhir:Identifier.assigner [
fhir:Reference.display [ fhir:value "SupplierDeliveryNr" ]
]
];
fhir:SupplyDelivery.status [ fhir:value "in-progress"];
fhir:SupplyDelivery.patient [
fhir:Reference.display [ fhir:value "Mr. Belpit" ]
];
fhir:SupplyDelivery.supplier [
fhir:Reference.display [ fhir:value "ACME distribution" ]
];
fhir:SupplyDelivery.destination [
fhir:Reference.display [ fhir:value "Home care dept" ]
];
fhir:SupplyDelivery.receiver [
fhir:index 0;
fhir:Reference.display [ fhir:value "Nurse Smith" ]
] .
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl;
owl:versionIRI .
# -------------------------------------------------------------------------------------