{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "AtlassianDocumentFormat", "type": "object", "description": "Atlassian Document Format (ADF) representation of rich text content. ADF is a JSON-based format used in Jira Cloud REST API v3 for description, comment, and other rich text fields.", "properties": { "type": { "type": "string", "description": "The root node type. Always doc." }, "version": { "type": "integer", "description": "The ADF version. Currently 1." }, "content": { "type": "array", "description": "The content nodes of the document." } } }