Properties
| Name | Type | Description |
|---|---|---|
| message | string | Message of the incident, limited to 130 characters. |
| description | string | A detailed description of the incident. |
| responders | array | Teams that the incident is routed to for response. |
| tags | array | Tags to attach to the incident. |
| details | object | Custom key-value pairs to attach to the incident. |
| priority | string | Priority level of the incident. P1 is the highest. |
| impactedServices | array | List of service IDs that are impacted by the incident. |
| statusPageEntry | object | Status page entry to create with the incident. |
| notifyStakeholders | boolean | Whether to send notifications to stakeholders. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateIncidentRequest",
"title": "CreateIncidentRequest",
"type": "object",
"required": [
"message"
],
"properties": {
"message": {
"type": "string",
"maxLength": 130,
"description": "Message of the incident, limited to 130 characters."
},
"description": {
"type": "string",
"maxLength": 10000,
"description": "A detailed description of the incident."
},
"responders": {
"type": "array",
"description": "Teams that the incident is routed to for response.",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the responder team."
},
"name": {
"type": "string",
"description": "Name of the responder team."
},
"type": {
"type": "string",
"enum": [
"team"
],
"description": "Type of responder, must be team."
}
}
}
},
"tags": {
"type": "array",
"description": "Tags to attach to the incident.",
"items": {
"type": "string"
},
"maxItems": 20
},
"details": {
"type": "object",
"description": "Custom key-value pairs to attach to the incident.",
"additionalProperties": {
"type": "string"
}
},
"priority": {
"type": "string",
"enum": [
"P1",
"P2",
"P3",
"P4",
"P5"
],
"description": "Priority level of the incident. P1 is the highest."
},
"impactedServices": {
"type": "array",
"description": "List of service IDs that are impacted by the incident.",
"items": {
"type": "string"
}
},
"statusPageEntry": {
"type": "object",
"description": "Status page entry to create with the incident.",
"properties": {
"title": {
"type": "string",
"description": "Title of the status page entry."
},
"detail": {
"type": "string",
"description": "Detail message for the status page entry."
}
}
},
"notifyStakeholders": {
"type": "boolean",
"description": "Whether to send notifications to stakeholders."
}
}
}
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/opsgenie-createincidentrequest"
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.