A resource server scope.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-schema/user-pools-resource-server-scope-type-schema.json", "title": "ResourceServerScopeType", "description": "A resource server scope.", "type": "object", "properties": { "ScopeName": { "allOf": [ { "$ref": "#/components/schemas/ResourceServerScopeNameType" }, { "description": "The name of the scope." } ] }, "ScopeDescription": { "allOf": [ { "$ref": "#/components/schemas/ResourceServerScopeDescriptionType" }, { "description": "A description of the scope." } ] } }, "required": [ "ScopeName", "ScopeDescription" ] }