@prefix fhir: .
@prefix rdfs: .
# - resource -------------------------------------------------------------------
[] a fhir:ConceptMap;
fhir:Resource.id [ fhir:value "example2"];
fhir:ConceptMap.url [ fhir:value "http://hl7.org/fhir/ConceptMap/example2"];
fhir:ConceptMap.name [ fhir:value "FHIR-exanple-2"];
fhir:ConceptMap.title [ fhir:value "FHIR Example 2"];
fhir:ConceptMap.status [ fhir:value "draft"];
fhir:ConceptMap.experimental [ fhir:value "true"];
fhir:ConceptMap.date [ fhir:value "2012-06-13"];
fhir:ConceptMap.publisher [ fhir:value "HL7, Inc"];
fhir:ConceptMap.contact [
fhir:index 0;
fhir:ContactDetail.name [ fhir:value "FHIR project team (example)" ];
fhir:ContactDetail.telecom [
fhir:index 0;
fhir:ContactPoint.system [ fhir:value "url" ];
fhir:ContactPoint.value [ fhir:value "http://hl7.org/fhir" ]
]
];
fhir:ConceptMap.description [ fhir:value "An example mapping"];
fhir:ConceptMap.purpose [ fhir:value "To illustrate mapping features"];
fhir:ConceptMap.source [ fhir:value "http://example.org/fhir/example1"];
fhir:ConceptMap.target [ fhir:value "http://example.org/fhir/example2"];
fhir:ConceptMap.group [
fhir:index 0;
fhir:ConceptMap.source [ fhir:value "http://example.org/fhir/example1" ];
fhir:ConceptMap.target [ fhir:value "http://example.org/fhir/example2" ];
fhir:ConceptMap.element [
fhir:index 0;
fhir:ConceptMap.code [ fhir:value "code" ];
fhir:ConceptMap.display [ fhir:value "Example Code" ];
fhir:ConceptMap.target [
fhir:index 0;
fhir:ConceptMap.code [ fhir:value "code2" ];
fhir:ConceptMap.display [ fhir:value "Some Example Code" ];
fhir:ConceptMap.equivalence [ fhir:value "equivalent" ];
fhir:ConceptMap.dependsOn [
fhir:index 0;
fhir:ConceptMap.property [ fhir:value "http://example.org/fhir/property-value/example" ];
fhir:ConceptMap.system [ fhir:value "http://example.org/fhir/example3" ];
fhir:ConceptMap.value [ fhir:value "some-code" ];
fhir:ConceptMap.display [ fhir:value "Something Coded" ]
]
]
];
fhir:ConceptMap.unmapped [
fhir:ConceptMap.mode [ fhir:value "other-map" ];
fhir:ConceptMap.url [ fhir:value "http://example.org/fhir/ConceptMap/map2" ]
]
] .
# -------------------------------------------------------------------------------------