launchdarkly · Schema

Workflows

A collection of workflows.

Properties

Name Type Description
items array The list of workflows.
View JSON Schema on GitHub

JSON Schema

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