AYLIEN · Schema

Category

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
confident boolean It defines whether the extracted category is confident or not
id string The ID of the category
label string The label of the category
level integer The level of the category
links object
score number The score of the category
taxonomy object
View JSON Schema on GitHub

JSON Schema

news-api-Category.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Category",
  "properties": {
    "confident": {
      "description": "It defines whether the extracted category is confident or not",
      "type": "boolean"
    },
    "id": {
      "description": "The ID of the category",
      "type": "string"
    },
    "label": {
      "description": "The label of the category",
      "type": "string"
    },
    "level": {
      "description": "The level of the category",
      "format": "int32",
      "type": "integer"
    },
    "links": {
      "$ref": "#/components/schemas/CategoryLinks"
    },
    "score": {
      "description": "The score of the category",
      "format": "double",
      "type": "number"
    },
    "taxonomy": {
      "$ref": "#/components/schemas/CategoryTaxonomy"
    }
  },
  "type": "object"
}