Hint Health · Schema

Create_PartnerCharge

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
amount_in_cents integer
description string
patient object
integration_record_id string
lines array
cost_in_cents integer
View JSON Schema on GitHub

JSON Schema

provider-partnerchargescontroller-create_body.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/provider-partnerchargescontroller-create_body",
  "title": "Create_PartnerCharge",
  "type": "object",
  "properties": {
    "amount_in_cents": {
      "type": "integer",
      "format": "int32"
    },
    "description": {
      "type": "string"
    },
    "patient": {
      "$ref": "#/components/schemas/Association"
    },
    "integration_record_id": {
      "type": "string"
    },
    "lines": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PartnerChargeLine"
      }
    },
    "cost_in_cents": {
      "type": "integer",
      "format": "int32"
    }
  },
  "required": [
    "amount_in_cents",
    "description",
    "integration_record_id"
  ]
}