Current section
Files
Jump to
Current section
Files
priv/minecraft-data/schemas/instruments_schema.json
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "instruments",
"type": "array",
"uniqueItems": true,
"items" : {
"title": "instrument",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for an instrument",
"type": "integer",
"minimum": 0
},
"name": {
"description": "The name of an instrument",
"type": "string",
"pattern": "\\S+"
}
},
"required": [
"id",
"name"
],
"additionalProperties": false
}
}