schemas.schema-form.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gravitee-resource-oauth2-provider-keycloak Show documentation
Show all versions of gravitee-resource-oauth2-provider-keycloak Show documentation
The resource is defined to introspect an access token provided by Keycloak.
{
"type" : "object",
"id" : "urn:jsonschema:io:gravitee:resource:oauth2:keycloak:configuration:OAuth2KeycloakResourceConfiguration",
"properties" : {
"keycloakConfiguration" : {
"title": "Keycloak client configuration",
"type" : "string",
"x-schema-form": {
"type": "codemirror",
"codemirrorOptions": {
"placeholder": "Place your Keycloak OIDC JSON client adapter configuration here.",
"lineWrapping": true,
"lineNumbers": true,
"allowDropFileTypes": true,
"autoCloseTags": true,
"mode": "javascript"
}
}
},
"validateTokenLocally" : {
"title": "Local token validation",
"type" : "boolean",
"default": true
}
},
"required": [
"keycloakConfiguration",
"validateTokenLocally"
]
}