launchdarkly · Schema

TagCollection

A collection of tags.

Properties

Name Type Description
items array The list of tags.
_links object
View JSON Schema on GitHub

JSON Schema

launchdarkly-tagcollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagCollection",
  "title": "TagCollection",
  "type": "object",
  "description": "A collection of tags.",
  "properties": {
    "items": {
      "type": "array",
      "description": "The list of tags.",
      "items": {
        "type": "string"
      }
    },
    "_links": {
      "$ref": "#/components/schemas/Links"
    }
  }
}