AYLIEN · Schema

AggregatedSentiment

The aggregation of sentiments

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
positive integer Positive sentiments count
neutral integer Neutral sentiments count
negative integer Negative sentiments count
View JSON Schema on GitHub

JSON Schema

news-api-AggregatedSentiment.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AggregatedSentiment",
  "description": "The aggregation of sentiments",
  "type": "object",
  "properties": {
    "positive": {
      "description": "Positive sentiments count",
      "format": "int32",
      "type": "integer"
    },
    "neutral": {
      "description": "Neutral sentiments count",
      "format": "int32",
      "type": "integer"
    },
    "negative": {
      "description": "Negative sentiments count",
      "format": "int32",
      "type": "integer"
    }
  }
}