Experimental
Schema
FileError
Type:
object
FileError reports a path-level file error.
failure
· required
Schema:
Error
failure retains the shared typed code and details for this path.
All schema constraints and annotations
{
"$ref": "#/components/schemas/Error",
"description": "failure retains the shared typed code and details for this path."
}path
Type:
string
path is the path that failed.
All schema constraints and annotations
{
"description": "path is the path that failed.",
"type": "string"
}All schema constraints and annotations
{
"description": "FileError reports a path-level file error.",
"properties": {
"failure": {
"$ref": "#/components/schemas/Error",
"description": "failure retains the shared typed code and details for this path."
},
"path": {
"description": "path is the path that failed.",
"type": "string"
}
},
"required": [
"failure"
],
"title": "FileError",
"type": "object"
}