AYLIEN · Schema

AspectSentimentSentence

Aspect sentence

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
text string Sentence text
polarity object
polarity_confidence object
aspects array
View JSON Schema on GitHub

JSON Schema

text-api-AspectSentimentSentence.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AspectSentimentSentence",
  "type": "object",
  "description": "Aspect sentence",
  "properties": {
    "text": {
      "type": "string",
      "description": "Sentence text"
    },
    "polarity": {
      "$ref": "#/definitions/GenericPolarity"
    },
    "polarity_confidence": {
      "$ref": "#/definitions/GenericPolarityConfidence"
    },
    "aspects": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/AspectSentimentSentenceAspect"
      }
    }
  }
}