{ "$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-structure.json", "name": "PortalFlagState", "description": "Represents the flag state override for a specific portal (account)", "type": "object", "properties": { "appId": { "type": "int64", "description": "The unique identifier for the HubSpot application", "example": 12345678 }, "flagName": { "type": "string", "description": "The name of the feature flag", "example": "new-dashboard-feature" }, "portalId": { "type": "int64", "description": "The unique identifier for the HubSpot portal (account)", "example": 98765432 }, "flagState": { "type": "string", "description": "The state of a feature flag", "enum": [ "ON", "OFF", "ABSENT" ], "example": "ON" } }, "required": [ "appId", "flagName", "portalId", "flagState" ] }