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": {
+ "actions": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "action_id": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "person_id": {
+ "type": "string"
+ },
+ "remind_at": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "actions",
+ "total"
+ ],
+ "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"
+}