JSON Schema Draft 07
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://www.ssofy.com/schema/scopes.json",
"type": "array",
"maxItems": 100,
"items": {
"$id": "#/items",
"type": "object",
"required": [
"id",
"title"
],
"properties": {
"id": {
"$id": "#/items/properties/id",
"title": "Scope Id",
"type": "string"
},
"title": {
"$id": "#/items/properties/title",
"title": "Title",
"type": "string"
},
"description": {
"$id": "#/items/properties/description",
"title": "Description",
"type": [
"string",
"null"
],
"description": "Detailed description about the scope"
},
"icon": {
"$id": "#/items/properties/icon",
"title": "Icon",
"type": [
"string",
"null"
],
"description": "Font-Awesome icon identifier. See fontawesome.com for the list of available icons."
},
"url": {
"$id": "#/items/properties/url",
"title": "Url",
"type": [
"string",
"null"
],
"format": "uri",
"description": "Link to a page containing information about scope."
}
},
"additionalProperties": false
}
}