sample-process-models/category_number_two/currency-fields/Any-Of-with-Custom-Field_JSONSchema.json
2022-09-29 15:10:27 -04:00

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"
]
}
]
}