AYLIEN · Schema

Classification

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
text object
language object
taxonomy string Input taxonomy
categories array
View JSON Schema on GitHub

JSON Schema

text-api-Classification.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Classification",
  "type": "object",
  "properties": {
    "text": {
      "$ref": "#/definitions/GenericInputText"
    },
    "language": {
      "$ref": "#/definitions/GenericInputLanguage"
    },
    "taxonomy": {
      "type": "string",
      "description": "Input taxonomy"
    },
    "categories": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/ClassificationCategory"
      }
    }
  }
}