Representation of a blogpost (content)
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContentBlogpost", "title": "ContentBlogpost", "description": "Representation of a blogpost (content)", "allOf": [ { "$ref": "#/components/schemas/Content" }, { "required": [ "_links", "metadata" ], "type": "object", "properties": { "metadata": { "$ref": "#/components/schemas/ContentMetadata" }, "_links": { "$ref": "#/components/schemas/GenericLinks" } } } ] }