action vercel_get_check { label: "Get a single check" description: "Return a detailed response for a single check." provider: vercel method: GET path: "/v1/deployments/{deploymentId}/checks/{checkId}" encoding: json input: { type: "object" properties: { checkId: { type: "string" description: "The check to fetch" } deploymentId: { type: "string" description: "The deployment to get the check for." } teamId: { type: "string" } } required: ["checkId", "deploymentId"] additionalProperties: false } output: { type: "object" description: "From T, pick a set of properties whose keys are in the union K" required: ["creator", "domain", "id", "name", "recordType", "type", "value"] properties: { createdAt: { type: ["number", "null"] } creator: { type: "string" } domain: { type: "string" } id: { type: "string" } name: { type: "string" } recordType: { type: "string" enum: ["A", "AAAA", "ALIAS", "CAA", "CNAME", "MX", "SRV", "TXT", "NS"] } ttl: { type: "number" } type: { type: "string" enum: ["record", "record-sys"] } value: { type: "string" } } } }