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": {
+ "ai_enabled": {
+ "type": "boolean"
+ },
+ "description": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "list_id": {
+ "type": "string"
+ },
+ "member_count": {
+ "type": "number"
+ },
+ "members": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {},
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "name": {
+ "type": "string"
+ },
+ "organization_id": {
+ "$ref": "#/properties/data/properties/description"
+ },
+ "pending_count": {
+ "type": "number"
+ },
+ "pending_total": {
+ "type": "number"
+ },
+ "suggestions": {
+ "$ref": "#/properties/data/properties/members"
+ }
+ },
+ "required": [
+ "list_id",
+ "name",
+ "members",
+ "suggestions",
+ "pending_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"
+}