changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "oneOf": [
+ {
+ "properties": {
+ "author": {
+ "description": "Author name",
+ "type": "string"
+ },
+ "author_slug": {
+ "description": "Author slug for filtering",
+ "type": "string"
+ },
+ "content": {
+ "description": "Quote text",
+ "type": "string"
+ },
+ "id": {
+ "description": "Quote unique identifier",
+ "type": "string"
+ },
+ "length": {
+ "description": "Character count of quote",
+ "type": "number"
+ },
+ "tags": {
+ "description": "Topic tags for the quote",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "id",
+ "content",
+ "author",
+ "author_slug",
+ "length",
+ "tags"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "count": {
+ "description": "Number of quotes returned",
+ "type": "number"
+ },
+ "quotes": {
+ "description": "Array of random quotes",
+ "items": {
+ "properties": {
+ "author": {
+ "description": "Author name",
+ "type": "string"
+ },
+ "author_slug": {
+ "description": "Author slug for filtering",
+ "type": "string"
+ },
+ "content": {
+ "description": "Quote text",
+ "type": "string"
+ },
+ "id": {
+ "description": "Quote unique identifier",
+ "type": "string"
+ },
+ "length": {
+ "description": "Character count of quote",
+ "type": "number"
+ },
+ "tags": {
+ "description": "Topic tags for the quote",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "id",
+ "content",
+ "author",
+ "author_slug",
+ "length",
+ "tags"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "quotes"
+ ],
+ "type": "object"
+ }
+ ],
+ "type": "object"
+}