AYLIEN · Schema

Trend

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
count integer The count of the trend
value string The value of the trend
sentiment object
View JSON Schema on GitHub

JSON Schema

news-api-Trend.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Trend",
  "properties": {
    "count": {
      "description": "The count of the trend",
      "format": "int32",
      "type": "integer"
    },
    "value": {
      "description": "The value of the trend",
      "type": "string"
    },
    "sentiment": {
      "$ref": "#/components/schemas/AggregatedSentiment"
    }
  },
  "type": "object"
}