This page is part of the HL7 Italia FHIR Implementation Guide (base) (v0.1.0: Public Comment 1 Ballot 1) based on FHIR R4. This is the current published version in it's permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
Source view
@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 ------------------------------------------------------------------- a fhir:Organization; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "nice-org"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>id</b>: nice-org</p><p><b>identifier</b>: 12345</p><p><b>active</b>: true</p><p><b>name</b>: Fantastica Azienda</p><p><b>telecom</b>: ph: tel:+39 123 456 7890(MOBILE), mailto:info@nice-org.it(WORK)</p><p><b>address</b>: 1, Piazza Signoria Firenze 50100 IT </p><h3>Contacts</h3><table class=\"grid\"><tr><td>-</td><td><b>Name</b></td></tr><tr><td>*</td><td>Dott. Ivo Serbelloni Viendalmare</td></tr></table></div>" ]; fhir:Organization.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "http://example.org/identificativo" ]; fhir:Identifier.value [ fhir:value "12345" ] ]; fhir:Organization.active [ fhir:value "true"^^xsd:boolean]; fhir:Organization.name [ fhir:value "Fantastica Azienda"]; fhir:Organization.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "tel:+39 123 456 7890" ]; fhir:ContactPoint.use [ fhir:value "mobile" ] ], [ fhir:index 1; fhir:ContactPoint.system [ fhir:value "email" ]; fhir:ContactPoint.value [ fhir:value "mailto:info@nice-org.it" ]; fhir:ContactPoint.use [ fhir:value "work" ] ]; fhir:Organization.address [ fhir:index 0; fhir:Address.line [ fhir:value "1, Piazza Signoria"; fhir:index 0 ]; fhir:Address.city [ fhir:value "Firenze" ]; fhir:Address.postalCode [ fhir:value "50100" ]; fhir:Address.country [ fhir:value "IT" ] ]; fhir:Organization.contact [ fhir:index 0; fhir:Organization.contact.name [ fhir:HumanName.text [ fhir:value "Dott. Ivo Serbelloni Viendalmare" ] ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.