AYLIEN · Schema

EntitySentiment

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

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

JSON Schema

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