|
|
|
|
|
by hughdbrown
499 days ago
|
|
Your JSON schema says this:
```
"location": "City, State",
...
"workField": "Industry Field"
``` But:
`location` can be an array:
```
"name": "Shopify",
"location": ["Ottawa, ON", "Toronto, ON", "Montreal, QC", "Waterloo, ON"],
``` and `workField` is an array:
```
"workField": ["Banking", "Financial Services"]
``` And if it is for Canada, why identify locations as `"location": "City, State"`? |
|