changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "connections": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "canRead": {
+ "type": "boolean"
+ },
+ "canWrite": {
+ "type": "boolean"
+ },
+ "id": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "provider": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "provider",
+ "canRead",
+ "canWrite"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "connections"
+ ],
+ "type": "object"
+}