Skip to content

Commit 0756632

Browse files
committed
Update declarations.
1 parent 352eecf commit 0756632

File tree

3 files changed

+636
-12
lines changed

3 files changed

+636
-12
lines changed

doc/world_builder_declarations.schema.json

Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8361,6 +8361,152 @@
83618361
"type": "array",
83628362
"items": {
83638363
"oneOf": [
8364+
{
8365+
"type": "object",
8366+
"description": "Uniform velocity model. Set the velocity to a constant value.",
8367+
"additionalProperties": false,
8368+
"required": [
8369+
"model",
8370+
"euler pole"
8371+
],
8372+
"properties": {
8373+
"model": {
8374+
"default value": "",
8375+
"type": "string",
8376+
"description": "The name of the velocity model.",
8377+
"enum": [
8378+
"euler pole"
8379+
]
8380+
},
8381+
"operation": {
8382+
"default value": "replace",
8383+
"type": "string",
8384+
"description": "Whether the value should replace any value previously defined at this location (replace), add the value to the previously define value (add) or subtract the value to the previously define value (subtract).",
8385+
"enum": [
8386+
"replace",
8387+
"add",
8388+
"subtract"
8389+
]
8390+
},
8391+
"min depth": {
8392+
"description": "The depth in meters from which the composition of this feature is present.",
8393+
"oneOf": [
8394+
{
8395+
"default value": 0.0,
8396+
"type": "number",
8397+
"description": ""
8398+
},
8399+
{
8400+
"type": "array",
8401+
"minItems": 0,
8402+
"maxItems": 4294967295,
8403+
"uniqueItems": false,
8404+
"description": "",
8405+
"items": {
8406+
"type": "array",
8407+
"additionalProperties": false,
8408+
"minItems": 1,
8409+
"maxItems": 2,
8410+
"description": "",
8411+
"items": {
8412+
"anyOf": [
8413+
{
8414+
"type": "number",
8415+
"default value": 0.0
8416+
},
8417+
{
8418+
"type": "array",
8419+
"minItems": 1,
8420+
"maxItems": 4294967295,
8421+
"items": {
8422+
"type": "array",
8423+
"minItems": 1,
8424+
"maxItems": 2,
8425+
"items": {
8426+
"type": "number"
8427+
}
8428+
}
8429+
}
8430+
]
8431+
}
8432+
}
8433+
},
8434+
{
8435+
"default value": "",
8436+
"type": "string",
8437+
"description": ""
8438+
}
8439+
]
8440+
},
8441+
"max depth": {
8442+
"description": "The depth in meters to which the composition of this feature is present.",
8443+
"oneOf": [
8444+
{
8445+
"default value": 1.7976931348623157e308,
8446+
"type": "number",
8447+
"description": ""
8448+
},
8449+
{
8450+
"type": "array",
8451+
"minItems": 0,
8452+
"maxItems": 4294967295,
8453+
"uniqueItems": false,
8454+
"description": "",
8455+
"items": {
8456+
"type": "array",
8457+
"additionalProperties": false,
8458+
"minItems": 1,
8459+
"maxItems": 2,
8460+
"description": "",
8461+
"items": {
8462+
"anyOf": [
8463+
{
8464+
"type": "number",
8465+
"default value": 1.7976931348623157e308
8466+
},
8467+
{
8468+
"type": "array",
8469+
"minItems": 1,
8470+
"maxItems": 4294967295,
8471+
"items": {
8472+
"type": "array",
8473+
"minItems": 1,
8474+
"maxItems": 2,
8475+
"items": {
8476+
"type": "number"
8477+
}
8478+
}
8479+
}
8480+
]
8481+
}
8482+
}
8483+
},
8484+
{
8485+
"default value": "",
8486+
"type": "string",
8487+
"description": ""
8488+
}
8489+
]
8490+
},
8491+
"euler pole": {
8492+
"type": "array",
8493+
"minItems": 2,
8494+
"maxItems": 2,
8495+
"uniqueItems": false,
8496+
"description": "The euler pole for the plate (longitude, lattitude) in degree.",
8497+
"items": {
8498+
"default value": 0.0,
8499+
"type": "number",
8500+
"description": ""
8501+
}
8502+
},
8503+
"angular velocity": {
8504+
"default value": 0.0,
8505+
"type": "number",
8506+
"description": "The angular velocity of the Euler pole in degree/Myr."
8507+
}
8508+
}
8509+
},
83648510
{
83658511
"type": "object",
83668512
"description": "Uniform velocity model. Set the velocity to a constant value.",

0 commit comments

Comments
 (0)