Hint Health · Schema
Public.ChargeBlueprint_one
Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| amount_in_cents | integer | |
| created_at | string | |
| description | string | |
| is_persisted | boolean | |
| name | string | |
| price_in_cents | integer | |
| quantity | integer | |
| service_date | string | |
| status | string | |
| subtotal_in_cents | integer | |
| tax_in_cents | integer | |
| total_in_cents | integer | |
| updated_at | string | |
| category | object | |
| charge_item | object | |
| location | object | |
| patient | object | |
| practitioner | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.hint.com/schemas/public-chargeblueprint_one",
"title": "Public.ChargeBlueprint_one",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"amount_in_cents": {
"type": "integer",
"format": "int32"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"description": {
"type": "string"
},
"is_persisted": {
"type": "boolean"
},
"name": {
"type": "string"
},
"price_in_cents": {
"type": "integer",
"format": "int32"
},
"quantity": {
"type": "integer",
"format": "int32"
},
"service_date": {
"type": "string",
"format": "date"
},
"status": {
"type": "string"
},
"subtotal_in_cents": {
"type": "integer",
"format": "int32"
},
"tax_in_cents": {
"type": "integer",
"format": "int32"
},
"total_in_cents": {
"type": "integer",
"format": "int32"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"category": {
"$ref": "#/components/schemas/Public.CategoryBlueprint_one"
},
"charge_item": {
"$ref": "#/components/schemas/Public.ChargeItemBlueprint_one"
},
"location": {
"$ref": "#/components/schemas/Public.LocationBlueprint_shared"
},
"patient": {
"$ref": "#/components/schemas/Public.PatientBlueprint_one"
},
"practitioner": {
"$ref": "#/components/schemas/Public.PractitionerBlueprint_one"
}
}
}