mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 10:17:22 +01:00
Add drafts of JSON schemas
This commit is contained in:
parent
df148b556a
commit
a1931a93fb
4 changed files with 768 additions and 0 deletions
25
schemas/default_mod.json
Normal file
25
schemas/default_mod.json
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"$id": "https://raw.githubusercontent.com/xivdev/Penumbra/master/schemas/container.json",
|
||||
"allOf": [
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Version": {
|
||||
"description": "???",
|
||||
"type": ["integer", "null"]
|
||||
},
|
||||
"Description": {
|
||||
"description": "Description of the sub-mod.",
|
||||
"type": ["string", "null"]
|
||||
},
|
||||
"Image": {
|
||||
"description": "Unused by Penumbra.",
|
||||
"type": ["string", "null"]
|
||||
}
|
||||
}
|
||||
}, {
|
||||
"$ref": "https://raw.githubusercontent.com/xivdev/Penumbra/master/schemas/container.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue