ErrorResponse schema from Instagram Graph API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/instagram/refs/heads/main/json-schema/instagram-graph-api-error-response-schema.json", "title": "ErrorResponse", "description": "ErrorResponse schema from Instagram Graph API", "type": "object", "properties": { "error": { "type": "object", "properties": { "message": { "type": "string", "example": "Invalid OAuth access token." }, "type": { "type": "string", "example": "OAuthException" }, "code": { "type": "integer", "example": 190 }, "fbtrace_id": { "type": "string", "example": "ABC123def456" } } } } }