drchrono · Schema
Procedure
EHRElectronic Health RecordsHealthcareMedical RecordsPractice ManagementHIPAAAppointmentsBillingPrescriptionsLab IntegrationFHIR
Properties
| Name | Type | Description |
|---|---|---|
| status | string | |
| code | string | |
| patient | integer | Patient ID |
| description | string | |
| doctor | integer | Doctor ID |
| created_at | string | |
| updated_at | string | |
| procedure_type | string | One of `"CPT(C)"`, `"HCPCS(H)"`, `"Custom(U)"` |
| date | string | Date of service for the procedure |
| appointment | integer | Appointment ID |
| id | integer |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api-evangelist.github.io/drchrono/json-schema/procedure.json",
"title": "Procedure",
"properties": {
"status": {
"readOnly": true,
"type": "string",
"description": "",
"title": "Status"
},
"code": {
"type": "string",
"description": "",
"title": "Code"
},
"patient": {
"readOnly": true,
"type": "integer",
"description": "Patient ID",
"title": "Patient"
},
"description": {
"readOnly": true,
"type": "string",
"description": "",
"title": "Description"
},
"doctor": {
"readOnly": true,
"type": "integer",
"description": "Doctor ID",
"title": "Doctor"
},
"created_at": {
"readOnly": true,
"type": "string",
"description": "",
"title": "Created at"
},
"updated_at": {
"readOnly": true,
"type": "string",
"description": "",
"title": "Updated at"
},
"procedure_type": {
"enum": [
"C",
"H",
"U",
"S"
],
"type": "string",
"description": "One of `\"CPT(C)\"`, `\"HCPCS(H)\"`, `\"Custom(U)\"`",
"title": "Procedure type"
},
"date": {
"readOnly": true,
"type": "string",
"description": "Date of service for the procedure",
"title": "Date"
},
"appointment": {
"type": "integer",
"description": "Appointment ID",
"title": "Appointment"
},
"id": {
"readOnly": true,
"type": "integer",
"description": "",
"title": "ID"
}
}
}