You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The company size attribute (size) is currently specified to have a string "10-50". In order to get minimum and maximum company size, that string must be split and parsed which seems unreasonable for a machine-readable spec.
Suggest something like:
"companySize": {
"min": 10,
"max": 50,
}
Or possible "from" and "to", if it should be consistent with other attributes.
The text was updated successfully, but these errors were encountered:
I was thinking about it. You don't really need to know exact number and it changes a lot. Ideally, you want is an enum. I'll look into json schema enums.
The company size attribute (
size
) is currently specified to have a string "10-50". In order to get minimum and maximum company size, that string must be split and parsed which seems unreasonable for a machine-readable spec.Suggest something like:
Or possible "from" and "to", if it should be consistent with other attributes.
The text was updated successfully, but these errors were encountered: