{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/apicentral.documentresource.create", "title": "apicentral.documentresource.create", "type": "object", "description": "Published when a document defined in the document library is created.", "x-context": "api_central", "allOf": [ { "$ref": "#/components/schemas/EventDataCentral" } ], "properties": { "description": { "type": "string", "maxLength": 350, "example": "An example description" }, "fileType": { "type": "string", "description": "For markdown documents the fileType will be \"markdown\". For document that respresent external URLs, we don't know the type and the fileType will be missing.", "example": "example_value" }, "group": { "type": "string", "enum": [ "catalog" ], "example": "catalog" }, "provider_guid": { "$ref": "#/components/schemas/Provider/properties/guid" }, "type": { "type": "string", "enum": [ "text", "binary", "url" ], "example": "text" }, "version": { "type": "string", "description": "Document version", "maxLength": 30, "example": "example_value" } } }