launchdarkly · Schema

ApprovalRequests

A collection of approval requests.

Properties

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

JSON Schema

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