Hint Health · Schema

Category

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
id string Optional if type is specified
type string Ignored if ID is specified
View JSON Schema on GitHub

JSON Schema

category.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/category",
  "title": "Category",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Optional if type is specified"
    },
    "type": {
      "type": "string",
      "description": "Ignored if ID is specified",
      "enum": [
        "memberships",
        "labs",
        "medications",
        "vitamins_and_supplements",
        "vaccines",
        "imaging",
        "supplies_and_dme",
        "retail_items",
        "office_visits",
        "procedures",
        "fees"
      ]
    }
  },
  "required": [
    "id",
    "type"
  ]
}