launchdarkly · Schema

Experiments

A paginated collection of experiments.

Properties

Name Type Description
items array The list of experiments.
totalCount integer The total number of experiments.
_links object
View JSON Schema on GitHub

JSON Schema

launchdarkly-experiments-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Experiments",
  "title": "Experiments",
  "type": "object",
  "description": "A paginated collection of experiments.",
  "properties": {
    "items": {
      "type": "array",
      "description": "The list of experiments.",
      "items": {
        "$ref": "#/components/schemas/Experiment"
      }
    },
    "totalCount": {
      "type": "integer",
      "description": "The total number of experiments."
    },
    "_links": {
      "$ref": "#/components/schemas/Links"
    }
  }
}