changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "data": {
+ "additionalProperties": true,
+ "description": "The operation result when ok is true.",
+ "properties": {
+ "scope": {
+ "enum": [
+ "own",
+ "team"
+ ],
+ "type": "string"
+ },
+ "sources": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {},
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "team": {
+ "$ref": "#/properties/data/properties/sources/items"
+ },
+ "teams": {
+ "$ref": "#/properties/data/properties/sources"
+ },
+ "total": {
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "error": {
+ "description": "A human-readable error when ok is false.",
+ "type": "string"
+ },
+ "ok": {
+ "description": "Whether noticed completed the operation.",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "ok"
+ ],
+ "type": "object"
+}