launchdarkly · Schema

Project

A LaunchDarkly project containing feature flags and environments.

Properties

Name Type Description
_id string The unique identifier of this project.
key string The project key.
name string The human-readable name of the project.
tags array Tags applied to this project.
environments object
_links object
View JSON Schema on GitHub

JSON Schema

launchdarkly-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Project",
  "title": "Project",
  "type": "object",
  "description": "A LaunchDarkly project containing feature flags and environments.",
  "properties": {
    "_id": {
      "type": "string",
      "description": "The unique identifier of this project."
    },
    "key": {
      "type": "string",
      "description": "The project key."
    },
    "name": {
      "type": "string",
      "description": "The human-readable name of the project."
    },
    "tags": {
      "type": "array",
      "description": "Tags applied to this project.",
      "items": {
        "type": "string"
      }
    },
    "environments": {
      "$ref": "#/components/schemas/Environments"
    },
    "_links": {
      "$ref": "#/components/schemas/Links"
    }
  }
}