mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
update schema organization anf change some things.
This commit is contained in:
parent
5f8377acaa
commit
ec3ec7db4e
22 changed files with 796 additions and 676 deletions
95
schemas/structs/manipulation.json
Normal file
95
schemas/structs/manipulation.json
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Type": {
|
||||
"enum": [ "Unknown", "Imc", "Eqdp", "Eqp", "Est", "Gmp", "Rsp", "GlobalEqp", "Atch" ]
|
||||
},
|
||||
"Manipulation": {
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"required": [ "Type", "Manipulation" ],
|
||||
"oneOf": [
|
||||
{
|
||||
"properties": {
|
||||
"Type": {
|
||||
"const": "Imc"
|
||||
},
|
||||
"Manipulation": {
|
||||
"$ref": "meta_imc.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"properties": {
|
||||
"Type": {
|
||||
"const": "Eqdp"
|
||||
},
|
||||
"Manipulation": {
|
||||
"$ref": "meta_eqdp.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"properties": {
|
||||
"Type": {
|
||||
"const": "Eqp"
|
||||
},
|
||||
"Manipulation": {
|
||||
"$ref": "meta_eqp.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"properties": {
|
||||
"Type": {
|
||||
"const": "Est"
|
||||
},
|
||||
"Manipulation": {
|
||||
"$ref": "meta_est.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"properties": {
|
||||
"Type": {
|
||||
"const": "Gmp"
|
||||
},
|
||||
"Manipulation": {
|
||||
"$ref": "meta_gmp.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"properties": {
|
||||
"Type": {
|
||||
"const": "Rsp"
|
||||
},
|
||||
"Manipulation": {
|
||||
"$ref": "meta_rsp.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"properties": {
|
||||
"Type": {
|
||||
"const": "GlobalEqp"
|
||||
},
|
||||
"Manipulation": {
|
||||
"$ref": "meta_geqp.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"properties": {
|
||||
"Type": {
|
||||
"const": "Atch"
|
||||
},
|
||||
"Manipulation": {
|
||||
"$ref": "meta_atch.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue