Onyx Consent Authorization SAFHIR Implementation and Operations Guide
0.0.2 - ci-build
Onyx Consent Authorization SAFHIR Implementation and Operations Guide - Local Development build (v0.0.2). See the Directory of published versions
@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 "AppDeveloper"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization> ]
];
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><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\">Resource \"AppDeveloper\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"http://hl7.org/fhir/us/core/STU4/StructureDefinition-us-core-organization.html\">US Core Organization Profile</a></p></div><p><b>active</b>: true</p><p><b>name</b>: Onyx Health App Development, LLC</p><p><b>telecom</b>: ph: 410-782-0476(WORK), https://onyxhealth.io(WORK)</p><p><b>address</b>: 6518 Meadowridge Road, Ste. 100, Elkridge, MD 21075</p><p><b>endpoint</b>: <a href=\"Endpoint-200.html\">Endpoint/200</a> \"Diamond Health Patient Access API\"</p></div>"
];
fhir:Organization.active [ fhir:value "true"^^xsd:boolean];
fhir:Organization.name [ fhir:value "Onyx Health App Development, LLC"];
fhir:Organization.telecom [
fhir:index 0;
fhir:ContactPoint.system [ fhir:value "phone" ];
fhir:ContactPoint.value [ fhir:value "410-782-0476" ];
fhir:ContactPoint.use [ fhir:value "work" ]
], [
fhir:index 1;
fhir:ContactPoint.system [ fhir:value "other" ];
fhir:ContactPoint.value [ fhir:value "https://onyxhealth.io" ];
fhir:ContactPoint.use [ fhir:value "work" ]
];
fhir:Organization.address [
fhir:index 0;
fhir:Address.text [ fhir:value "6518 Meadowridge Road, Ste. 100, Elkridge, MD 21075" ];
fhir:Address.line [
fhir:value "6518 Meadowridge Road";
fhir:index 0 ], [
fhir:value "Suite 200";
fhir:index 1 ];
fhir:Address.city [ fhir:value "Elkridge" ];
fhir:Address.state [ fhir:value "MD" ];
fhir:Address.postalCode [ fhir:value "21075" ]
];
fhir:Organization.endpoint [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Endpoint/200" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.