Skip to main content
POST
/
v1
/
manifest
/
lint
Lint Manifest
curl --request POST \
  --url https://api.mixpeek.com/v1/manifest/lint \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form manifest_file='@example-file'
{
  "valid": true,
  "results": [
    {
      "code": "<string>",
      "message": "<string>",
      "location": "<string>",
      "suggestion": "<string>",
      "fix_example": "<string>"
    }
  ],
  "summary": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

skip_rules
string[]

Rule codes to skip (e.g., MISSING_DESCRIPTION)

Body

multipart/form-data
manifest_file
file
required

YAML manifest file

Response

Successful Response

Response from the lint endpoint.

Example: { "valid": true, "results": [...], "summary": {"error": 0, "warning": 2, "info": 3} }

valid
boolean
required

Whether the manifest is valid (no errors, warnings OK)

results
LintResult · object[]

List of lint results

summary
Summary · object

Count of results by severity