AYLIEN · Schema

Trends

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
field string The field of trends
trends array An array of trends
published_at.end string The end of a period in which searched stories were published
published_at.start string The start of a period in which searched stories were published
View JSON Schema on GitHub

JSON Schema

news-api-Trends.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Trends",
  "properties": {
    "field": {
      "description": "The field of trends",
      "type": "string"
    },
    "trends": {
      "description": "An array of trends",
      "items": {
        "$ref": "#/components/schemas/Trend"
      },
      "type": "array"
    },
    "published_at.end": {
      "description": "The end of a period in which searched stories were published",
      "format": "date-time",
      "type": "string"
    },
    "published_at.start": {
      "description": "The start of a period in which searched stories were published",
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}