{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Error", "type": "object", "description": "Standard error response from the Admin API.", "properties": { "message": { "type": "string", "description": "A human-readable error message." }, "name": { "type": "string", "description": "The error type name." }, "code": { "type": "integer", "description": "An optional error code." }, "fields": { "type": "object", "description": "Field-level validation errors." } } }