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