Manifest
Validate Manifest
Validate a YAML manifest without applying.
Checks:
- YAML syntax validity
- Schema validation against manifest models
- Cross-resource reference validation
- Dependency resolution (no circular dependencies)
- Secret reference existence
Returns detailed validation results including:
- Resource counts by type
- Missing secrets that need to be configured
- Validation errors and warnings
Example:
curl -X POST /v1/manifest/validate \
-H "Authorization: Bearer $API_KEY" \
-F "manifest_file=@mixpeek.yaml"
post/v1/manifest/validate
Response
Successful Response
Example response
{
"errors": [],
"missing_secrets": [],
"resources": {
"buckets": 2,
"collections": 1,
"namespaces": 1,
"retrievers": 1
},
"valid": true,
"warnings": []
}Changes
Changed in 1 of the 32 revisions of this API.1
- ○
the endpoint scheme security
BearerAuthwas added to the APIapi-security-added
This revision also has 3 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○