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

24 lines
387 B
JSON

{
"$id": "brands",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"logo": {
"type": "string"
},
"description": {
"type": "string"
},
"website": {
"type": "string",
"format": "uri"
}
}
}