AYLIEN · Schema

AspectSentiment

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
text object
domain string Provided domain
aspects array
sentences array
View JSON Schema on GitHub

JSON Schema

text-api-AspectSentiment.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AspectSentiment",
  "type": "object",
  "properties": {
    "text": {
      "$ref": "#/definitions/GenericInputText"
    },
    "domain": {
      "type": "string",
      "description": "Provided domain"
    },
    "aspects": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/AspectSentimentAspect"
      }
    },
    "sentences": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/AspectSentimentSentence"
      }
    }
  }
}