{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LabeledContent", "title": "LabeledContent", "required": [ "contentId", "contentType", "title" ], "type": "object", "properties": { "contentType": { "$ref": "#/components/schemas/LabeledContentType" }, "contentId": { "type": "integer", "format": "int64" }, "title": { "type": "string", "description": "Title of the content." } } }