Hint Health · Schema

QuoteSanitizer.MemberSanitizer

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
type string Choose one below. You can think of "spouse" as "adult". This is a naming issue that will hopefully be addressed in the future
age integer
uses_tobacco boolean
dob string Date must be formatted as YYYY-MM-DD.
start_date string Date must be formatted as YYYY-MM-DD.
View JSON Schema on GitHub

JSON Schema

quotesanitizer-membersanitizer.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/quotesanitizer-membersanitizer",
  "title": "QuoteSanitizer.MemberSanitizer",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Choose one below. You can think of \"spouse\" as \"adult\". This is a naming issue that will hopefully be addressed in the future",
      "enum": [
        "primary",
        "child",
        "spouse"
      ]
    },
    "age": {
      "type": "integer",
      "format": "int32"
    },
    "uses_tobacco": {
      "type": "boolean"
    },
    "dob": {
      "type": "string",
      "format": "date",
      "description": "Date must be formatted as YYYY-MM-DD."
    },
    "start_date": {
      "type": "string",
      "format": "date",
      "description": "Date must be formatted as YYYY-MM-DD."
    }
  },
  "required": [
    "type",
    "uses_tobacco"
  ]
}