Hint Health · Schema

EmergencyContact

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
name string
email string
relationship string
relationship_other string
phone object
View JSON Schema on GitHub

JSON Schema

emergencycontact.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/emergencycontact",
  "title": "EmergencyContact",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "relationship": {
      "type": "string",
      "enum": [
        "spouse",
        "parent",
        "sibling",
        "child",
        "grandparent",
        "guardian",
        "other"
      ]
    },
    "relationship_other": {
      "type": "string"
    },
    "phone": {
      "type": "object",
      "properties": {
        "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"
      ]
    }
  }
}