Hint Health · Schema

Create_Credit

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
credit_category object
amount_in_cents integer Value must be positive
reason string
integration_record_id string
View JSON Schema on GitHub

JSON Schema

provider-creditscontroller-create_body.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/provider-creditscontroller-create_body",
  "title": "Create_Credit",
  "type": "object",
  "properties": {
    "credit_category": {
      "$ref": "#/components/schemas/Association"
    },
    "amount_in_cents": {
      "type": "integer",
      "format": "int32",
      "description": "Value must be positive"
    },
    "reason": {
      "type": "string"
    },
    "integration_record_id": {
      "type": "string"
    }
  },
  "required": [
    "credit_category",
    "amount_in_cents"
  ]
}