AYLIEN · Schema

ShareCounts

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
facebook array Facebook shares count
google_plus array Google Plus shares count
linkedin array LinkedIn shares count
reddit array Reddit shares count
View JSON Schema on GitHub

JSON Schema

news-api-ShareCounts.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ShareCounts",
  "properties": {
    "facebook": {
      "description": "Facebook shares count",
      "items": {
        "$ref": "#/components/schemas/ShareCount"
      },
      "type": "array"
    },
    "google_plus": {
      "description": "Google Plus shares count",
      "items": {
        "$ref": "#/components/schemas/ShareCount"
      },
      "type": "array"
    },
    "linkedin": {
      "description": "LinkedIn shares count",
      "items": {
        "$ref": "#/components/schemas/ShareCount"
      },
      "type": "array"
    },
    "reddit": {
      "description": "Reddit shares count",
      "items": {
        "$ref": "#/components/schemas/ShareCount"
      },
      "type": "array"
    }
  },
  "type": "object"
}