{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.publicError", "title": "publicError", "required": [ "@odata.type" ], "type": "object", "properties": { "code": { "type": "string", "description": "Represents the error code.", "nullable": true }, "details": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.publicErrorDetail" }, "description": "Details of the error." }, "innerError": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.publicInnerError" }, { "type": "object", "nullable": true } ], "description": "Details of the inner error." }, "message": { "type": "string", "description": "A non-localized message for the developer.", "nullable": true }, "target": { "type": "string", "description": "The target of the error.", "nullable": true }, "@odata.type": { "type": "string" } } }