{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BenefitPlan", "title": "BenefitPlan", "type": "object", "properties": { "id": { "type": "string", "example": "abc123" }, "descriptor": { "type": "string", "example": "example_value" }, "name": { "type": "string", "example": "Example Title" }, "benefitPlanType": { "type": "string", "description": "The type of benefit plan (e.g., Medical, Dental, Vision, Life Insurance, 401k).", "example": "example_value" }, "carrier": { "$ref": "#/components/schemas/ResourceReference" }, "isActive": { "type": "boolean", "example": true } } }