{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/export_options", "title": "Export Options", "type": "object", "description": "Options for issue export.", "properties": { "type": { "type": "string", "example": "example_value" }, "project_key": { "type": "string", "example": "example_value" }, "project_name": { "type": "string", "example": "example_value" }, "send_email": { "type": "boolean", "example": "user@example.com" }, "include_attachments": { "type": "boolean", "example": true } }, "required": [ "type" ], "additionalProperties": true }