AYLIEN · Schema

Author

News IntelligenceText AnalysisNLPSentiment AnalysisEntity RecognitionNatural Language ProcessingNews APIArticle ExtractionSummarizationConcept Detection

Properties

Name Type Description
avatar_url string A URL which points to the author avatar
id integer A unique identification for the author
name string The extracted author full name
View JSON Schema on GitHub

JSON Schema

news-api-Author.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Author",
  "properties": {
    "avatar_url": {
      "description": "A URL which points to the author avatar",
      "type": "string"
    },
    "id": {
      "description": "A unique identification for the author",
      "format": "int64",
      "type": "integer"
    },
    "name": {
      "description": "The extracted author full name",
      "type": "string"
    }
  },
  "type": "object"
}