{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/crm-feature-flags-api-batch-portal-flag-state-input-item-schema.json", "title": "BatchPortalFlagStateInputItem", "description": "Individual item in a batch upsert request", "type": "object", "properties": { "portalId": { "type": "integer", "format": "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": [ "portalId", "flagState" ] }