Discovery
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"
}
}
}Changes
No recorded changes to this endpoint across all 29 revisions of this API.