action vercel_get_all_checks { label: "Retrieve a list of all checks" description: "List all of the checks created for a deployment." provider: vercel method: GET path: "/v1/deployments/{deploymentId}/checks" encoding: json input: { type: "object" properties: { deploymentId: { type: "string" description: "The deployment to get all checks for" } teamId: { type: "string" } } required: ["deploymentId"] additionalProperties: false } output: { type: "object" required: ["checks"] properties: { checks: { type: "array" items: { type: "object" required: ["createdAt", "id", "integrationId", "name", "rerequestable", "status", "updatedAt"] properties: { completedAt: { type: "number" } conclusion: { type: "string" enum: ["canceled", "failed", "neutral", "succeeded", "skipped", "stale"] } createdAt: { type: "number" } detailsUrl: { type: "string" } id: { type: "string" } integrationId: { type: "string" } name: { type: "string" } output: { type: "object" properties: { metrics: { type: "object" required: ["FCP", "LCP", "CLS", "TBT"] properties: { CLS: { type: "object" required: ["value", "source"] properties: { previousValue: { type: "number" } source: { type: "string" enum: ["web-vitals"] } value: { type: ["number", "null"] } } } FCP: { type: "object" required: ["value", "source"] properties: { previousValue: { type: "number" } source: { type: "string" enum: ["web-vitals"] } value: { type: ["number", "null"] } } } LCP: { type: "object" required: ["value", "source"] properties: { previousValue: { type: "number" } source: { type: "string" enum: ["web-vitals"] } value: { type: ["number", "null"] } } } TBT: { type: "object" required: ["value", "source"] properties: { previousValue: { type: "number" } source: { type: "string" enum: ["web-vitals"] } value: { type: ["number", "null"] } } } virtualExperienceScore: { type: "object" required: ["value", "source"] properties: { previousValue: { type: "number" } source: { type: "string" enum: ["web-vitals"] } value: { type: ["number", "null"] } } } } } } } path: { type: "string" } rerequestable: { type: "boolean" } startedAt: { type: "number" } status: { type: "string" enum: ["registered", "running", "completed"] } updatedAt: { type: "number" } } } } } } }