{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ClientRefreshTokenPolicy",
"title": "ClientRefreshTokenPolicy",
"type": "object",
"additionalProperties": false,
"required": [
"audience",
"scope"
],
"properties": {
"audience": {
"type": "string",
"description": "The identifier of the resource server to which the Multi Resource Refresh Token Policy applies",
"minLength": 1,
"maxLength": 600
},
"scope": {
"type": "array",
"description": "The resource server permissions granted under the Multi Resource Refresh Token Policy, defining the context in which an access token can be used",
"items": {
"type": "string",
"description": "A resource server permission granted under the Multi Resource Refresh Token Policy",
"minLength": 1,
"maxLength": 280
}
}
}
}