{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/crm-feature-flags-api-portal-flag-state-input-schema.json", "title": "PortalFlagStateInput", "description": "Input payload for setting a portal flag state", "type": "object", "properties": { "flagState": { "type": "string", "description": "The state of a feature flag", "enum": [ "ON", "OFF", "ABSENT" ], "example": "ON" } }, "required": [ "flagState" ] }