changedOutput schema / properties / data / anyOf
Previous value: -[
- {
- "additionalProperties": {},
- "properties": {
- "items": {
- "anyOf": [
- {
- "items": {
- "additionalProperties": {},
- "properties": {
- "pathway_id": {
- "type": "string"
- },
- "title": {
- "type": "string"
- }
- },
- "required": [
- "pathway_id",
- "title"
- ],
- "type": "object"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
- ]
- },
- "mode": {
- "enum": [
- "catalogue",
- "pathway"
- ],
- "type": "string"
- },
- "pathway_id": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "stages": {
- "anyOf": [
- {
- "items": {
- "additionalProperties": {},
- "properties": {
- "stage_id": {
- "type": "string"
- },
- "title": {
- "type": "string"
- },
- "waypoints": {
- "items": {
- "additionalProperties": {},
- "properties": {
- "cite": {
- "type": "string"
- },
- "why": {
- "type": "string"
- }
- },
- "required": [
- "cite",
- "why"
- ],
- "type": "object"
- },
- "type": "array"
- }
- },
- "required": [
- "stage_id",
- "title",
- "waypoints"
- ],
- "type": "object"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
- ]
- }
- },
- "required": [
- "mode"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": {},
+ "properties": {
+ "items": {
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "pathway_id": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "pathway_id",
+ "title"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "mode": {
+ "enum": [
+ "catalogue",
+ "pathway"
+ ],
+ "type": "string"
+ },
+ "pathway_id": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "stages": {
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "stage_id": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "waypoints": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "cite": {
+ "type": "string"
+ },
+ "why": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "cite",
+ "why"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "stage_id",
+ "title",
+ "waypoints"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "mode"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / pagination / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "complete": {
- "type": "boolean"
- },
- "next_cursor": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "total": {
- "type": "number"
- }
- },
- "required": [
- "complete",
- "next_cursor"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "complete": {
+ "type": "boolean"
+ },
+ "next_cursor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "total": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "complete",
+ "next_cursor"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]