validation_enum_not_allowed
HTTP Status: 422 Category: Validation
When you see this
String value is not in the schema's allowed enum values.
How to fix it
Use one of the values in error.details.errors[].ctx.expected. Enum values are case-sensitive.
Example response
{
"error": {
"code": "validation_enum_not_allowed",
"message": "String value is not in the schema's allowed enum values.",
"hint": null,
"doc_url": "https://docs.valara.cloud/api-reference/errors/validation_enum_not_allowed",
"request_id": "req_01H...",
"details": {
"errors": [],
"field_count": 0
}
}
}