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": {
+ "created_at": {
+ "type": "string"
+ },
+ "definition": {
+ "additionalProperties": true,
+ "properties": {},
+ "type": "object"
+ },
+ "description": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "effective_role": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "organization_id": {
+ "$ref": "#/properties/data/properties/description"
+ },
+ "updated_at": {
+ "type": "string"
+ },
+ "view_id": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "view_id",
+ "name"
+ ],
+ "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"
+}