Issuer

Schema for Issuer from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
eligible_dependents array list of allowed relationship types for dependents
id string 5-digit HIOS ID
individual_url string URL for individual market plans
name string issuer's name
shop_url string URL for SHOP market plans
state string 2-letter USPS state abbreviation
toll_free string toll-free customer service phone number
tty string TTY customer service number)
View JSON Schema on GitHub

JSON Schema

marketplace-issuer.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Issuer",
  "description": "Schema for Issuer from CMS Marketplace API",
  "properties": {
    "eligible_dependents": {
      "description": "list of allowed relationship types for dependents",
      "items": {
        "$ref": "#/definitions/Relationship"
      },
      "type": "array"
    },
    "id": {
      "description": "5-digit HIOS ID",
      "type": "string"
    },
    "individual_url": {
      "description": "URL for individual market plans",
      "type": "string"
    },
    "name": {
      "description": "issuer's name",
      "type": "string"
    },
    "shop_url": {
      "description": "URL for SHOP market plans",
      "type": "string"
    },
    "state": {
      "description": "2-letter USPS state abbreviation",
      "type": "string"
    },
    "toll_free": {
      "description": "toll-free customer service phone number",
      "type": "string"
    },
    "tty": {
      "description": "TTY customer service number)",
      "type": "string"
    }
  },
  "type": "object"
}