changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "limit": {
+ "description": "Limit of results returned",
+ "type": "number"
+ },
+ "products": {
+ "description": "Search results",
+ "items": {
+ "properties": {
+ "brand": {
+ "description": "Brand name",
+ "type": "string"
+ },
+ "category": {
+ "description": "Product category",
+ "type": "string"
+ },
+ "description": {
+ "description": "Product description",
+ "type": "string"
+ },
+ "discountPercentage": {
+ "description": "Discount percentage",
+ "type": "number"
+ },
+ "id": {
+ "description": "Product ID",
+ "type": "number"
+ },
+ "images": {
+ "description": "Product images",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "price": {
+ "description": "Product price",
+ "type": "number"
+ },
+ "rating": {
+ "description": "Product rating",
+ "type": "number"
+ },
+ "stock": {
+ "description": "Stock quantity",
+ "type": "number"
+ },
+ "thumbnail": {
+ "description": "Thumbnail URL",
+ "type": "string"
+ },
+ "title": {
+ "description": "Product title",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "skip": {
+ "description": "Number of results skipped",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total results found",
+ "type": "number"
+ }
+ },
+ "type": "object"
+}