AYLIEN · Schema

Sentiment

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
polarity object
score number Polarity score of the sentiment
View JSON Schema on GitHub

JSON Schema

news-api-Sentiment.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Sentiment",
  "properties": {
    "polarity": {
      "$ref": "#/components/schemas/SentimentPolarity"
    },
    "score": {
      "description": "Polarity score of the sentiment",
      "format": "double",
      "maximum": 1,
      "minimum": 0,
      "type": "number"
    }
  },
  "type": "object"
}