FlattenedEnrollmentGroup

Schema for FlattenedEnrollmentGroup from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
id string
csr object
enrollees array
grouping_reason string
year number
subscriber_id string
relationships array
effective_date string
View JSON Schema on GitHub

JSON Schema

marketplace-flattenedenrollmentgroup.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FlattenedEnrollmentGroup",
  "description": "Schema for FlattenedEnrollmentGroup from CMS Marketplace API",
  "properties": {
    "id": {
      "type": "string"
    },
    "csr": {
      "$ref": "#/definitions/CostSharingReductionEnum"
    },
    "enrollees": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/ExtendedEnrollee"
      }
    },
    "grouping_reason": {
      "type": "string"
    },
    "year": {
      "x-example": 2019,
      "type": "number",
      "format": "integer"
    },
    "subscriber_id": {
      "type": "string"
    },
    "relationships": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/RelationshipEdge"
      }
    },
    "effective_date": {
      "type": "string",
      "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
      "x-example": "2020-01-01"
    }
  }
}