Jentic Workflow
A multi-step Arazzo workflow as exposed through the Jentic catalog. Workflows are deterministic recipes that chain one or more OpenAPI operations with parameter passing, conditional steps, and managed authentication. Built on the OpenAPI Arazzo specification.
Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | Globally unique Jentic workflow identifier. Workflows are always prefixed `wf_`. |
| name | string | |
| description | string | |
| api_name | string | Primary API the workflow is associated with. |
| type | string | |
| spec | string | All Jentic workflows are described in the OpenAPI Arazzo specification. |
| steps | array | Ordered list of Arazzo steps that make up the workflow. |
| inputs | object | JSON Schema for the workflow's top-level inputs. |
| auth_required | boolean | |
| score | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/jentic/main/json-schema/jentic-workflow-schema.json",
"title": "Jentic Workflow",
"description": "A multi-step Arazzo workflow as exposed through the Jentic catalog. Workflows are deterministic recipes that chain one or more OpenAPI operations with parameter passing, conditional steps, and managed authentication. Built on the OpenAPI Arazzo specification.",
"type": "object",
"required": ["uuid", "name", "type"],
"properties": {
"uuid": {
"type": "string",
"pattern": "^wf_.+",
"description": "Globally unique Jentic workflow identifier. Workflows are always prefixed `wf_`."
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"api_name": {
"type": "string",
"description": "Primary API the workflow is associated with."
},
"type": {
"type": "string",
"const": "workflow"
},
"spec": {
"type": "string",
"const": "arazzo",
"description": "All Jentic workflows are described in the OpenAPI Arazzo specification."
},
"steps": {
"type": "array",
"description": "Ordered list of Arazzo steps that make up the workflow.",
"items": {
"type": "object",
"properties": {
"stepId": { "type": "string" },
"operationId": { "type": "string" },
"parameters": { "type": "object", "additionalProperties": true },
"successCriteria": { "type": "array", "items": { "type": "object" } }
}
}
},
"inputs": {
"type": "object",
"description": "JSON Schema for the workflow's top-level inputs.",
"additionalProperties": true
},
"auth_required": {
"type": "boolean"
},
"score": {
"type": "number",
"minimum": 0,
"maximum": 1
}
},
"additionalProperties": false
}
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
curl "https://apis.io/api/v1/json-schemas/jentic-workflow"
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.