iam_create-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. The number of Scope objects should not be zero.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-iam-create-scope-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/iam_create-scope",
  "title": "iam_create-scope",
  "description": "A scope is a combination of scope objects which provides additional context.",
  "properties": {
    "key": {
      "$ref": "#/components/schemas/iam_create_resource_group_scope_scope_key"
    },
    "objects": {
      "description": "A list of scope objects for additional context. The number of Scope objects should not be zero.",
      "items": {
        "$ref": "#/components/schemas/iam_create_resource_group_scope_scope_object"
      },
      "type": "array"
    }
  },
  "required": [
    "key",
    "objects"
  ],
  "type": "object"
}