mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"type": "object",
|
|
"properties": {
|
|
"Condition": {
|
|
"$ref": "meta_enums.json#U16"
|
|
},
|
|
"Type": {
|
|
"enum": [ "DoNotHideEarrings", "DoNotHideNecklace", "DoNotHideBracelets", "DoNotHideRingR", "DoNotHideRingL", "DoNotHideHrothgarHats", "DoNotHideVieraHats" ]
|
|
}
|
|
},
|
|
"required": [ "Type" ],
|
|
"oneOf": [
|
|
{
|
|
"properties": {
|
|
"Type": {
|
|
"const": [ "DoNotHideHrothgarHats", "DoNotHideVieraHats" ]
|
|
},
|
|
"Condition": {
|
|
"const": 0
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"properties": {
|
|
"Type": {
|
|
"const": [ "DoNotHideHrothgarHats", "DoNotHideVieraHats" ]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"properties": {
|
|
"Type": {
|
|
"const": [ "DoNotHideEarrings", "DoNotHideNecklace", "DoNotHideBracelets", "DoNotHideRingR", "DoNotHideRingL" ]
|
|
},
|
|
"Condition": {}
|
|
}
|
|
}
|
|
]
|
|
}
|