AYLIEN · Schema

Stories

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
next_page_cursor string The next page cursor
stories array An array of stories
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
warnings array Notifies about possible issues that occurred when searching for stories
View JSON Schema on GitHub

JSON Schema

news-api-Stories.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Stories",
  "properties": {
    "next_page_cursor": {
      "description": "The next page cursor",
      "type": "string"
    },
    "stories": {
      "description": "An array of stories",
      "items": {
        "$ref": "#/components/schemas/Story"
      },
      "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"
    },
    "warnings": {
      "description": "Notifies about possible issues that occurred when searching for stories",
      "items": {
        "$ref": "#/components/schemas/Warning"
      },
      "type": "array"
    }
  },
  "type": "object"
}