@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:CodeSystem; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "v3-iso3166-2"]; # fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

This code system urn:iso:std:iso:3166:-2 defines many codes, but they are not represented here

" ]; # fhir:CodeSystem.url [ fhir:value "urn:iso:std:iso:3166:-2"]; # fhir:CodeSystem.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "urn:ietf:rfc:3986" ]; fhir:Identifier.value [ fhir:value "urn:oid:1.0.3166.2" ] ]; # fhir:CodeSystem.version [ fhir:value "2013-11"]; # fhir:CodeSystem.name [ fhir:value "Iso3166_2"]; # fhir:CodeSystem.title [ fhir:value "ISO 3166 Part 2 Country Subdivision Codes"]; # fhir:CodeSystem.status [ fhir:value "retired"]; # fhir:CodeSystem.experimental [ fhir:value "false"^^xsd:boolean]; # fhir:CodeSystem.date [ fhir:value "2022-08-23T00:00:00-04:00"^^xsd:dateTime]; # fhir:CodeSystem.publisher [ fhir:value "ISO 3166 Maintenance Agency (ISO)"]; # fhir:CodeSystem.contact [ fhir:index 0; fhir:ContactDetail.name [ fhir:value "International Standards Organization (ISO), International Standards Organization (ISO)" ] ]; # fhir:CodeSystem.description [ fhir:value "Identifies the coding system published in the ISO 3166-2 Standard for Country Subdivision codes. This standard is released periodically, and a new OID will be assigned by ISO for new editions."]; # fhir:CodeSystem.caseSensitive [ fhir:value "true"^^xsd:boolean]; # fhir:CodeSystem.content [ fhir:value "not-present"] . # # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------