From 8445eef9f005e9af4cd3e5e7fd9d94928cf9a61e Mon Sep 17 00:00:00 2001 From: 5HT Date: Fri, 16 Feb 2024 22:37:19 +0200 Subject: [PATCH] Terminology HTTP API --- index.html | 11 ++ lib/hl7_endpoint.ex | 63 ++++-- ...CodeSystem-AllergyIntoleranceCategory.json | 172 ++++++++--------- ...eSystem-AllergyIntoleranceCriticality.json | 162 ++++++++-------- ...deSystem-DeviceDefinitionRelationType.json | 142 +++++++------- ...System-DeviceRegulatoryIdentifierType.json | 140 +++++++------- .../CodeSystem-DeviceUsageAdherenceCode.json | 142 +++++++------- ...CodeSystem-DeviceUsageAdherenceReason.json | 172 ++++++++--------- .../CodeSystem-DeviceUsageStatus.json | 182 +++++++++--------- 9 files changed, 611 insertions(+), 575 deletions(-) diff --git a/index.html b/index.html index aa01de1..81a9074 100644 --- a/index.html +++ b/index.html @@ -61,6 +61,17 @@

MODULES

post "/$export" post "/$diff" post "/$reindex" + get "/CodeSystem/$lookup" + get "/CodeSystem/:id/$lookup" + get "/CodeSystem/$validate-code" + get "/CodeSystem/:id/$validate-code" + get "/ValueSet/$expand" + get "/ValueSet/:id/$expand" + get "/ConceptMap/$closure" + get "/ConceptMap/:id/$closure" + get "/ConceptMap/$translate" + get "/ConceptMap/:id/$translate" + post "/CodeSystem/$validate-code" post "/:resourceType/$validate" get "/:resourceType/:id" put "/:resourceType/:id" diff --git a/lib/hl7_endpoint.ex b/lib/hl7_endpoint.ex index 5ce67fe..57ae7af 100644 --- a/lib/hl7_endpoint.ex +++ b/lib/hl7_endpoint.ex @@ -4,25 +4,50 @@ defmodule HL7.Endpoint do plug :match plug :dispatch plug Plug.Parsers, parsers: [:json], json_decoder: Jason - get "/" do HL7.Service.root(conn) end - post "/" do HL7.Service.postRoot(conn) end - get "/$meta" do HL7.Service.meta(conn) end - post "/$meta" do HL7.Service.postMeta(conn) end - get "/metadata" do HL7.Service.metadata(conn) end - get "/_history" do HL7.Service.history(conn) end - get "/_diff" do HL7.Service.diff(conn) end - get "/$export" do HL7.Service.export(conn) end - post "/$export" do HL7.Service.postExport(conn) end - post "/$diff" do HL7.Service.postDiff(conn) end - post "/$reindex" do HL7.Service.reindex(conn) end - post "/:type/$validate" do HL7.Service.post4(conn,[],type,[],"$validate") end - get "/:type/:id" do HL7.Service.get4(conn,[],type,id,"$base") end - put "/:type/:id" do HL7.Service.put4(conn,[],type,id,"$base") end - delete "/:type/:id" do HL7.Service.delete4(conn,[],type,id,"$base") end - post "/_search" do HL7.Service.post2(conn,[],"_search") end - post "/:res/_search" do HL7.Service.post3(conn,[],res,"_search") end - post "/:comp/:id/_search" do HL7.Service.post4(conn,[],comp,id,"_search") end - post "/:comp/:id/:res/_search" do HL7.Service.post5(conn,[],comp,id,res,"_search") end + + # Meta Service + + get "/" do HL7.Service.root(conn) end + post "/" do HL7.Service.postRoot(conn) end + get "/$meta" do HL7.Service.meta(conn) end + post "/$meta" do HL7.Service.postMeta(conn) end + get "/metadata" do HL7.Service.metadata(conn) end + get "/$export" do HL7.Service.export(conn) end + post "/$export" do HL7.Service.postExport(conn) end + post "/$diff" do HL7.Service.postDiff(conn) end + post "/$reindex" do HL7.Service.reindex(conn) end + + # Terminology + + get "/CodeSystem/$lookup" do HL7.Service.get4(conn,[],"CodeSystem",[],"$lookup") end + get "/CodeSystem/:id/$lookup" do HL7.Service.get4(conn,[],"CodeSystem",id,"$lookup") end + get "/CodeSystem/$validate-code" do HL7.Service.get4(conn,[],"CodeSystem",[],"$validate-code") end + get "/CodeSystem/:id/$validate-code" do HL7.Service.get4(conn,[],"CodeSystem",id,"$validate-code") end + get "/ValueSet/$expand" do HL7.Service.get4(conn,[],"ValueSet",[],"$expand") end + get "/ValueSet/:id/$expand" do HL7.Service.get4(conn,[],"ValueSet",id,"$expand") end + get "/ConceptMap/$closure" do HL7.Service.get4(conn,[],"ConceptMap",[],"$closure") end + get "/ConceptMap/:id/$closure" do HL7.Service.get4(conn,[],"ConceptMap",id,"$closure") end + get "/ConceptMap/$translate" do HL7.Service.get4(conn,[],"ConceptMap",[],"$translate") end + get "/ConceptMap/:id/$translate" do HL7.Service.get4(conn,[],"ConceptMap",id,"$translate") end + + # Resource Instance Interactions + + post "/:type/$validate" do HL7.Service.post4(conn,[],type,[],"$validate") end + get "/:type/:id" do HL7.Service.get4(conn,[],type,id,"$base") end + get "/:type/:id/_history" do HL7.Service.get4(conn,[],type,id,"_history") end + get "/:type/:id/_history/:vsn" do HL7.Service.get4(conn,vsn,type,id,"_history") end + put "/:type/:id" do HL7.Service.put4(conn,[],type,id,"$base") end + delete "/:type/:id" do HL7.Service.delete4(conn,[],type,id,"$base") end + + # Whole Server Interactions + + get "/_history" do HL7.Service.history(conn) end + get "/_diff" do HL7.Service.diff(conn) end + post "/_search" do HL7.Service.post2(conn,[],"_search") end + post "/:res/_search" do HL7.Service.post3(conn,[],res,"_search") end + post "/:comp/:id/_search" do HL7.Service.post4(conn,[],comp,id,"_search") end + post "/:comp/:id/:res/_search" do HL7.Service.post5(conn,[],comp,id,res,"_search") end + match _ do send_resp(conn, 404, "Please refer to https://hl7.erp.uno manual" <> " for information about endpoints addresses.") end diff --git a/terminology/AllergyIntoleranceCategory/CodeSystem-AllergyIntoleranceCategory.json b/terminology/AllergyIntoleranceCategory/CodeSystem-AllergyIntoleranceCategory.json index 4c95c4c..c0e59d3 100644 --- a/terminology/AllergyIntoleranceCategory/CodeSystem-AllergyIntoleranceCategory.json +++ b/terminology/AllergyIntoleranceCategory/CodeSystem-AllergyIntoleranceCategory.json @@ -1,87 +1,87 @@ -{ - "resourceType" : "CodeSystem", - "id" : "allergy-intolerance-category", - "meta" : { - "lastUpdated" : "2024-02-13T22:01:30.310+00:00", - "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] - }, - "text" : { - "status" : "generated", - "div" : "

