-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNamingSystem-be-cbe.ttl
More file actions
56 lines (50 loc) · 3.12 KB
/
NamingSystem-be-cbe.ttl
File metadata and controls
56 lines (50 loc) · 3.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
<https://www.ehealth.fgov.be/standards/fhir/NamingSystem/be-cbe> a fhir:NamingSystem;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "be-cbe"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: be-cbe</p><p><b>name</b>: BeCBENamingSystem</p><p><b>status</b>: active</p><p><b>kind</b>: identifier</p><p><b>date</b>: 05-juin-2019 0:00:00</p><p><b>publisher</b>: eHealth Platform</p><p><b>contact</b>: </p><p><b>description</b>: BCE/KBO</p><p><b>jurisdiction</b>: World <span style=\"background: LightGoldenRodYellow\">(Details : {http://unstats.un.org/unsd/methods/m49/m49.htm code '001' = 'World)</span></p><blockquote><p><b>uniqueId</b></p><p><b>type</b>: uri</p><p><b>value</b>: https://www.ehealth.fgov.be/standards/fhir/NamingSystem/cbe</p><p><b>preferred</b>: true</p></blockquote><blockquote><p><b>uniqueId</b></p><p><b>type</b>: oid</p><p><b>value</b>: 2.16.840.1.113883.3.6777.5.5</p><p><b>preferred</b>: false</p></blockquote></div>"
];
fhir:NamingSystem.name [ fhir:value "BeCBENamingSystem"];
fhir:NamingSystem.status [ fhir:value "active"];
fhir:NamingSystem.kind [ fhir:value "identifier"];
fhir:NamingSystem.date [ fhir:value "2019-06-05T00:00:00+02:00"^^xsd:dateTime];
fhir:NamingSystem.publisher [ fhir:value "eHealth Platform"];
fhir:NamingSystem.contact [
fhir:index 0;
fhir:ContactDetail.name [ fhir:value "Etienne Cantineau" ];
fhir:ContactDetail.telecom [
fhir:index 0;
fhir:ContactPoint.system [ fhir:value "email" ];
fhir:ContactPoint.value [ fhir:value "etienne.cantineau@ehealth.fgov.be" ]
]
];
fhir:NamingSystem.description [ fhir:value "BCE/KBO"];
fhir:NamingSystem.jurisdiction [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://unstats.un.org/unsd/methods/m49/m49.htm" ];
fhir:Coding.code [ fhir:value "001" ]
]
];
fhir:NamingSystem.uniqueId [
fhir:index 0;
fhir:NamingSystem.uniqueId.type [ fhir:value "uri" ];
fhir:NamingSystem.uniqueId.value [ fhir:value "https://www.ehealth.fgov.be/standards/fhir/NamingSystem/cbe" ];
fhir:NamingSystem.uniqueId.preferred [ fhir:value "true"^^xsd:boolean ]
], [
fhir:index 1;
fhir:NamingSystem.uniqueId.type [ fhir:value "oid" ];
fhir:NamingSystem.uniqueId.value [ fhir:value "2.16.840.1.113883.3.6777.5.5" ];
fhir:NamingSystem.uniqueId.preferred [ fhir:value "false"^^xsd:boolean ]
] .
# - ontology header ------------------------------------------------------------
<https://www.ehealth.fgov.be/standards/fhir/NamingSystem/be-cbe.ttl> a owl:Ontology;
owl:imports fhir:fhir.ttl .
# -------------------------------------------------------------------------------------