Hint Health · Schema
Public.MembershipPatientBlueprint_for_membership_one
Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| member_type | string | |
| fixed_period_rate_in_cents | integer | |
| list_price_in_cents | integer | |
| period_rate_in_cents | integer | |
| revenue_in_cents | integer | |
| start_date | string | |
| uses_tobacco | boolean | |
| end_date | string | |
| patient | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.hint.com/schemas/public-membershippatientblueprint_for_membership_one",
"title": "Public.MembershipPatientBlueprint_for_membership_one",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"member_type": {
"type": "string"
},
"fixed_period_rate_in_cents": {
"type": "integer",
"format": "int32"
},
"list_price_in_cents": {
"type": "integer",
"format": "int32"
},
"period_rate_in_cents": {
"type": "integer",
"format": "int32"
},
"revenue_in_cents": {
"type": "integer",
"format": "int32"
},
"start_date": {
"type": "string",
"format": "date"
},
"uses_tobacco": {
"type": "boolean"
},
"end_date": {
"type": "string"
},
"patient": {
"$ref": "#/components/schemas/Public.PatientBlueprint_leaf"
}
}
}