Implementation Guide
23.1.0 - R4 APIs

Publish Box goes here

: General Organization Example - TTL Representation

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:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "Example1"] ; # 
  fhir:meta [
fhir:lastUpdated [ fhir:v "2020-07-30T05:28:31.000-06:00"^^xsd:dateTime ] ;
    ( fhir:profile [
fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization"^^xsd:anyURI ;
fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization>     ] [
fhir:v "https://docs.mydata.athenahealth.com/fhir-r4/StructureDefinition/athena-organization-profile"^^xsd:anyURI ;
fhir:link <https://docs.mydata.athenahealth.com/fhir-r4/StructureDefinition/athena-organization-profile>     ] )
  ] ; # 
  fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Organization Example1</b></p><a name=\"Example1\"> </a><a name=\"hcExample1\"> </a><a name=\"Example1-en-US\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Last updated: 2020-07-30 05:28:31-0600</p><p style=\"margin-bottom: 0px\">Profiles: <a href=\"http://hl7.org/fhir/us/core/STU3.1/StructureDefinition-us-core-organization.html\">US Core Organization Profile</a>, <a href=\"StructureDefinition-athena-organization-profile.html\">A grouping of people or organizations with a common purpose</a></p></div><p><b>identifier</b>: Organization identifier/DF-404, National provider identifier/4664925060, Tax ID number/4097734063</p><p><b>active</b>: true</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/organization-type prov}\">Healthcare Provider</span></p><p><b>name</b>: Main Health System</p><p><b>telecom</b>: ph: 214123456798011(Mobile), 214123456688011</p><p><b>address</b>: Facility Address Line 1 Facility Address Line 2 Manchester TX 75002      US </p></div>"
  ] ; # 
  fhir:identifier ( [
fhir:type [
      ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "XX" ] ;
fhir:display [ fhir:v "Organization identifier" ]       ] ) ;
fhir:text [ fhir:v "Organization identifier" ]     ] ;
fhir:system [ fhir:v "https://docs.mydata.athenahealth.com/fhir-r4/athenaFlex/namingsystem/ORGANIZATION/1000-4-9390"^^xsd:anyURI ] ;
fhir:value [ fhir:v "DF-404" ]
  ] [
fhir:type [
      ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "NPI" ]       ] )     ] ;
fhir:system [ fhir:v "http://hl7.org/fhir/sid/us-npi"^^xsd:anyURI ] ;
fhir:value [ fhir:v "4664925060" ]
  ] [
fhir:type [
      ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "TAX" ]       ] )     ] ;
fhir:system [ fhir:v "urn:oid:2.16.840.1.113883.4.2"^^xsd:anyURI ] ;
fhir:value [ fhir:v "4097734063" ]
  ] ) ; # 
  fhir:active [ fhir:v "true"^^xsd:boolean] ; # 
  fhir:type ( [
    ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/organization-type"^^xsd:anyURI ] ;
fhir:code [ fhir:v "prov" ] ;
fhir:display [ fhir:v "Healthcare Provider" ]     ] ) ;
fhir:text [ fhir:v "Healthcare Provider" ]
  ] ) ; # 
  fhir:name [ fhir:v "Main Health System"] ; # 
  fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "214123456798011" ] ;
fhir:use [ fhir:v "mobile" ]
  ] [
fhir:system [ fhir:v "pager" ] ;
fhir:value [ fhir:v "214123456688011" ]
  ] ) ; # 
  fhir:address ( [
    ( fhir:line [ fhir:v "Facility Address Line 1" ] [ fhir:v "Facility Address Line 2" ] ) ;
fhir:city [ fhir:v "Manchester" ] ;
fhir:state [ fhir:v "TX" ] ;
fhir:postalCode [ fhir:v "75002     " ] ;
fhir:country [ fhir:v "US" ]
  ] ) . #