Split · Schema

FeatureFlagUpdate

Request body for updating a feature flag

ExperimentationFeature FlagsFeature ManagementRolloutsSDKs

Properties

Name Type Description
description string Updated description of the feature flag
tags array Updated tags for the feature flag
View JSON Schema on GitHub

JSON Schema

split-featureflagupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FeatureFlagUpdate",
  "title": "FeatureFlagUpdate",
  "type": "object",
  "description": "Request body for updating a feature flag",
  "properties": {
    "description": {
      "type": "string",
      "description": "Updated description of the feature flag"
    },
    "tags": {
      "type": "array",
      "description": "Updated tags for the feature flag",
      "items": {
        "$ref": "#/components/schemas/Tag"
      }
    }
  }
}