Hint Health · Schema

Create_Sponsorship

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
is_subscriber boolean Currently only employees may be subscribers
type string May be one of "employee", "spouse", or "child"
external_id string
patient object
family object This will be returned to you upon creation of the employee. This is only required when creating dependents.
View JSON Schema on GitHub

JSON Schema

provider-companysponsorshipscontroller-create_body.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/provider-companysponsorshipscontroller-create_body",
  "title": "Create_Sponsorship",
  "type": "object",
  "properties": {
    "is_subscriber": {
      "type": "boolean",
      "description": "Currently only employees may be subscribers"
    },
    "type": {
      "type": "string",
      "description": "May be one of \"employee\", \"spouse\", or \"child\""
    },
    "external_id": {
      "type": "string"
    },
    "patient": {
      "$ref": "#/components/schemas/Association"
    },
    "family": {
      "$ref": "#/components/schemas/Association",
      "description": "This will be returned to you upon creation of the employee. This is only required when creating dependents."
    }
  },
  "required": [
    "is_subscriber",
    "type",
    "patient"
  ]
}