changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "forms": {
+ "description": "Matching forms (empty if none)",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "created_at": {
+ "type": "string"
+ },
+ "has_unpublished_changes": {
+ "type": "boolean"
+ },
+ "id": {
+ "type": "string"
+ },
+ "is_live": {
+ "type": "boolean"
+ },
+ "share_id": {
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "color": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "color"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "title": {
+ "type": "string"
+ },
+ "updated_at": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "share_id",
+ "is_live",
+ "has_unpublished_changes",
+ "created_at",
+ "updated_at",
+ "tags"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "next_cursor": {
+ "description": "Pass as cursor to fetch the next page, or null when no more",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "forms",
+ "next_cursor"
+ ],
+ "type": "object"
+}