{ "$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" }