{ "type": "object", "description": "Represents a feature flag configuration for an application", "name": "FeatureFlag", "properties": { "appId": { "type": "integer", "description": "The unique identifier for the HubSpot application" }, "flagName": { "type": "string", "description": "The name of the feature flag" }, "defaultState": { "type": "string", "description": "The state of a feature flag", "enum": [ "ON", "OFF", "ABSENT" ] }, "overrideState": { "type": "string", "description": "The state of a feature flag", "enum": [ "ON", "OFF", "ABSENT" ] } }, "required": [ "appId", "flagName", "defaultState" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }