ecommerce-app/.gitapp/schemas/products.json

50 lines
840 B
JSON

{
"$id": "products",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"name",
"price",
"sku"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string"
},
"price": {
"type": "number",
"minimum": 0
},
"sku": {
"type": "string"
},
"stock": {
"type": "integer",
"minimum": 0
},
"image": {
"type": "string"
},
"featured": {
"type": "boolean"
},
"category": {
"type": "string",
"x-relation": {
"collection": "categories",
"type": "single"
}
},
"brand": {
"type": "string",
"x-relation": {
"collection": "brands",
"type": "single"
}
}
}
}