{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/crm-feature-flags-api-portal-flag-state-input-structure.json", "name": "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" ] }