This commit is contained in:
JMARyA 2024-08-28 22:03:39 +02:00
parent acf5ebae78
commit 0e174dc06e
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
6 changed files with 53 additions and 16 deletions

View file

@ -9,6 +9,11 @@
"title": "Item Name",
"description": "The name of the Item"
},
"category": {
"title": "Category",
"description": "The category of the item",
"type": "string"
},
"variants": {
"type": "array",
"minItems": 1,
@ -26,5 +31,8 @@
}
}
},
"required": ["name", "variants"]
"required": [
"name",
"variants"
]
}