UNPKG

fhir-schemas

Version:

Schemas for Fast Healthcare Interoperability Resources.

84 lines 3.71 kB
{ "schema": "http://json-schema.org/draft-04/schema#", "$id": "http://hl7.org/fhir/json-schema/ResearchSubject", "$ref": "#/definitions/ResearchSubject", "description": "see http://hl7.org/fhir/json.html#schema for information about the FHIR Json Schemas", "definitions": { "ResearchSubject": { "allOf": [ { "$ref": "DomainResource#/definitions/DomainResource" }, { "description": "A process where a researcher or organization plans and then executes a series of steps intended to increase the field of healthcare-related knowledge. This includes studies of safety, efficacy, comparative effectiveness and other information about medications, devices, therapies and other interventional and investigative techniques. A ResearchStudy involves the gathering of information about human or animal subjects.", "properties": { "resourceType": { "description": "This is a ResearchSubject resource", "type": "string", "enum": [ "ResearchSubject" ] }, "identifier": { "description": "Identifiers assigned to this research study by the sponsor or other systems.", "$ref": "http://hl7.org/fhir/json-schema/Identifier#/definitions/Identifier" }, "status": { "description": "The current state of the subject.", "enum": [ "candidate", "enrolled", "active", "suspended", "withdrawn", "completed" ], "type": "string" }, "_status": { "description": "Extensions for status", "$ref": "http://hl7.org/fhir/json-schema/Element#/definitions/Element" }, "period": { "description": "The dates the subject began and ended their participation in the study.", "$ref": "http://hl7.org/fhir/json-schema/Period#/definitions/Period" }, "study": { "description": "Reference to the study the subject is participating in.", "$ref": "http://hl7.org/fhir/json-schema/Reference#/definitions/Reference" }, "individual": { "description": "The record of the person or animal who is involved in the study.", "$ref": "http://hl7.org/fhir/json-schema/Reference#/definitions/Reference" }, "assignedArm": { "description": "The name of the arm in the study the subject is expected to follow as part of this study.", "type": "string" }, "_assignedArm": { "description": "Extensions for assignedArm", "$ref": "http://hl7.org/fhir/json-schema/Element#/definitions/Element" }, "actualArm": { "description": "The name of the arm in the study the subject actually followed as part of this study.", "type": "string" }, "_actualArm": { "description": "Extensions for actualArm", "$ref": "http://hl7.org/fhir/json-schema/Element#/definitions/Element" }, "consent": { "description": "A record of the patient\u0027s informed agreement to participate in the study.", "$ref": "http://hl7.org/fhir/json-schema/Reference#/definitions/Reference" } }, "required": [ "study", "individual", "resourceType" ] } ] } } }