{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/import400ErrorInvalidParameters",
"title": "Invalid Parameters",
"type": "object",
"properties": {
"error": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The error name.",
"example": "invalidParamsError"
},
"message": {
"type": "string",
"description": "The error message.",
"example": "The request body has invalid values for the type parameter. Value must be one of file, string, json"
},
"details": {
"type": "object",
"description": "Information about the error.",
"properties": {}
}
}
}
}
}