A scope is a combination of scope objects which provides additional context.
{ "$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" }