drchrono · Schema
CustomAppointmentFieldType
EHRElectronic Health RecordsHealthcareMedical RecordsPractice ManagementHIPAAAppointmentsBillingPrescriptionsLab IntegrationFHIR
Properties
| Name | Type | Description |
|---|---|---|
| archived | boolean | Indicates that the object has been soft-deleted and should not be used |
| doctor | string | |
| created_at | string | |
| updated_at | string | |
| order | integer | displayed order in patient's demographic page |
| field_desc | string | Description of the custom field |
| field_name | string | |
| id | integer |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api-evangelist.github.io/drchrono/json-schema/customappointmentfieldtype.json",
"title": "CustomAppointmentFieldType",
"required": [],
"type": "object",
"properties": {
"archived": {
"readOnly": true,
"type": "boolean",
"description": "Indicates that the object has been soft-deleted and should not be used",
"title": "Archived"
},
"doctor": {
"readOnly": true,
"type": "string",
"description": "",
"title": "Doctor"
},
"created_at": {
"readOnly": true,
"type": "string",
"description": "",
"title": "Created at"
},
"updated_at": {
"readOnly": true,
"type": "string",
"description": "",
"title": "Updated at"
},
"order": {
"readOnly": true,
"type": "integer",
"description": "displayed order in patient's demographic page",
"title": "Order"
},
"field_desc": {
"type": "string",
"description": "Description of the custom field",
"title": "Field desc"
},
"field_name": {
"type": "string",
"description": "",
"title": "Field name"
},
"id": {
"readOnly": true,
"type": "integer",
"description": "",
"title": "ID"
}
},
"x-verbose-required": []
}