changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "moment": {
+ "additionalProperties": false,
+ "properties": {
+ "endedAt": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "id": {
+ "type": "string"
+ },
+ "importance": {
+ "type": "number"
+ },
+ "kind": {
+ "type": "string"
+ },
+ "lastBody": {
+ "type": "string"
+ },
+ "lastStateAt": {
+ "type": "string"
+ },
+ "startedAt": {
+ "type": "string"
+ },
+ "status": {
+ "enum": [
+ "live",
+ "ended"
+ ],
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "kind",
+ "status",
+ "title",
+ "startedAt"
+ ],
+ "type": "object"
+ },
+ "sourcesSummary": {
+ "additionalProperties": false,
+ "properties": {
+ "countries": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "totalUrls": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "totalUrls",
+ "countries"
+ ],
+ "type": "object"
+ },
+ "states": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "body": {
+ "type": "string"
+ },
+ "createdAt": {
+ "type": "string"
+ },
+ "importance": {
+ "type": "number"
+ },
+ "kind": {
+ "type": "string"
+ },
+ "pinned": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "kind",
+ "importance",
+ "body",
+ "pinned",
+ "createdAt"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "moment",
+ "states",
+ "sourcesSummary"
+ ],
+ "type": "object"
+}