@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://loinc.org/rdf#> .
@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 -------------------------------------------------------------------

<http://hl7.org/fhir/uv/aitransparency/Observation/other-model-result> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "other-model-result"] ;
  fhir:Resource.meta [
     fhir:Meta.security [
       fhir:index -1 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ObservationValue" ] ;
       fhir:Coding.code [ fhir:value "AIAST" ] ;
       fhir:Coding.display [ fhir:value "Artificial Intelligence asserted" ]
     ]
  ] ;
  fhir:Resource.language [ fhir:value "en"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Observation other-model-result</b></p><a name=\"other-model-result\"> </a><a name=\"hcother-model-result\"> </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\"/><p style=\"margin-bottom: 0px\">Security Label: <a href=\"http://terminology.hl7.org/7.2.0/CodeSystem-v3-ObservationValue.html\">Artificial Intelligence asserted (Details: ObservationValue code AIAST = 'Artificial Intelligence asserted')</a></p></div><p><b>status</b>: Final</p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 718-7}\">Hemoglobin [Mass/volume] in Blood</span></p><p><b>subject</b>: <a href=\"http://server.example.org/fhir/Patient/f201\">http://server.example.org/fhir/Patient/f201</a></p><p><b>effective</b>: 2026-01-15 10:55:00+0000</p><p><b>value</b>: 13.2 g/dL<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM  codeg/dL = 'g/dL')</span></p><p><b>device</b>: <a href=\"Device-TheOtherAI.html\">Device: extension = Large Language Models; identifier = http://example.org/ehr/client-ids#otherhealth; manufacturer = Beta Diagnostics, Inc; type = All kinds of Artificial Intelligence; contact = http://example.org/other-ai</a></p></div>"
  ] ;
  fhir:Observation.status [ fhir:value "final"] ;
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       a loinc:718-7 ;
       fhir:Coding.system [ fhir:value "http://loinc.org" ] ;
       fhir:Coding.code [ fhir:value "718-7" ] ;
       fhir:Coding.display [ fhir:value "Hemoglobin [Mass/volume] in Blood" ]
     ]
  ] ;
  fhir:Observation.subject [
     fhir:link <http://server.example.org/fhir/Patient/f201> ;
     fhir:Reference.reference [ fhir:value "http://server.example.org/fhir/Patient/f201" ]
  ] ;
  fhir:Observation.effectiveDateTime [ fhir:value "2026-01-15T10:55:00Z"^^xsd:dateTime] ;
  fhir:Observation.valueQuantity [
     fhir:Quantity.value [ fhir:value "13.2"^^xsd:decimal ] ;
     fhir:Quantity.unit [ fhir:value "g/dL" ] ;
     fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ] ;
     fhir:Quantity.code [ fhir:value "g/dL" ]
  ] ;
  fhir:Observation.device [
     fhir:link <http://hl7.org/fhir/uv/aitransparency/Device/TheOtherAI> ;
     fhir:Reference.reference [ fhir:value "Device/TheOtherAI" ]
  ] .

<http://hl7.org/fhir/uv/aitransparency/Device/TheOtherAI> a fhir:uv .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/uv/aitransparency/Observation/other-model-result.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/uv/aitransparency/Observation/other-model-result.ttl> .

# -------------------------------------------------------------------------------------

