AYLIEN · Schema

TimeSeries

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
count integer The count of time series bin
published_at string The published date of the time series bin
sentiment object
View JSON Schema on GitHub

JSON Schema

news-api-TimeSeries.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TimeSeries",
  "properties": {
    "count": {
      "description": "The count of time series bin",
      "format": "int32",
      "type": "integer"
    },
    "published_at": {
      "description": "The published date of the time series bin",
      "format": "date-time",
      "type": "string"
    },
    "sentiment": {
      "$ref": "#/components/schemas/AggregatedSentiment"
    }
  },
  "type": "object"
}