AYLIEN · Schema

Cluster

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
earliest_story string Publication date of the earliest story in cluster
id integer ID of the cluster which is a unique identification
latest_story string Publication date of the latest story in cluster
location object
representative_story object
story_count integer Number of stories associated with the cluster
time string Time of the event
View JSON Schema on GitHub

JSON Schema

news-api-Cluster.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Cluster",
  "properties": {
    "earliest_story": {
      "description": "Publication date of the earliest story in cluster",
      "format": "date-time",
      "type": "string"
    },
    "id": {
      "description": "ID of the cluster which is a unique identification",
      "format": "int64",
      "type": "integer"
    },
    "latest_story": {
      "description": "Publication date of the latest story in cluster",
      "format": "date-time",
      "type": "string"
    },
    "location": {
      "$ref": "#/components/schemas/Location"
    },
    "representative_story": {
      "$ref": "#/components/schemas/RepresentativeStory"
    },
    "story_count": {
      "description": "Number of stories associated with the cluster",
      "format": "int32",
      "type": "integer"
    },
    "time": {
      "description": "Time of the event",
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}