drchrono · Schema
SignedConsentFormUpdate
EHRElectronic Health RecordsHealthcareMedical RecordsPractice ManagementHIPAAAppointmentsBillingPrescriptionsLab IntegrationFHIR
Properties
| Name | Type | Description |
|---|---|---|
| appointment | integer | ID of the appointment that the consent form is signed for |
| archived | boolean | Indicates that the consent form has been archived and should not be used |
| consent_form | integer | ID of the consent form that is signed |
| patient | integer | ID of the patient who signed the consent form |
| signature_file | string | File with the signature of the patient |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api-evangelist.github.io/drchrono/json-schema/signedconsentformupdate.json",
"title": "SignedConsentFormUpdate",
"type": "object",
"properties": {
"appointment": {
"type": "integer",
"description": "ID of the appointment that the consent form is signed for",
"title": "Appointment"
},
"archived": {
"type": "boolean",
"description": "Indicates that the consent form has been archived and should not be used",
"title": "Archived"
},
"consent_form": {
"type": "integer",
"description": "ID of the consent form that is signed",
"title": "Consent form"
},
"patient": {
"type": "integer",
"description": "ID of the patient who signed the consent form",
"title": "Patient"
},
"signature_file": {
"format": "binary",
"type": "string",
"description": "File with the signature of the patient",
"title": "Signature file"
}
},
"x-verbose-required": []
}