changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "organizations": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "department": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "name of the department (if member)"
+ },
+ "id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "external unique organization identifier (if set for the organization)"
+ },
+ "link": {
+ "description": "link to the organization manager page",
+ "type": "string"
+ },
+ "name": {
+ "description": "title of the organization",
+ "type": "string"
+ },
+ "organization": {
+ "description": "organization identification string",
+ "type": "string"
+ },
+ "permission": {
+ "additionalProperties": false,
+ "description": "permissions",
+ "properties": {
+ "content": {
+ "description": "permission level to contents in organization",
+ "type": "string"
+ },
+ "organization": {
+ "description": "permission level to organization",
+ "type": "string"
+ }
+ },
+ "required": [
+ "organization",
+ "content"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "organization",
+ "name",
+ "link",
+ "permission"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "organizations"
+ ],
+ "type": "object"
+}