EnrollmentGroup

Schema for EnrollmentGroup from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
id string Enrollment group id
aptc number Advanced Premium Tax Credit amount
planID string The plan id being queried
View JSON Schema on GitHub

JSON Schema

marketplace-enrollmentgroup.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EnrollmentGroup",
  "description": "Schema for EnrollmentGroup from CMS Marketplace API",
  "properties": {
    "id": {
      "description": "Enrollment group id",
      "type": "string",
      "pattern": "^[a-f0-9-]+$"
    },
    "aptc": {
      "description": "Advanced Premium Tax Credit amount",
      "type": "number",
      "format": "float"
    },
    "planID": {
      "description": "The plan id being queried",
      "type": "string"
    }
  },
  "type": "object",
  "required": [
    "id",
    "planID"
  ]
}