fhir-schemas
Version:
Schemas for Fast Healthcare Interoperability Resources.
83 lines • 3.57 kB
JSON
{
"schema": "http://json-schema.org/draft-04/schema#",
"$id": "http://hl7.org/fhir/json-schema/EnrollmentResponse",
"$ref": "#/definitions/EnrollmentResponse",
"description": "see http://hl7.org/fhir/json.html#schema for information about the FHIR Json Schemas",
"definitions": {
"EnrollmentResponse": {
"allOf": [
{
"$ref": "DomainResource#/definitions/DomainResource"
},
{
"description": "This resource provides enrollment and plan details from the processing of an Enrollment resource.",
"properties": {
"resourceType": {
"description": "This is a EnrollmentResponse resource",
"type": "string",
"enum": [
"EnrollmentResponse"
]
},
"identifier": {
"description": "The Response business identifier.",
"type": "array",
"items": {
"$ref": "http://hl7.org/fhir/json-schema/Identifier#/definitions/Identifier"
}
},
"status": {
"description": "The status of the resource instance.",
"type": "string",
"pattern": "[^\\s]+([\\s]?[^\\s]+)*"
},
"_status": {
"description": "Extensions for status",
"$ref": "http://hl7.org/fhir/json-schema/Element#/definitions/Element"
},
"request": {
"description": "Original request resource reference.",
"$ref": "http://hl7.org/fhir/json-schema/Reference#/definitions/Reference"
},
"outcome": {
"description": "Processing status: error, complete.",
"$ref": "http://hl7.org/fhir/json-schema/CodeableConcept#/definitions/CodeableConcept"
},
"disposition": {
"description": "A description of the status of the adjudication.",
"type": "string"
},
"_disposition": {
"description": "Extensions for disposition",
"$ref": "http://hl7.org/fhir/json-schema/Element#/definitions/Element"
},
"created": {
"description": "The date when the enclosed suite of services were performed or completed.",
"type": "string",
"pattern": "-?[0-9]{4}(-(0[1-9]|1[0-2])(-(0[0-9]|[1-2][0-9]|3[0-1])(T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](\\.[0-9]+)?(Z|(\\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00)))?)?)?"
},
"_created": {
"description": "Extensions for created",
"$ref": "http://hl7.org/fhir/json-schema/Element#/definitions/Element"
},
"organization": {
"description": "The Insurer who produced this adjudicated response.",
"$ref": "http://hl7.org/fhir/json-schema/Reference#/definitions/Reference"
},
"requestProvider": {
"description": "The practitioner who is responsible for the services rendered to the patient.",
"$ref": "http://hl7.org/fhir/json-schema/Reference#/definitions/Reference"
},
"requestOrganization": {
"description": "The organization which is responsible for the services rendered to the patient.",
"$ref": "http://hl7.org/fhir/json-schema/Reference#/definitions/Reference"
}
},
"required": [
"resourceType"
]
}
]
}
}
}