UNPKG

fhir-schemas

Version:

Schemas for Fast Healthcare Interoperability Resources.

70 lines 2.88 kB
{ "schema": "http://json-schema.org/draft-04/schema#", "$id": "http://hl7.org/fhir/json-schema/RelatedArtifact", "$ref": "#/definitions/RelatedArtifact", "description": "see http://hl7.org/fhir/json.html#schema for information about the FHIR Json Schemas", "definitions": { "RelatedArtifact": { "allOf": [ { "$ref": "Element#/definitions/Element" }, { "description": "Related artifacts such as additional documentation, justification, or bibliographic references.", "properties": { "type": { "description": "The type of relationship to the related artifact.", "enum": [ "documentation", "justification", "citation", "predecessor", "successor", "derived-from", "depends-on", "composed-of" ], "type": "string" }, "_type": { "description": "Extensions for type", "$ref": "http://hl7.org/fhir/json-schema/Element#/definitions/Element" }, "display": { "description": "A brief description of the document or knowledge resource being referenced, suitable for display to a consumer.", "type": "string" }, "_display": { "description": "Extensions for display", "$ref": "http://hl7.org/fhir/json-schema/Element#/definitions/Element" }, "citation": { "description": "A bibliographic citation for the related artifact. This text SHOULD be formatted according to an accepted citation format.", "type": "string" }, "_citation": { "description": "Extensions for citation", "$ref": "http://hl7.org/fhir/json-schema/Element#/definitions/Element" }, "url": { "description": "A url for the artifact that can be followed to access the actual content.", "type": "string" }, "_url": { "description": "Extensions for url", "$ref": "http://hl7.org/fhir/json-schema/Element#/definitions/Element" }, "document": { "description": "The document being referenced, represented as an attachment. This is exclusive with the resource element.", "$ref": "http://hl7.org/fhir/json-schema/Attachment#/definitions/Attachment" }, "resource": { "description": "The related resource, such as a library, value set, profile, or other knowledge resource.", "$ref": "http://hl7.org/fhir/json-schema/Reference#/definitions/Reference" } } } ] } } }