Hint Health · Schema

PhoneNumber

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
id string
number number
type string
us_formattable boolean Make this false if your number is not exactly 10 digits
View JSON Schema on GitHub

JSON Schema

phonenumber.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/phonenumber",
  "title": "PhoneNumber",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "number": {
      "type": "number"
    },
    "type": {
      "type": "string"
    },
    "us_formattable": {
      "type": "boolean",
      "description": "Make this false if your number is not exactly 10 digits"
    }
  },
  "required": [
    "number",
    "type"
  ]
}