HubSpot · Schema

FeatureFlagInput

Input payload for creating or updating a feature flag

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
defaultState string The state of a feature flag
View JSON Schema on GitHub

JSON Schema

hubspot-crm-feature-flags-feature-flag-input-schema.json Raw ↑
{
  "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"
}