v5
OpenAPI 3.1.02026-08-025631,1012.8 MBDiscovery
Get Manifest Schema for Agent Configuration
Returns the complete manifest schema including all resource types, their JSON schemas, dependency graph, and YAML examples. Use this for programmatic manifest generation and validation.
get/v1/discovery/schema
Response
Successful Response
Example response
{
"dependency_graph": {
"bucket": [
"namespace"
],
"collection": [
"namespace",
"bucket"
],
"retriever": [
"namespace",
"collection"
]
},
"examples": {
"namespace": "namespaces:\n - name: my_ns\n feature_extractors:\n - name: multimodal_extractor"
},
"manifest_version": "1.0",
"resource_types": [
"namespace",
"bucket",
"collection",
"retriever"
],
"schemas": {
"namespace": {
"properties": {},
"type": "object"
}
}
}