Amazon Cognito · Schema

ResourceServerScopeType

A resource server scope.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
ScopeName object
ScopeDescription object
View JSON Schema on GitHub

JSON Schema

user-pools-resource-server-scope-type-schema.json Raw ↑
{
  "$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"
  ]
}