launchdarkly · Schema

Members

A paginated collection of account members.

Properties

Name Type Description
items array The list of account members.
totalCount integer The total number of members.
_links object
View JSON Schema on GitHub

JSON Schema

launchdarkly-members-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Members",
  "title": "Members",
  "type": "object",
  "description": "A paginated collection of account members.",
  "properties": {
    "items": {
      "type": "array",
      "description": "The list of account members.",
      "items": {
        "$ref": "#/components/schemas/Member"
      }
    },
    "totalCount": {
      "type": "integer",
      "description": "The total number of members."
    },
    "_links": {
      "$ref": "#/components/schemas/Links"
    }
  }
}