mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-23 05:08:11 +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"
|
|
]
|
|
}
|
|
]
|
|
} |