Hint Health · Schema
Public.CouponBlueprint_one
Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| code | string | |
| description | string | |
| amount_off_in_cents | integer | |
| apply_to_each_patient | boolean | |
| created_at | string | |
| duration_in_months | integer | |
| percent_off | number | |
| updated_at | string | |
| is_redeemable | boolean | |
| is_archived | boolean | |
| redeemable_from | string | |
| redeemable_until | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.hint.com/schemas/public-couponblueprint_one",
"title": "Public.CouponBlueprint_one",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"code": {
"type": "string"
},
"description": {
"type": "string"
},
"amount_off_in_cents": {
"type": "integer",
"format": "int32"
},
"apply_to_each_patient": {
"type": "boolean"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"duration_in_months": {
"type": "integer",
"format": "int32"
},
"percent_off": {
"type": "number",
"format": "float"
},
"updated_at": {
"type": "string",
"format": "date-time"
},
"is_redeemable": {
"type": "boolean"
},
"is_archived": {
"type": "boolean"
},
"redeemable_from": {
"type": "string",
"format": "date-time"
},
"redeemable_until": {
"type": "string",
"format": "date-time"
}
}
}