Files
varsity/test/responses/products-response.json
2025-10-01 20:01:42 +00:00

22 lines
426 B
JSON

{
"description": "List of products",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "../schemas/product-schema.json"
}
},
"pagination": {
"$ref": "../schemas/pagination-schema.json"
}
}
}
}
}
}