Hint Health · Schema
Provider.CustomerInvoices.ChargesController.create_body
Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans
Properties
| Name | Type | Description |
|---|---|---|
| quantity | number | |
| price_in_cents | number | |
| name | string | |
| description | string | |
| date | string | |
| patient | object | |
| practitioner | object | |
| category | object | |
| charge_item | object | |
| location | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.hint.com/schemas/provider-customerinvoices-chargescontroller-create_body",
"title": "Provider.CustomerInvoices.ChargesController.create_body",
"type": "object",
"properties": {
"quantity": {
"type": "number",
"format": "double"
},
"price_in_cents": {
"type": "number",
"format": "double"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"date": {
"type": "string",
"format": "date"
},
"patient": {
"$ref": "#/components/schemas/Association"
},
"practitioner": {
"$ref": "#/components/schemas/Association"
},
"category": {
"$ref": "#/components/schemas/Association"
},
"charge_item": {
"$ref": "#/components/schemas/Association"
},
"location": {
"$ref": "#/components/schemas/Association"
}
},
"required": [
"quantity",
"price_in_cents",
"name"
]
}