w3c / hcls-fhir-rdf

Sketching out an RDF representation for FHIR
39 stars 15 forks source link

Type arcs are no longer generated for FHIR code systems #80

Closed hsolbrig closed 11 months ago

hsolbrig commented 4 years ago

Entries for FHIR v2, v3 and plain old FHIR coding systems no longer emit type arcs. The entry below should have a line in the form of either:

rdf:type <http://hl7.org/fhir/v3/ActCode/PBILLACCT> ; or rdf:type <http://terminology.hl7.org/CodeSystem/v3-ActCode/PBILLACCT>;

I believe the reason that a type arc is not being generated is because, at some point, the base format changed from the first form above to the second. We still need to decide which form we will use in the RDF.

IT WOULD SURE BE NICE IF THE FHIR COMMUNITY COULD AGREE ON A CONCEPT URI FORMAT

fhir:Account.type [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
       fhir:Coding.code [ fhir:value "PBILLACCT" ];
       fhir:Coding.display [ fhir:value "patient billing account" ]
     ];
     fhir:CodeableConcept.text [ fhir:value "patient" ]
  ];
dbooth-boston commented 11 months ago

Now handled with fhir:link