lot1-kickoff/components/curationdb/product_classifier.schema.json

46 lines
958 B
JSON

{
"type": "object",
"required": [
"language",
"topic",
"reason"
],
"properties": {
"language": {
"type": "string"
},
"topic": {
"enum": [
"Other",
"Natural and life Sciences",
"Engineering And Technology",
"Computer Science",
"Medical And Health Sciences",
"Agricultural And Veterinary Sciences",
"Social Sciences",
"Humanities And The Arts",
"Archaeology",
"Bibliographic record",
"Porn, Violence or Harmful content",
"Direct sales of goods or services",
"SPAM, advertisement, promotional"
],
"type": "string"
},
"general_subject": {
"type": "string"
},
"reason": {
"description": "reason of the classification",
"type": "string"
},
"spam_words": {
"items": {
"type": "string"
},
"type": "array",
"maxItems": 3
}
}
}