Hint Health · Schema
Update_Practice
Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| address_line1 | string | |
| address_line2 | string | |
| address_city | string | |
| address_state | string | |
| address_zip | string | |
| address_country | string | |
| string | ||
| phones | array | |
| url | string | |
| logo_url | string | |
| integration_record_id | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.hint.com/schemas/provider-practicescontroller-update_body",
"title": "Update_Practice",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"address_line1": {
"type": "string"
},
"address_line2": {
"type": "string"
},
"address_city": {
"type": "string"
},
"address_state": {
"type": "string"
},
"address_zip": {
"type": "string"
},
"address_country": {
"type": "string"
},
"email": {
"type": "string"
},
"phones": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PhoneNumber"
}
},
"url": {
"type": "string"
},
"logo_url": {
"type": "string"
},
"integration_record_id": {
"type": "string"
}
}
}