Stream: EBMonFHIR
Topic: Citation.citedArtifact.state
Yunwei Wang (Mar 25 2021 at 20:34):
The artifact from ARHQ repo has common status as Draft, Active, Archived. These values cannot be mapped to Citation.citedArtifact.state. (Maybe "Active" could be "published-final-form"???) I think three options: 1) add Citation.citedArtifact.status, 2) expand the cited-artifact-status-type value set to include those concepts or 3) the binding is "extensible" so it is safe for me to add additional codings @Brian Alper
Yunwei Wang (Mar 25 2021 at 20:49):
This is what I put in my Citation.citedArtifact.currentState temporarily:
"currentState": [
{
"coding": [
{
"system": "http://hl7.org/fhir/publication-status",
"code": "active"
}
]
}
],
Brian Alper (Mar 25 2021 at 21:37):
I believe you are referring to Citation.citedArtifact.currentState as there is no .state --- we should add draft, active and archived to CitedArtifactStatusType codesystem and valueset. We started with a "starter" set to support MEDLINE but should facilitate commonly used states.
Yunwei Wang (Mar 26 2021 at 13:43):
I mean the "status" just like Citation.status
. I don't mind to combine these values into currentState
value set which is same as my current implementation.
Brian Alper (Apr 01 2021 at 15:01):
Citation.status, like Evidence.status, or EvidenceReport.status is used for the status of the Resource with a required use of 1 of 4 codes (draft | active | retired | unknown) --- if you are seeking draft/active/archived you would simply use "retired" as the code to match your archived concept.
Last updated: Apr 12 2022 at 19:14 UTC