changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Quotes returned on this page",
+ "type": "number"
+ },
+ "page": {
+ "description": "Current page number",
+ "type": "number"
+ },
+ "quotes": {
+ "description": "Matching quotes from search",
+ "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"
+ },
+ "total": {
+ "description": "Total matching quotes across all pages",
+ "type": "number"
+ },
+ "total_pages": {
+ "description": "Total number of pages",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "count",
+ "page",
+ "total_pages",
+ "quotes"
+ ],
+ "type": "object"
+}