AYLIEN · Schema

AspectSentimentAspect

Aspect data

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
aspect object
aspect_confidence object
polarity object
polarity_confidence object
mentions number Number of mentions
sample array Mentions sample
View JSON Schema on GitHub

JSON Schema

text-api-AspectSentimentAspect.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AspectSentimentAspect",
  "type": "object",
  "description": "Aspect data",
  "properties": {
    "aspect": {
      "$ref": "#/definitions/GenericAspect"
    },
    "aspect_confidence": {
      "$ref": "#/definitions/GenericAspectConfidence"
    },
    "polarity": {
      "$ref": "#/definitions/GenericPolarity"
    },
    "polarity_confidence": {
      "$ref": "#/definitions/GenericPolarityConfidence"
    },
    "mentions": {
      "description": "Number of mentions",
      "type": "number"
    },
    "sample": {
      "description": "Mentions sample",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}