launchdarkly · Schema

FeatureFlags

A paginated collection of feature flags.

Properties

Name Type Description
items array The list of feature flags.
totalCount integer The total number of feature flags matching the query.
_links object
View JSON Schema on GitHub

JSON Schema

launchdarkly-featureflags-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FeatureFlags",
  "title": "FeatureFlags",
  "type": "object",
  "description": "A paginated collection of feature flags.",
  "properties": {
    "items": {
      "type": "array",
      "description": "The list of feature flags.",
      "items": {
        "$ref": "#/components/schemas/FeatureFlag"
      }
    },
    "totalCount": {
      "type": "integer",
      "description": "The total number of feature flags matching the query."
    },
    "_links": {
      "$ref": "#/components/schemas/Links"
    }
  }
}