This case-sensitive code system http://hl7.org/fhir/allergy-intolerance-category defines the following codes:

CodeDisplayDefinition
food FoodAny substance consumed to provide nutritional support for the body.
medication MedicationSubstances administered to achieve a physiological effect.
environment EnvironmentAny substances that are encountered in the environment, including any substance not already classified as food, medication, or biologic.
biologic BiologicA preparation that is synthesized from living organisms or their products, especially a human or animal protein, such as a hormone or antitoxin, that is used as a diagnostic, preventive, or therapeutic agent. Examples of biologic medications include: vaccines; allergenic extracts, which are used for both diagnosis and treatment (for example, allergy shots); gene therapies; cellular therapies. There are other biologic products, such as tissues, which are not typically associated with allergies.
" - }, - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", - "valueCode" : "pc" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", - "valueCode" : "trial-use" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", - "valueInteger" : 3 - }], - "url" : "http://hl7.org/fhir/allergy-intolerance-category", - "identifier" : [{ - "system" : "urn:ietf:rfc:3986", - "value" : "urn:oid:2.16.840.1.113883.4.642.4.134" - }, - { - "use" : "old", - "system" : "urn:ietf:rfc:3986", - "value" : "urn:oid:2.16.840.1.113883.4.642.1.124" - }, - { - "use" : "old", - "system" : "urn:ietf:rfc:3986", - "value" : "urn:oid:2.16.840.1.113883.4.642.2.53" - }], - "version" : "6.0.0-cibuild", - "name" : "AllergyIntoleranceCategory", - "title" : "Allergy Intolerance Category", - "status" : "active", - "experimental" : false, - "date" : "2021-01-05T10:01:24+11:00", - "publisher" : "HL7 (FHIR Project)", - "contact" : [{ - "telecom" : [{ - "system" : "url", - "value" : "http://hl7.org/fhir" - }, - { - "system" : "email", - "value" : "fhir@lists.hl7.org" - }] - }], - "description" : "Category of an identified substance associated with allergies or intolerances.", - "jurisdiction" : [{ - "coding" : [{ - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "code" : "001", - "display" : "World" - }] - }], - "caseSensitive" : true, - "valueSet" : "http://hl7.org/fhir/ValueSet/allergy-intolerance-category", - "content" : "complete", - "concept" : [{ - "code" : "food", - "display" : "Food", - "definition" : "Any substance consumed to provide nutritional support for the body." - }, - { - "code" : "medication", - "display" : "Medication", - "definition" : "Substances administered to achieve a physiological effect." - }, - { - "code" : "environment", - "display" : "Environment", - "definition" : "Any substances that are encountered in the environment, including any substance not already classified as food, medication, or biologic." - }, - { - "code" : "biologic", - "display" : "Biologic", - "definition" : "A preparation that is synthesized from living organisms or their products, especially a human or animal protein, such as a hormone or antitoxin, that is used as a diagnostic, preventive, or therapeutic agent. Examples of biologic medications include: vaccines; allergenic extracts, which are used for both diagnosis and treatment (for example, allergy shots); gene therapies; cellular therapies. There are other biologic products, such as tissues, which are not typically associated with allergies." - }] +{ + "resourceType" : "CodeSystem", + "id" : "allergy-intolerance-category", + "meta" : { + "lastUpdated" : "2024-02-13T22:01:30.310+00:00", + "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] + }, + "text" : { + "status" : "generated", + "div" : "

This case-sensitive code system http://hl7.org/fhir/allergy-intolerance-category defines the following codes:

CodeDisplayDefinition
food FoodAny substance consumed to provide nutritional support for the body.
medication MedicationSubstances administered to achieve a physiological effect.
environment EnvironmentAny substances that are encountered in the environment, including any substance not already classified as food, medication, or biologic.
biologic BiologicA preparation that is synthesized from living organisms or their products, especially a human or animal protein, such as a hormone or antitoxin, that is used as a diagnostic, preventive, or therapeutic agent. Examples of biologic medications include: vaccines; allergenic extracts, which are used for both diagnosis and treatment (for example, allergy shots); gene therapies; cellular therapies. There are other biologic products, such as tissues, which are not typically associated with allergies.
" + }, + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", + "valueCode" : "pc" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode" : "trial-use" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", + "valueInteger" : 3 + }], + "url" : "http://hl7.org/fhir/allergy-intolerance-category", + "identifier" : [{ + "system" : "urn:ietf:rfc:3986", + "value" : "urn:oid:2.16.840.1.113883.4.642.4.134" + }, + { + "use" : "old", + "system" : "urn:ietf:rfc:3986", + "value" : "urn:oid:2.16.840.1.113883.4.642.1.124" + }, + { + "use" : "old", + "system" : "urn:ietf:rfc:3986", + "value" : "urn:oid:2.16.840.1.113883.4.642.2.53" + }], + "version" : "6.0.0-cibuild", + "name" : "AllergyIntoleranceCategory", + "title" : "Allergy Intolerance Category", + "status" : "active", + "experimental" : false, + "date" : "2021-01-05T10:01:24+11:00", + "publisher" : "HL7 (FHIR Project)", + "contact" : [{ + "telecom" : [{ + "system" : "url", + "value" : "http://hl7.org/fhir" + }, + { + "system" : "email", + "value" : "fhir@lists.hl7.org" + }] + }], + "description" : "Category of an identified substance associated with allergies or intolerances.", + "jurisdiction" : [{ + "coding" : [{ + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "code" : "001", + "display" : "World" + }] + }], + "caseSensitive" : true, + "valueSet" : "http://hl7.org/fhir/ValueSet/allergy-intolerance-category", + "content" : "complete", + "concept" : [{ + "code" : "food", + "display" : "Food", + "definition" : "Any substance consumed to provide nutritional support for the body." + }, + { + "code" : "medication", + "display" : "Medication", + "definition" : "Substances administered to achieve a physiological effect." + }, + { + "code" : "environment", + "display" : "Environment", + "definition" : "Any substances that are encountered in the environment, including any substance not already classified as food, medication, or biologic." + }, + { + "code" : "biologic", + "display" : "Biologic", + "definition" : "A preparation that is synthesized from living organisms or their products, especially a human or animal protein, such as a hormone or antitoxin, that is used as a diagnostic, preventive, or therapeutic agent. Examples of biologic medications include: vaccines; allergenic extracts, which are used for both diagnosis and treatment (for example, allergy shots); gene therapies; cellular therapies. There are other biologic products, such as tissues, which are not typically associated with allergies." + }] } \ No newline at end of file diff --git a/terminology/AllergyIntoleranceCriticality/CodeSystem-AllergyIntoleranceCriticality.json b/terminology/AllergyIntoleranceCriticality/CodeSystem-AllergyIntoleranceCriticality.json index 6c6904a..2681f09 100644 --- a/terminology/AllergyIntoleranceCriticality/CodeSystem-AllergyIntoleranceCriticality.json +++ b/terminology/AllergyIntoleranceCriticality/CodeSystem-AllergyIntoleranceCriticality.json @@ -1,82 +1,82 @@ -{ - "resourceType" : "CodeSystem", - "id" : "allergy-intolerance-criticality", - "meta" : { - "lastUpdated" : "2024-02-13T22:01:30.310+00:00", - "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] - }, - "text" : { - "status" : "generated", - "div" : "

This case-sensitive code system http://hl7.org/fhir/allergy-intolerance-criticality defines the following codes:

CodeDisplayDefinition
low Low RiskWorst case result of a future exposure is not assessed to be life-threatening or having high potential for organ system failure.
high High RiskWorst case result of a future exposure is assessed to be life-threatening or having high potential for organ system failure.
unable-to-assess Unable to Assess RiskUnable to assess the worst case result of a future exposure.
" - }, - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", - "valueCode" : "pc" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", - "valueCode" : "trial-use" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", - "valueInteger" : 3 - }], - "url" : "http://hl7.org/fhir/allergy-intolerance-criticality", - "identifier" : [{ - "system" : "urn:ietf:rfc:3986", - "value" : "urn:oid:2.16.840.1.113883.4.642.4.130" - }, - { - "use" : "old", - "system" : "urn:ietf:rfc:3986", - "value" : "urn:oid:2.16.840.1.113883.4.642.1.120" - }, - { - "use" : "old", - "system" : "urn:ietf:rfc:3986", - "value" : "urn:oid:2.16.840.1.113883.4.642.2.51" - }], - "version" : "6.0.0-cibuild", - "name" : "AllergyIntoleranceCriticality", - "title" : "Allergy Intolerance Criticality", - "status" : "active", - "experimental" : false, - "date" : "2021-01-05T10:01:24+11:00", - "publisher" : "HL7 (FHIR Project)", - "contact" : [{ - "telecom" : [{ - "system" : "url", - "value" : "http://hl7.org/fhir" - }, - { - "system" : "email", - "value" : "fhir@lists.hl7.org" - }] - }], - "description" : "Estimate of the potential clinical harm, or seriousness, of a reaction to an identified substance.", - "jurisdiction" : [{ - "coding" : [{ - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "code" : "001", - "display" : "World" - }] - }], - "caseSensitive" : true, - "valueSet" : "http://hl7.org/fhir/ValueSet/allergy-intolerance-criticality", - "content" : "complete", - "concept" : [{ - "code" : "low", - "display" : "Low Risk", - "definition" : "Worst case result of a future exposure is not assessed to be life-threatening or having high potential for organ system failure." - }, - { - "code" : "high", - "display" : "High Risk", - "definition" : "Worst case result of a future exposure is assessed to be life-threatening or having high potential for organ system failure." - }, - { - "code" : "unable-to-assess", - "display" : "Unable to Assess Risk", - "definition" : "Unable to assess the worst case result of a future exposure." - }] +{ + "resourceType" : "CodeSystem", + "id" : "allergy-intolerance-criticality", + "meta" : { + "lastUpdated" : "2024-02-13T22:01:30.310+00:00", + "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] + }, + "text" : { + "status" : "generated", + "div" : "

This case-sensitive code system http://hl7.org/fhir/allergy-intolerance-criticality defines the following codes:

CodeDisplayDefinition
low Low RiskWorst case result of a future exposure is not assessed to be life-threatening or having high potential for organ system failure.
high High RiskWorst case result of a future exposure is assessed to be life-threatening or having high potential for organ system failure.
unable-to-assess Unable to Assess RiskUnable to assess the worst case result of a future exposure.
" + }, + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", + "valueCode" : "pc" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode" : "trial-use" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", + "valueInteger" : 3 + }], + "url" : "http://hl7.org/fhir/allergy-intolerance-criticality", + "identifier" : [{ + "system" : "urn:ietf:rfc:3986", + "value" : "urn:oid:2.16.840.1.113883.4.642.4.130" + }, + { + "use" : "old", + "system" : "urn:ietf:rfc:3986", + "value" : "urn:oid:2.16.840.1.113883.4.642.1.120" + }, + { + "use" : "old", + "system" : "urn:ietf:rfc:3986", + "value" : "urn:oid:2.16.840.1.113883.4.642.2.51" + }], + "version" : "6.0.0-cibuild", + "name" : "AllergyIntoleranceCriticality", + "title" : "Allergy Intolerance Criticality", + "status" : "active", + "experimental" : false, + "date" : "2021-01-05T10:01:24+11:00", + "publisher" : "HL7 (FHIR Project)", + "contact" : [{ + "telecom" : [{ + "system" : "url", + "value" : "http://hl7.org/fhir" + }, + { + "system" : "email", + "value" : "fhir@lists.hl7.org" + }] + }], + "description" : "Estimate of the potential clinical harm, or seriousness, of a reaction to an identified substance.", + "jurisdiction" : [{ + "coding" : [{ + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "code" : "001", + "display" : "World" + }] + }], + "caseSensitive" : true, + "valueSet" : "http://hl7.org/fhir/ValueSet/allergy-intolerance-criticality", + "content" : "complete", + "concept" : [{ + "code" : "low", + "display" : "Low Risk", + "definition" : "Worst case result of a future exposure is not assessed to be life-threatening or having high potential for organ system failure." + }, + { + "code" : "high", + "display" : "High Risk", + "definition" : "Worst case result of a future exposure is assessed to be life-threatening or having high potential for organ system failure." + }, + { + "code" : "unable-to-assess", + "display" : "Unable to Assess Risk", + "definition" : "Unable to assess the worst case result of a future exposure." + }] } \ No newline at end of file diff --git a/terminology/DeviceDefinitionRelationType/CodeSystem-DeviceDefinitionRelationType.json b/terminology/DeviceDefinitionRelationType/CodeSystem-DeviceDefinitionRelationType.json index 626b1f2..5c94e2e 100644 --- a/terminology/DeviceDefinitionRelationType/CodeSystem-DeviceDefinitionRelationType.json +++ b/terminology/DeviceDefinitionRelationType/CodeSystem-DeviceDefinitionRelationType.json @@ -1,72 +1,72 @@ -{ - "resourceType" : "CodeSystem", - "id" : "devicedefinition-relationtype", - "meta" : { - "lastUpdated" : "2024-02-14T09:01:30.310+11:00", - "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] - }, - "text" : { - "status" : "generated", - "div" : "

This case-sensitive code system http://hl7.org/fhir/devicedefinition-relationtype defines the following codes:

CodeDisplayDefinition
gateway GatewayGateway.
replaces ReplacesThe current device replaces the linked device.
previous PreviousThe current device is a previous device and has been replaced by the linked device.
" - }, - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", - "valueCode" : "oo" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", - "valueCode" : "trial-use" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", - "valueInteger" : 0 - }], - "url" : "http://hl7.org/fhir/devicedefinition-relationtype", - "identifier" : [{ - "system" : "urn:ietf:rfc:3986", - "value" : "urn:oid:2.16.840.1.113883.4.642.4.1933" - }], - "version" : "6.0.0-cibuild", - "name" : "DeviceDefinitionRelationType", - "title" : "Device Definition Relation Type", - "status" : "active", - "experimental" : false, - "date" : "2021-01-05T10:01:24+11:00", - "publisher" : "HL7 (FHIR Project)", - "contact" : [{ - "telecom" : [{ - "system" : "url", - "value" : "http://hl7.org/fhir" - }, - { - "system" : "email", - "value" : "fhir@lists.hl7.org" - }] - }], - "description" : "The type of relation between devices.", - "jurisdiction" : [{ - "coding" : [{ - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "code" : "001", - "display" : "World" - }] - }], - "caseSensitive" : true, - "valueSet" : "http://hl7.org/fhir/ValueSet/device-relationtype", - "content" : "complete", - "concept" : [{ - "code" : "gateway", - "display" : "Gateway", - "definition" : "Gateway." - }, - { - "code" : "replaces", - "display" : "Replaces", - "definition" : "The current device replaces the linked device." - }, - { - "code" : "previous", - "display" : "Previous", - "definition" : "The current device is a previous device and has been replaced by the linked device." - }] +{ + "resourceType" : "CodeSystem", + "id" : "devicedefinition-relationtype", + "meta" : { + "lastUpdated" : "2024-02-14T09:01:30.310+11:00", + "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] + }, + "text" : { + "status" : "generated", + "div" : "

This case-sensitive code system http://hl7.org/fhir/devicedefinition-relationtype defines the following codes:

CodeDisplayDefinition
gateway GatewayGateway.
replaces ReplacesThe current device replaces the linked device.
previous PreviousThe current device is a previous device and has been replaced by the linked device.
" + }, + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", + "valueCode" : "oo" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode" : "trial-use" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", + "valueInteger" : 0 + }], + "url" : "http://hl7.org/fhir/devicedefinition-relationtype", + "identifier" : [{ + "system" : "urn:ietf:rfc:3986", + "value" : "urn:oid:2.16.840.1.113883.4.642.4.1933" + }], + "version" : "6.0.0-cibuild", + "name" : "DeviceDefinitionRelationType", + "title" : "Device Definition Relation Type", + "status" : "active", + "experimental" : false, + "date" : "2021-01-05T10:01:24+11:00", + "publisher" : "HL7 (FHIR Project)", + "contact" : [{ + "telecom" : [{ + "system" : "url", + "value" : "http://hl7.org/fhir" + }, + { + "system" : "email", + "value" : "fhir@lists.hl7.org" + }] + }], + "description" : "The type of relation between devices.", + "jurisdiction" : [{ + "coding" : [{ + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "code" : "001", + "display" : "World" + }] + }], + "caseSensitive" : true, + "valueSet" : "http://hl7.org/fhir/ValueSet/device-relationtype", + "content" : "complete", + "concept" : [{ + "code" : "gateway", + "display" : "Gateway", + "definition" : "Gateway." + }, + { + "code" : "replaces", + "display" : "Replaces", + "definition" : "The current device replaces the linked device." + }, + { + "code" : "previous", + "display" : "Previous", + "definition" : "The current device is a previous device and has been replaced by the linked device." + }] } \ No newline at end of file diff --git a/terminology/DeviceRegulatoryIdentifierType/CodeSystem-DeviceRegulatoryIdentifierType.json b/terminology/DeviceRegulatoryIdentifierType/CodeSystem-DeviceRegulatoryIdentifierType.json index e357717..bc536ac 100644 --- a/terminology/DeviceRegulatoryIdentifierType/CodeSystem-DeviceRegulatoryIdentifierType.json +++ b/terminology/DeviceRegulatoryIdentifierType/CodeSystem-DeviceRegulatoryIdentifierType.json @@ -1,71 +1,71 @@ -{ - "resourceType" : "CodeSystem", - "id" : "devicedefinition-regulatory-identifier-type", - "meta" : { - "lastUpdated" : "2024-02-14T09:01:30.310+11:00", - "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] - }, - "text" : { - "status" : "generated", - "div" : "

This case-sensitive code system http://hl7.org/fhir/devicedefinition-regulatory-identifier-type defines the following codes:

CodeDisplayDefinition
basic BasicEUDAMED's basic UDI-DI identifier.
master MasterEUDAMED's master UDI-DI identifier.
license LicenseThe identifier is a license number.
" - }, - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", - "valueCode" : "oo" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", - "valueCode" : "trial-use" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", - "valueInteger" : 0 - }], - "url" : "http://hl7.org/fhir/devicedefinition-regulatory-identifier-type", - "identifier" : [{ - "system" : "urn:ietf:rfc:3986", - "value" : "urn:oid:2.16.840.1.113883.4.642.4.2109" - }], - "version" : "6.0.0-cibuild", - "name" : "DeviceRegulatoryIdentifierType", - "title" : "Device Regulatory Identifier Type", - "status" : "active", - "experimental" : false, - "date" : "2021-01-05T10:01:24+11:00", - "publisher" : "HL7 (FHIR Project)", - "contact" : [{ - "telecom" : [{ - "system" : "url", - "value" : "http://hl7.org/fhir" - }, - { - "system" : "email", - "value" : "fhir@lists.hl7.org" - }] - }], - "description" : "The type of regulatory identifier.", - "jurisdiction" : [{ - "coding" : [{ - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "code" : "001", - "display" : "World" - }] - }], - "caseSensitive" : true, - "content" : "complete", - "concept" : [{ - "code" : "basic", - "display" : "Basic", - "definition" : "EUDAMED's basic UDI-DI identifier." - }, - { - "code" : "master", - "display" : "Master", - "definition" : "EUDAMED's master UDI-DI identifier." - }, - { - "code" : "license", - "display" : "License", - "definition" : "The identifier is a license number." - }] +{ + "resourceType" : "CodeSystem", + "id" : "devicedefinition-regulatory-identifier-type", + "meta" : { + "lastUpdated" : "2024-02-14T09:01:30.310+11:00", + "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] + }, + "text" : { + "status" : "generated", + "div" : "

This case-sensitive code system http://hl7.org/fhir/devicedefinition-regulatory-identifier-type defines the following codes:

CodeDisplayDefinition
basic BasicEUDAMED's basic UDI-DI identifier.
master MasterEUDAMED's master UDI-DI identifier.
license LicenseThe identifier is a license number.
" + }, + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", + "valueCode" : "oo" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode" : "trial-use" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", + "valueInteger" : 0 + }], + "url" : "http://hl7.org/fhir/devicedefinition-regulatory-identifier-type", + "identifier" : [{ + "system" : "urn:ietf:rfc:3986", + "value" : "urn:oid:2.16.840.1.113883.4.642.4.2109" + }], + "version" : "6.0.0-cibuild", + "name" : "DeviceRegulatoryIdentifierType", + "title" : "Device Regulatory Identifier Type", + "status" : "active", + "experimental" : false, + "date" : "2021-01-05T10:01:24+11:00", + "publisher" : "HL7 (FHIR Project)", + "contact" : [{ + "telecom" : [{ + "system" : "url", + "value" : "http://hl7.org/fhir" + }, + { + "system" : "email", + "value" : "fhir@lists.hl7.org" + }] + }], + "description" : "The type of regulatory identifier.", + "jurisdiction" : [{ + "coding" : [{ + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "code" : "001", + "display" : "World" + }] + }], + "caseSensitive" : true, + "content" : "complete", + "concept" : [{ + "code" : "basic", + "display" : "Basic", + "definition" : "EUDAMED's basic UDI-DI identifier." + }, + { + "code" : "master", + "display" : "Master", + "definition" : "EUDAMED's master UDI-DI identifier." + }, + { + "code" : "license", + "display" : "License", + "definition" : "The identifier is a license number." + }] } \ No newline at end of file diff --git a/terminology/DeviceUsageAdherenceCode/CodeSystem-DeviceUsageAdherenceCode.json b/terminology/DeviceUsageAdherenceCode/CodeSystem-DeviceUsageAdherenceCode.json index 9a9494c..4692c01 100644 --- a/terminology/DeviceUsageAdherenceCode/CodeSystem-DeviceUsageAdherenceCode.json +++ b/terminology/DeviceUsageAdherenceCode/CodeSystem-DeviceUsageAdherenceCode.json @@ -1,72 +1,72 @@ -{ - "resourceType" : "CodeSystem", - "id" : "deviceusage-adherence-code", - "meta" : { - "lastUpdated" : "2024-02-13T22:01:30.310+00:00", - "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] - }, - "text" : { - "status" : "generated", - "div" : "

This case-sensitive code system http://hl7.org/fhir/deviceusage-adherence-code defines the following codes:

CodeDisplayDefinition
always AlwaysThe device is always used.
never NeverThe device is never used.
sometimes SometimesThe device is sometimes used.
" - }, - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", - "valueCode" : "oo" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", - "valueCode" : "trial-use" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", - "valueInteger" : 0 - }], - "url" : "http://hl7.org/fhir/deviceusage-adherence-code", - "identifier" : [{ - "system" : "urn:ietf:rfc:3986", - "value" : "urn:oid:2.16.840.1.113883.4.642.4.1854" - }], - "version" : "6.0.0-cibuild", - "name" : "DeviceUsageAdherenceCode", - "title" : "Device Usage Adherence Code", - "status" : "active", - "experimental" : false, - "date" : "2021-01-05T10:01:24+11:00", - "publisher" : "HL7 (FHIR Project)", - "contact" : [{ - "telecom" : [{ - "system" : "url", - "value" : "http://hl7.org/fhir" - }, - { - "system" : "email", - "value" : "fhir@lists.hl7.org" - }] - }], - "description" : "A coded concept indicating the usage of the device.", - "jurisdiction" : [{ - "coding" : [{ - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "code" : "001", - "display" : "World" - }] - }], - "caseSensitive" : true, - "valueSet" : "http://hl7.org/fhir/ValueSet/deviceusage-adherence-code", - "content" : "complete", - "concept" : [{ - "code" : "always", - "display" : "Always", - "definition" : "The device is always used." - }, - { - "code" : "never", - "display" : "Never", - "definition" : "The device is never used." - }, - { - "code" : "sometimes", - "display" : "Sometimes", - "definition" : "The device is sometimes used." - }] +{ + "resourceType" : "CodeSystem", + "id" : "deviceusage-adherence-code", + "meta" : { + "lastUpdated" : "2024-02-13T22:01:30.310+00:00", + "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] + }, + "text" : { + "status" : "generated", + "div" : "

This case-sensitive code system http://hl7.org/fhir/deviceusage-adherence-code defines the following codes:

CodeDisplayDefinition
always AlwaysThe device is always used.
never NeverThe device is never used.
sometimes SometimesThe device is sometimes used.
" + }, + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", + "valueCode" : "oo" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode" : "trial-use" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", + "valueInteger" : 0 + }], + "url" : "http://hl7.org/fhir/deviceusage-adherence-code", + "identifier" : [{ + "system" : "urn:ietf:rfc:3986", + "value" : "urn:oid:2.16.840.1.113883.4.642.4.1854" + }], + "version" : "6.0.0-cibuild", + "name" : "DeviceUsageAdherenceCode", + "title" : "Device Usage Adherence Code", + "status" : "active", + "experimental" : false, + "date" : "2021-01-05T10:01:24+11:00", + "publisher" : "HL7 (FHIR Project)", + "contact" : [{ + "telecom" : [{ + "system" : "url", + "value" : "http://hl7.org/fhir" + }, + { + "system" : "email", + "value" : "fhir@lists.hl7.org" + }] + }], + "description" : "A coded concept indicating the usage of the device.", + "jurisdiction" : [{ + "coding" : [{ + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "code" : "001", + "display" : "World" + }] + }], + "caseSensitive" : true, + "valueSet" : "http://hl7.org/fhir/ValueSet/deviceusage-adherence-code", + "content" : "complete", + "concept" : [{ + "code" : "always", + "display" : "Always", + "definition" : "The device is always used." + }, + { + "code" : "never", + "display" : "Never", + "definition" : "The device is never used." + }, + { + "code" : "sometimes", + "display" : "Sometimes", + "definition" : "The device is sometimes used." + }] } \ No newline at end of file diff --git a/terminology/DeviceUsageAdherenceReason/CodeSystem-DeviceUsageAdherenceReason.json b/terminology/DeviceUsageAdherenceReason/CodeSystem-DeviceUsageAdherenceReason.json index b48820c..18de342 100644 --- a/terminology/DeviceUsageAdherenceReason/CodeSystem-DeviceUsageAdherenceReason.json +++ b/terminology/DeviceUsageAdherenceReason/CodeSystem-DeviceUsageAdherenceReason.json @@ -1,87 +1,87 @@ -{ - "resourceType" : "CodeSystem", - "id" : "deviceusage-adherence-reason", - "meta" : { - "lastUpdated" : "2024-02-13T22:01:30.310+00:00", - "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] - }, - "text" : { - "status" : "generated", - "div" : "

This case-sensitive code system http://hl7.org/fhir/deviceusage-adherence-reason defines the following codes:

CodeDisplayDefinition
lost LostThe device is lost.
stolen StolenThe device is stolen.
prescribed PrescribedThe device is prescribed.
broken BrokenThe device is broken.
burned BurnedThe device is burned.
forgot ForgotThe device is forgotten.
" - }, - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", - "valueCode" : "oo" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", - "valueCode" : "trial-use" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", - "valueInteger" : 0 - }], - "url" : "http://hl7.org/fhir/deviceusage-adherence-reason", - "identifier" : [{ - "system" : "urn:ietf:rfc:3986", - "value" : "urn:oid:2.16.840.1.113883.4.642.4.1855" - }], - "version" : "6.0.0-cibuild", - "name" : "DeviceUsageAdherenceReason", - "title" : "Device Usage Adherence Reason", - "status" : "active", - "experimental" : false, - "date" : "2021-01-05T10:01:24+11:00", - "publisher" : "HL7 (FHIR Project)", - "contact" : [{ - "telecom" : [{ - "system" : "url", - "value" : "http://hl7.org/fhir" - }, - { - "system" : "email", - "value" : "fhir@lists.hl7.org" - }] - }], - "description" : "A coded concept indicating the reason for the usage of the device.", - "jurisdiction" : [{ - "coding" : [{ - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "code" : "001", - "display" : "World" - }] - }], - "caseSensitive" : true, - "valueSet" : "http://hl7.org/fhir/ValueSet/deviceusage-adherence-reason", - "content" : "complete", - "concept" : [{ - "code" : "lost", - "display" : "Lost", - "definition" : "The device is lost." - }, - { - "code" : "stolen", - "display" : "Stolen", - "definition" : "The device is stolen." - }, - { - "code" : "prescribed", - "display" : "Prescribed", - "definition" : "The device is prescribed." - }, - { - "code" : "broken", - "display" : "Broken", - "definition" : "The device is broken." - }, - { - "code" : "burned", - "display" : "Burned", - "definition" : "The device is burned." - }, - { - "code" : "forgot", - "display" : "Forgot", - "definition" : "The device is forgotten." - }] +{ + "resourceType" : "CodeSystem", + "id" : "deviceusage-adherence-reason", + "meta" : { + "lastUpdated" : "2024-02-13T22:01:30.310+00:00", + "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] + }, + "text" : { + "status" : "generated", + "div" : "

This case-sensitive code system http://hl7.org/fhir/deviceusage-adherence-reason defines the following codes:

CodeDisplayDefinition
lost LostThe device is lost.
stolen StolenThe device is stolen.
prescribed PrescribedThe device is prescribed.
broken BrokenThe device is broken.
burned BurnedThe device is burned.
forgot ForgotThe device is forgotten.
" + }, + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", + "valueCode" : "oo" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode" : "trial-use" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", + "valueInteger" : 0 + }], + "url" : "http://hl7.org/fhir/deviceusage-adherence-reason", + "identifier" : [{ + "system" : "urn:ietf:rfc:3986", + "value" : "urn:oid:2.16.840.1.113883.4.642.4.1855" + }], + "version" : "6.0.0-cibuild", + "name" : "DeviceUsageAdherenceReason", + "title" : "Device Usage Adherence Reason", + "status" : "active", + "experimental" : false, + "date" : "2021-01-05T10:01:24+11:00", + "publisher" : "HL7 (FHIR Project)", + "contact" : [{ + "telecom" : [{ + "system" : "url", + "value" : "http://hl7.org/fhir" + }, + { + "system" : "email", + "value" : "fhir@lists.hl7.org" + }] + }], + "description" : "A coded concept indicating the reason for the usage of the device.", + "jurisdiction" : [{ + "coding" : [{ + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "code" : "001", + "display" : "World" + }] + }], + "caseSensitive" : true, + "valueSet" : "http://hl7.org/fhir/ValueSet/deviceusage-adherence-reason", + "content" : "complete", + "concept" : [{ + "code" : "lost", + "display" : "Lost", + "definition" : "The device is lost." + }, + { + "code" : "stolen", + "display" : "Stolen", + "definition" : "The device is stolen." + }, + { + "code" : "prescribed", + "display" : "Prescribed", + "definition" : "The device is prescribed." + }, + { + "code" : "broken", + "display" : "Broken", + "definition" : "The device is broken." + }, + { + "code" : "burned", + "display" : "Burned", + "definition" : "The device is burned." + }, + { + "code" : "forgot", + "display" : "Forgot", + "definition" : "The device is forgotten." + }] } \ No newline at end of file diff --git a/terminology/DeviceUsageStatus/CodeSystem-DeviceUsageStatus.json b/terminology/DeviceUsageStatus/CodeSystem-DeviceUsageStatus.json index cb76918..f2014d9 100644 --- a/terminology/DeviceUsageStatus/CodeSystem-DeviceUsageStatus.json +++ b/terminology/DeviceUsageStatus/CodeSystem-DeviceUsageStatus.json @@ -1,92 +1,92 @@ -{ - "resourceType" : "CodeSystem", - "id" : "deviceusage-status", - "meta" : { - "lastUpdated" : "2024-02-13T22:01:30.310+00:00", - "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] - }, - "text" : { - "status" : "generated", - "div" : "

This case-sensitive code system http://hl7.org/fhir/deviceusage-status defines the following codes:

CodeDisplayDefinition
active ActiveThe device is still being used.
completed CompletedThe device is no longer being used.
not-done Not doneThe device was not used.
entered-in-error Entered in ErrorThe statement was recorded incorrectly.
intended IntendedThe device may be used at some time in the future.
stopped StoppedActions implied by the statement have been permanently halted, before all of them occurred.
on-hold On HoldActions implied by the statement have been temporarily halted, but are expected to continue later. May also be called "suspended".
" - }, - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", - "valueCode" : "oo" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", - "valueCode" : "trial-use" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", - "valueInteger" : 0 - }], - "url" : "http://hl7.org/fhir/deviceusage-status", - "identifier" : [{ - "system" : "urn:ietf:rfc:3986", - "value" : "urn:oid:2.16.840.1.113883.4.642.4.2059" - }], - "version" : "6.0.0-cibuild", - "name" : "DeviceUsageStatus", - "title" : "Device Usage Status", - "status" : "active", - "experimental" : false, - "date" : "2021-01-05T10:01:24+11:00", - "publisher" : "HL7 (FHIR Project)", - "contact" : [{ - "telecom" : [{ - "system" : "url", - "value" : "http://hl7.org/fhir" - }, - { - "system" : "email", - "value" : "fhir@lists.hl7.org" - }] - }], - "description" : "A coded concept indicating the current status of the Device Usage.", - "jurisdiction" : [{ - "coding" : [{ - "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", - "code" : "001", - "display" : "World" - }] - }], - "caseSensitive" : true, - "valueSet" : "http://hl7.org/fhir/ValueSet/deviceusage-status", - "content" : "complete", - "concept" : [{ - "code" : "active", - "display" : "Active", - "definition" : "The device is still being used." - }, - { - "code" : "completed", - "display" : "Completed", - "definition" : "The device is no longer being used." - }, - { - "code" : "not-done", - "display" : "Not done", - "definition" : "The device was not used." - }, - { - "code" : "entered-in-error", - "display" : "Entered in Error", - "definition" : "The statement was recorded incorrectly." - }, - { - "code" : "intended", - "display" : "Intended", - "definition" : "The device may be used at some time in the future." - }, - { - "code" : "stopped", - "display" : "Stopped", - "definition" : "Actions implied by the statement have been permanently halted, before all of them occurred." - }, - { - "code" : "on-hold", - "display" : "On Hold", - "definition" : "Actions implied by the statement have been temporarily halted, but are expected to continue later. May also be called \"suspended\"." - }] +{ + "resourceType" : "CodeSystem", + "id" : "deviceusage-status", + "meta" : { + "lastUpdated" : "2024-02-13T22:01:30.310+00:00", + "profile" : ["http://hl7.org/fhir/StructureDefinition/shareablecodesystem"] + }, + "text" : { + "status" : "generated", + "div" : "

This case-sensitive code system http://hl7.org/fhir/deviceusage-status defines the following codes:

CodeDisplayDefinition
active ActiveThe device is still being used.
completed CompletedThe device is no longer being used.
not-done Not doneThe device was not used.
entered-in-error Entered in ErrorThe statement was recorded incorrectly.
intended IntendedThe device may be used at some time in the future.
stopped StoppedActions implied by the statement have been permanently halted, before all of them occurred.
on-hold On HoldActions implied by the statement have been temporarily halted, but are expected to continue later. May also be called "suspended".
" + }, + "extension" : [{ + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", + "valueCode" : "oo" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode" : "trial-use" + }, + { + "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", + "valueInteger" : 0 + }], + "url" : "http://hl7.org/fhir/deviceusage-status", + "identifier" : [{ + "system" : "urn:ietf:rfc:3986", + "value" : "urn:oid:2.16.840.1.113883.4.642.4.2059" + }], + "version" : "6.0.0-cibuild", + "name" : "DeviceUsageStatus", + "title" : "Device Usage Status", + "status" : "active", + "experimental" : false, + "date" : "2021-01-05T10:01:24+11:00", + "publisher" : "HL7 (FHIR Project)", + "contact" : [{ + "telecom" : [{ + "system" : "url", + "value" : "http://hl7.org/fhir" + }, + { + "system" : "email", + "value" : "fhir@lists.hl7.org" + }] + }], + "description" : "A coded concept indicating the current status of the Device Usage.", + "jurisdiction" : [{ + "coding" : [{ + "system" : "http://unstats.un.org/unsd/methods/m49/m49.htm", + "code" : "001", + "display" : "World" + }] + }], + "caseSensitive" : true, + "valueSet" : "http://hl7.org/fhir/ValueSet/deviceusage-status", + "content" : "complete", + "concept" : [{ + "code" : "active", + "display" : "Active", + "definition" : "The device is still being used." + }, + { + "code" : "completed", + "display" : "Completed", + "definition" : "The device is no longer being used." + }, + { + "code" : "not-done", + "display" : "Not done", + "definition" : "The device was not used." + }, + { + "code" : "entered-in-error", + "display" : "Entered in Error", + "definition" : "The statement was recorded incorrectly." + }, + { + "code" : "intended", + "display" : "Intended", + "definition" : "The device may be used at some time in the future." + }, + { + "code" : "stopped", + "display" : "Stopped", + "definition" : "Actions implied by the statement have been permanently halted, before all of them occurred." + }, + { + "code" : "on-hold", + "display" : "On Hold", + "definition" : "Actions implied by the statement have been temporarily halted, but are expected to continue later. May also be called \"suspended\"." + }] } \ No newline at end of file