Hint Health · Schema

Create_Charge_Item

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
name string
price_in_cents number
type string
description string
View JSON Schema on GitHub

JSON Schema

provider-chargeitemscontroller-create_body.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/provider-chargeitemscontroller-create_body",
  "title": "Create_Charge_Item",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "price_in_cents": {
      "type": "number",
      "format": "double"
    },
    "type": {
      "type": "string"
    },
    "description": {
      "type": "string"
    }
  },
  "required": [
    "name",
    "price_in_cents",
    "type"
  ]
}