AYLIEN · Schema

RepresentativeStory

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
id integer ID of the story which is a unique identification
permalink string The story permalink URL
published_at string Published date of the story
title string Title of the story
View JSON Schema on GitHub

JSON Schema

news-api-RepresentativeStory.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RepresentativeStory",
  "properties": {
    "id": {
      "description": "ID of the story which is a unique identification",
      "format": "int64",
      "type": "integer"
    },
    "permalink": {
      "description": "The story permalink URL",
      "type": "string"
    },
    "published_at": {
      "description": "Published date of the story",
      "format": "date-time",
      "type": "string"
    },
    "title": {
      "description": "Title of the story",
      "type": "string"
    }
  },
  "type": "object"
}