iam_scope

A scope is a combination of scope objects which provides additional context.

APIs.ioEngineeringPlatform

Properties

Name Type Description
key object
objects array A list of scope objects for additional context.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-iam-scope-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/iam_scope",
  "title": "iam_scope",
  "description": "A scope is a combination of scope objects which provides additional context.",
  "properties": {
    "key": {
      "$ref": "#/components/schemas/iam_scope_key"
    },
    "objects": {
      "description": "A list of scope objects for additional context.",
      "items": {
        "$ref": "#/components/schemas/iam_scope_object"
      },
      "type": "array"
    }
  },
  "required": [
    "key",
    "objects"
  ],
  "type": "object"
}