export_contexts
Export contexts from Convolut Context Bank in JSON, XML, TXT, or Markdown formats for integration with external systems and data analysis workflows.
Instructions
Export contexts in various formats (JSON, XML, TXT, Markdown) for integration with other systems
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context_ids | Yes | Array of context IDs to export (1-100 contexts) | |
format | Yes | Export format | json |
include_metadata | No | Whether to include metadata |
Input Schema (JSON Schema)
{
"properties": {
"context_ids": {
"description": "Array of context IDs to export (1-100 contexts)",
"items": {
"format": "uuid",
"type": "string"
},
"maxItems": 100,
"minItems": 1,
"type": "array"
},
"format": {
"default": "json",
"description": "Export format",
"enum": [
"json",
"xml",
"txt",
"markdown"
],
"type": "string"
},
"include_metadata": {
"default": true,
"description": "Whether to include metadata",
"type": "boolean"
}
},
"required": [
"context_ids",
"format"
],
"type": "object"
}