{ "type": "object", "description": "Input payload for creating or updating a feature flag", "properties": { "defaultState": { "type": "string", "description": "The state of a feature flag", "example": "ON", "enum": [ "ON", "OFF", "ABSENT" ] } }, "required": [ "defaultState" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "FeatureFlagInput" }