StdErrorsFileLocations
The FileLocations structure identifies the file(s) that caused the operation to report the error. Some types of errors are caused by a problem with one or more files. This structure is intended to be used as the payload to identify those files when the operation reports errors like NotFound. See Error.data.
Properties
string
primary
Required
String identifying the file that triggered the error.
array of
string
secondary
Required
List (possibly empty) of strings identifying other files that caused the primary file to trigger the error.
JSON Example
{
"primary": "string",
"secondary": [
"string"
]
}