mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-24 13:48:10 +00:00
32 lines
467 B
JSON
32 lines
467 B
JSON
|
{
|
||
|
"title": "Location",
|
||
|
"type": "object",
|
||
|
"anyOf": [
|
||
|
{
|
||
|
"title": "City",
|
||
|
"properties": {
|
||
|
"city": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"city"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"title": "Coordinates",
|
||
|
"properties": {
|
||
|
"lat": {
|
||
|
"type": "number"
|
||
|
},
|
||
|
"lon": {
|
||
|
"type": "number"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"lat",
|
||
|
"lon"
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|