changedOutput schema / properties / plan / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "content": {
- "type": "string"
- },
- "date": {
- "description": "Calendar date, \"YYYY-MM-DD\".",
- "type": "string"
- },
- "id": {
- "type": "string"
- },
- "url": {
- "type": "string"
- }
- },
- "required": [
- "id",
- "url",
- "date",
- "content"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "content": {
+ "type": "string"
+ },
+ "date": {
+ "description": "Calendar date, \"YYYY-MM-DD\".",
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "title": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "url",
+ "date",
+ "title",
+ "content"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]