Amazon Cognito · JSON Structure

Cognito Idp Resource Server Scope Type Structure

A resource server scope.

Type: object Properties: 2 Required: 2
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

ResourceServerScopeType is a JSON Structure definition published by Amazon Cognito, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ScopeName ScopeDescription

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "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"
  ],
  "description": "A resource server scope.",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-idp-resource-server-scope-type-structure.json",
  "name": "ResourceServerScopeType"
}