drchrono · Schema
PatientFlagType
EHRElectronic Health RecordsHealthcareMedical RecordsPractice ManagementHIPAAAppointmentsBillingPrescriptionsLab IntegrationFHIR
Properties
| Name | Type | Description |
|---|---|---|
| archived | boolean | Indicates the flag type is soft-deleted and should not be used |
| name | string | Name of the patient flag type |
| doctor | integer | Doctor who owns the flag type |
| color | string | |
| created_at | string | |
| updated_at | string | |
| priority | integer | Priority of the flag type |
| id | integer |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api-evangelist.github.io/drchrono/json-schema/patientflagtype.json",
"title": "PatientFlagType",
"required": [
"doctor",
"name"
],
"type": "object",
"properties": {
"archived": {
"readOnly": true,
"type": "boolean",
"description": "Indicates the flag type is soft-deleted and should not be used",
"title": "Archived"
},
"name": {
"type": "string",
"description": "Name of the patient flag type",
"title": "Name"
},
"doctor": {
"type": "integer",
"description": "Doctor who owns the flag type",
"title": "Doctor"
},
"color": {
"type": "string",
"description": "",
"title": "Color"
},
"created_at": {
"readOnly": true,
"type": "string",
"description": "",
"title": "Created at"
},
"updated_at": {
"readOnly": true,
"type": "string",
"description": "",
"title": "Updated at"
},
"priority": {
"type": "integer",
"description": "Priority of the flag type",
"title": "Priority"
},
"id": {
"readOnly": true,
"type": "integer",
"description": "",
"title": "ID"
}
},
"x-verbose-required": []
}