{ "$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" } ] }