mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
50 lines
1.4 KiB
JSON
50 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"properties": {
|
|
"Type": {
|
|
"const": "Imc"
|
|
},
|
|
"AllVariants": {
|
|
"type": "boolean"
|
|
},
|
|
"OnlyAttributes": {
|
|
"type": "boolean"
|
|
},
|
|
"Identifier": {
|
|
"$ref": "meta_imc.json#ImcIdentifier"
|
|
},
|
|
"DefaultEntry": {
|
|
"$ref": "meta_imc.json#ImcEntry"
|
|
},
|
|
"Options": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "option.json",
|
|
"oneOf": [
|
|
{
|
|
"properties": {
|
|
"AttributeMask": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 1023
|
|
}
|
|
},
|
|
"required": [
|
|
"AttributeMask"
|
|
]
|
|
},
|
|
{
|
|
"properties": {
|
|
"IsDisableSubMod": {
|
|
"const": true
|
|
}
|
|
},
|
|
"required": [
|
|
"IsDisableSubMod"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|