Eligibility

Schema for Eligibility from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
aptc number
csr object
hardship_exemption boolean
is_medicaid_chip boolean
View JSON Schema on GitHub

JSON Schema

marketplace-eligibility.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Eligibility",
  "description": "Schema for Eligibility from CMS Marketplace API",
  "properties": {
    "aptc": {
      "format": "float",
      "type": "number"
    },
    "csr": {
      "$ref": "#/definitions/CSREligibilityEnum"
    },
    "hardship_exemption": {
      "type": "boolean"
    },
    "is_medicaid_chip": {
      "type": "boolean"
    }
  },
  "type": "object"
}