DigitalStorageTweak/schema/Components/CL_ItemAmount.json
Merith 1ea86db763 Convert to magefile for validation
Convert Makefile to Magefile
Add json validations
2025-06-22 14:51:21 -07:00

23 lines
No EOL
864 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/budak7273/ContentLib_Documentation/main/JsonSchemas/CL_ItemAmount.json",
"title": "Item Amount Structure",
"description": "Respresents a quantity of an item",
"$comment": "This file does not represent ContentLib asset type! It's a resource used by other JSON Schemas.",
"type": "object",
"additionalProperties": false,
"required": [
"Item",
"Amount"
],
"properties": {
"Item": {
"$ref": "./CL_NameResolvedAsset.json"
},
"Amount": {
"type": "integer",
"minimum": 0,
"description": "Integer specifying the quantity of item(s). Remember that remember that 1000 fluid units displays as 1 Liter ingame."
}
}
}