Jentic · Schema
Jentic Agent
Represents an AI agent configured on the Jentic platform, including its scoped API access, credentials, and API key configuration.
AI AgentsArazzoOpenAPIMCPWorkflowsIntegrationAgent RuntimeStandard AgentJust In Time ToolingCredential VaultAgent GovernanceObservabilityAPI AI Readiness
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Human-readable name for the agent. |
| description | string | Description of the agent's purpose and capabilities. |
| api_key | string | The scoped API key for this agent, used in the X-JENTIC-API-KEY header. |
| allowed_apis | array | List of API identifiers this agent is permitted to access. |
| allowed_workflows | array | List of workflow identifiers this agent is permitted to execute. |
| credentials | array | Upstream API credentials assigned to this agent, stored encrypted in the Jentic credential vault. |
| rate_limit | object | Rate limiting configuration for this agent. |
| created_at | string | Timestamp when the agent was created. |
| updated_at | string | Timestamp when the agent was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://jentic.com/schemas/jentic/agent.json",
"title": "Jentic Agent",
"description": "Represents an AI agent configured on the Jentic platform, including its scoped API access, credentials, and API key configuration.",
"type": "object",
"required": ["name"],
"properties": {
"name": {
"type": "string",
"description": "Human-readable name for the agent.",
"minLength": 1
},
"description": {
"type": "string",
"description": "Description of the agent's purpose and capabilities."
},
"api_key": {
"type": "string",
"description": "The scoped API key for this agent, used in the X-JENTIC-API-KEY header."
},
"allowed_apis": {
"type": "array",
"description": "List of API identifiers this agent is permitted to access.",
"items": {
"type": "string"
}
},
"allowed_workflows": {
"type": "array",
"description": "List of workflow identifiers this agent is permitted to execute.",
"items": {
"type": "string"
}
},
"credentials": {
"type": "array",
"description": "Upstream API credentials assigned to this agent, stored encrypted in the Jentic credential vault.",
"items": {
"$ref": "#/$defs/CredentialReference"
}
},
"rate_limit": {
"$ref": "#/$defs/RateLimit",
"description": "Rate limiting configuration for this agent."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the agent was created."
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the agent was last updated."
}
},
"$defs": {
"CredentialReference": {
"type": "object",
"description": "Reference to an encrypted credential stored in the Jentic vault for a specific upstream API.",
"required": ["api_name", "credential_type"],
"properties": {
"api_name": {
"type": "string",
"description": "Name of the upstream API this credential authenticates with."
},
"credential_type": {
"type": "string",
"description": "The type of credential stored.",
"enum": ["api_key", "oauth2", "basic", "bearer_token"]
},
"credential_id": {
"type": "string",
"description": "Internal identifier for the stored credential in the vault."
},
"status": {
"type": "string",
"description": "Current status of the credential.",
"enum": ["active", "expired", "revoked"]
}
}
},
"RateLimit": {
"type": "object",
"description": "Rate limiting configuration for agent API requests.",
"properties": {
"requests_per_minute": {
"type": "integer",
"description": "Maximum number of requests allowed per minute.",
"minimum": 1
},
"requests_per_day": {
"type": "integer",
"description": "Maximum number of requests allowed per day.",
"minimum": 1
}
}
}
}
}
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/jentic-agent"
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.