Hint Health · Schema

CompanyCreateSanitizer

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
default_plan object You must use plans of type "company"
name string
address object
phones array
View JSON Schema on GitHub

JSON Schema

companycreatesanitizer.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/companycreatesanitizer",
  "title": "CompanyCreateSanitizer",
  "type": "object",
  "properties": {
    "default_plan": {
      "$ref": "#/components/schemas/Association",
      "description": "You must use plans of type \"company\""
    },
    "name": {
      "type": "string"
    },
    "address": {
      "$ref": "#/components/schemas/Address"
    },
    "phones": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PhoneNumber"
      }
    }
  }
}