launchdarkly · Schema

CustomRoles

A collection of custom roles.

Properties

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

JSON Schema

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