{ "$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-feature-flag-input-structure.json", "name": "FeatureFlagInput", "description": "Input payload for creating or updating a feature flag", "type": "object", "properties": { "defaultState": { "type": "string", "description": "The state of a feature flag", "enum": [ "ON", "OFF", "ABSENT" ], "example": "ON" } }, "required": [ "defaultState" ] }