crm-app/.gitapp/schemas/companies.json

41 lines
655 B
JSON

{
"$id": "companies",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"name",
"industry"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"industry": {
"type": "string"
},
"size": {
"type": "string",
"enum": [
"1-10",
"11-50",
"51-200",
"201-500",
"500+"
]
},
"website": {
"type": "string",
"format": "uri"
},
"logo": {
"type": "string"
},
"revenue": {
"type": "string"
},
"description": {
"type": "string"
}
}
}