Article

APIs.ioEngineeringPlatform

Properties

Name Type Description
wordCount integer The number of words in the text of the Article.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-article-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Article",
  "title": "Article",
  "properties": {
    "wordCount": {
      "type": "integer",
      "description": "The number of words in the text of the Article.",
      "format": "int32",
      "readOnly": true
    }
  },
  "allOf": [
    {
      "$ref": "#/components/schemas/CreativeWork"
    }
  ]
}