AYLIEN · Schema

Clusters

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
cluster_count integer The total number of clusters
clusters array An array of clusters
next_page_cursor string The next page cursor
View JSON Schema on GitHub

JSON Schema

news-api-Clusters.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Clusters",
  "properties": {
    "cluster_count": {
      "description": "The total number of clusters",
      "format": "int64",
      "type": "integer"
    },
    "clusters": {
      "description": "An array of clusters",
      "items": {
        "$ref": "#/components/schemas/Cluster"
      },
      "type": "array"
    },
    "next_page_cursor": {
      "description": "The next page cursor",
      "type": "string"
    }
  },
  "type": "object"
}