Hint Health · Schema

Public.MembershipMemberBlueprint_one

Direct Primary CareDPCHealthcareMembership ManagementPatient EnrollmentMedical BillingEMRHealth Plans

Properties

Name Type Description
id string
member_type string
status string
fixed_period_rate_in_cents integer
list_price_in_cents integer
period_rate_in_cents integer
revenue_in_cents integer
start_date string
end_date string
patient object
View JSON Schema on GitHub

JSON Schema

public-membershipmemberblueprint_one.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.hint.com/schemas/public-membershipmemberblueprint_one",
  "title": "Public.MembershipMemberBlueprint_one",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "member_type": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "fixed_period_rate_in_cents": {
      "type": "integer",
      "format": "int32"
    },
    "list_price_in_cents": {
      "type": "integer",
      "format": "int32"
    },
    "period_rate_in_cents": {
      "type": "integer",
      "format": "int32"
    },
    "revenue_in_cents": {
      "type": "integer",
      "format": "int32"
    },
    "start_date": {
      "type": "string",
      "format": "date"
    },
    "end_date": {
      "type": "string"
    },
    "patient": {
      "$ref": "#/components/schemas/Public.PatientBlueprint_leaf"
    }
  }
}