Guia de Implementação do AnHealth
0.2.0 - CI Build

Guia de Implementação do AnHealth - Local Development build (v0.2.0). See the Directory of published versions

: ProcedureType - TTL Representation

Draft as of 2022-12-16

Raw ttl | Download


@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:CodeSystem;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "ProcedureType"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>This code system <code>https://ancode.app/fhir/CodeSystem/ProcedureType</code> defines the following codes:</p><table class=\"codes\"><tr><td style=\"white-space:nowrap\"><b>Code</b></td></tr><tr><td style=\"white-space:nowrap\">Consultation<a name=\"ProcedureType-Consultation\"> </a></td></tr><tr><td style=\"white-space:nowrap\">Procedure<a name=\"ProcedureType-Procedure\"> </a></td></tr><tr><td style=\"white-space:nowrap\">Hospitalization<a name=\"ProcedureType-Hospitalization\"> </a></td></tr></table></div>"
  ];
  fhir:CodeSystem.url [ fhir:value "https://ancode.app/fhir/CodeSystem/ProcedureType"];
  fhir:CodeSystem.version [ fhir:value "0.2.0"];
  fhir:CodeSystem.name [ fhir:value "ProcedureType"];
  fhir:CodeSystem.status [ fhir:value "draft"];
  fhir:CodeSystem.experimental [ fhir:value "false"^^xsd:boolean];
  fhir:CodeSystem.date [ fhir:value "2022-12-16"^^xsd:date];
  fhir:CodeSystem.publisher [ fhir:value "Ancode"];
  fhir:CodeSystem.contact [
     fhir:index 0;
     fhir:ContactDetail.telecom [
       fhir:index 0;
       fhir:ContactPoint.system [ fhir:value "url" ];
       fhir:ContactPoint.value [ fhir:value "https://ancode.app" ]     ]
  ];
  fhir:CodeSystem.description [ fhir:value "Procedure Type"];
  fhir:CodeSystem.caseSensitive [ fhir:value "true"^^xsd:boolean];
  fhir:CodeSystem.content [ fhir:value "complete"];
  fhir:CodeSystem.concept [
     fhir:index 0;
     fhir:CodeSystem.concept.code [ fhir:value "Consultation" ];
     fhir:CodeSystem.concept.display [ fhir:value "Consultation" ]
  ], [
     fhir:index 1;
     fhir:CodeSystem.concept.code [ fhir:value "Procedure" ];
     fhir:CodeSystem.concept.display [ fhir:value "Procedure" ]
  ], [
     fhir:index 2;
     fhir:CodeSystem.concept.code [ fhir:value "Hospitalization" ];
     fhir:CodeSystem.concept.display [ fhir:value "Hospitalization" ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.