Difference between revisions of "Confidentiality Usage"
From Hiasobi - FHIR
Line 24: | Line 24: | ||
"versionId": "20160723123649", | "versionId": "20160723123649", | ||
"lastUpdated": "2016-07-23T12:36:49+00:00", | "lastUpdated": "2016-07-23T12:36:49+00:00", | ||
− | "security": [ | + | '''"security": [ |
{ | { | ||
"system": "http://hl7.org/fhir/v3/Confidentiality", | "system": "http://hl7.org/fhir/v3/Confidentiality", | ||
"code": "R", | "code": "R", | ||
"display": "restricted" | "display": "restricted" | ||
− | } | + | }''' |
] | ] | ||
}, | }, | ||
Line 67: | Line 67: | ||
"onsetDateTime": "2016-07-23", | "onsetDateTime": "2016-07-23", | ||
"abatementBoolean": false | "abatementBoolean": false | ||
− | + | } | |
</pre> | </pre> |
Revision as of 00:00, 24 July 2016
Confidentiality (security) for resource content is managed as metadata
http://hl7.org/fhir/DSTU2/resource.html#Meta
Represented as security labels:
http://hl7.org/fhir/DSTU2/security-labels.html
In Hiasobi usage security is applied for 'confidentiality' on Condition or Procedure resources (as supported by the clinical systems)
There are two codes used:
- Confidential: Code = "R", System = "http://hl7.org/fhir/v3/Confidentiality", Display = "restricted"
- Normal: Code = "N", System = "http://hl7.org/fhir/v3/Confidentiality", Display = "normal"
These are applied on every Condition and Procedure resource Meta element.
Example
"resource": { "resourceType": "Condition", "id": "129", "meta": { "versionId": "20160723123649", "lastUpdated": "2016-07-23T12:36:49+00:00", '''"security": [ { "system": "http://hl7.org/fhir/v3/Confidentiality", "code": "R", "display": "restricted" }''' ] }, "text": { "status": "generated", "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>2016-07-23 Alcohol dependence</p></div>" }, "patient": { "reference": "Patient/35" }, "code": { "coding": [ { "system": "http://oridashi.com.au/system/code/bestpracticeterm", "code": "81", "display": "Alcohol dependence" }, { "system": "http://snomed.info/sct", "code": "66590003", "display": "Alcohol dependence" } ], "text": "Alcohol dependence" }, "category": { "coding": [ { "system": "http://snomed.info/sct", "code": "439401001", "display": "Diagnosis" } ] }, "clinicalStatus": "active", "verificationStatus": "confirmed", "onsetDateTime": "2016-07-23", "abatementBoolean": false }