Nuxeo · Schema
oauth2ProviderData
Content ManagementDigital Asset ManagementEnterpriseDocumentsWorkflowsSearchOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| authorizationServerURL | string | |
| authorizationURL | string | |
| clientId | string | |
| clientSecret | string | |
| description | string | |
| entity-type | string | |
| isAuthorized | boolean | |
| isAvailable | boolean | |
| isEnabled | boolean | |
| scopes | array | |
| serviceName | string | |
| tokenServerURL | string | |
| userAuthorizationURL | string | |
| userId | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/nuxeo/main/json-schema/oauth2ProviderData.json",
"title": "oauth2ProviderData",
"properties": {
"authorizationServerURL": {
"type": "string",
"uniqueItems": false
},
"authorizationURL": {
"type": "string",
"uniqueItems": false
},
"clientId": {
"type": "string",
"uniqueItems": false
},
"clientSecret": {
"type": "string",
"uniqueItems": false
},
"description": {
"type": "string",
"uniqueItems": false
},
"entity-type": {
"type": "string",
"uniqueItems": false
},
"isAuthorized": {
"type": "boolean",
"uniqueItems": false
},
"isAvailable": {
"type": "boolean",
"uniqueItems": false
},
"isEnabled": {
"type": "boolean",
"uniqueItems": false
},
"scopes": {
"items": {
"type": "string"
},
"type": "array",
"uniqueItems": false
},
"serviceName": {
"type": "string",
"uniqueItems": false
},
"tokenServerURL": {
"type": "string",
"uniqueItems": false
},
"userAuthorizationURL": {
"type": "string",
"uniqueItems": false
},
"userId": {
"type": "string",
"uniqueItems": false
}
},
"required": [
"entity-type",
"serviceName"
],
"uniqueItems": false
}