Hint Health · Schema

Public.ChargeItemBlueprint_one

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
id string
code string
description string
name string
provider_web_link string
created_at string
price_in_cents number
quantity_in_stock integer
updated_at string
category object
View JSON Schema on GitHub

JSON Schema

public-chargeitemblueprint_one.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/public-chargeitemblueprint_one",
  "title": "Public.ChargeItemBlueprint_one",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "code": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "provider_web_link": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "price_in_cents": {
      "type": "number",
      "format": "float"
    },
    "quantity_in_stock": {
      "type": "integer",
      "format": "int32"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "category": {
      "$ref": "#/components/schemas/Public.CategoryBlueprint_one"
    }
  }
}