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