PolyAPI · Schema
PolyAPI Job
A job executes a function at a set time, interval, or CRON schedule for automated recurring tasks.
IntegrationMicroservicesMiddlewareOrchestrationsPro-Code-API-Composition
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the job. |
| name | string | The name of the job. |
| description | string | A description of the job. |
| functionId | string | The ID of the function to execute. |
| functionType | string | The type of function to execute. |
| schedule | string | The CRON expression or interval defining when the job runs. |
| state | string | The state of the job. |
| lastRunAt | string | Timestamp of the last execution. |
| nextRunAt | string | Timestamp of the next scheduled execution. |
| createdAt | string | Timestamp when the job was created. |
| updatedAt | string | Timestamp when the job was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/api-evangelist/polyapi/blob/main/json-schema/job.json",
"title": "PolyAPI Job",
"description": "A job executes a function at a set time, interval, or CRON schedule for automated recurring tasks.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the job."
},
"name": {
"type": "string",
"description": "The name of the job."
},
"description": {
"type": "string",
"description": "A description of the job."
},
"functionId": {
"type": "string",
"description": "The ID of the function to execute."
},
"functionType": {
"type": "string",
"enum": ["server", "api"],
"description": "The type of function to execute."
},
"schedule": {
"type": "string",
"description": "The CRON expression or interval defining when the job runs."
},
"state": {
"type": "string",
"enum": ["active", "inactive"],
"description": "The state of the job."
},
"lastRunAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp of the last execution."
},
"nextRunAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp of the next scheduled execution."
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the job was created."
},
"updatedAt": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the job was last updated."
}
},
"required": ["name", "functionId", "functionType", "schedule"]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/job"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.