CurrentEnrollment

Current/existing enrollment information used to determine tobacco status for CiC enrollments. This will ensure rate calculation is done correctly.

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal-GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
plan_id object
effective_date string Date plan went into effect (ISO-8601 YYYY-MM-DD)
uses_tobacco boolean
View JSON Schema on GitHub

JSON Schema

marketplace-currentenrollment.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CurrentEnrollment",
  "description": "Current/existing enrollment information used to determine tobacco status for CiC enrollments. This will ensure rate calculation is done correctly.",
  "required": [
    "plan_id",
    "effective_date",
    "uses_tobacco"
  ],
  "properties": {
    "plan_id": {
      "$ref": "#/definitions/PlanID"
    },
    "effective_date": {
      "description": "Date plan went into effect (ISO-8601 YYYY-MM-DD)",
      "type": "string",
      "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
      "x-example": "2020-01-01"
    },
    "uses_tobacco": {
      "type": "boolean"
    }
  },
  "type": "object"
}