Validation Failures

namedocs
InvalidHTTPMethodThe HTTP method used in the request is not one of the expected values: DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT, or TRACE.
InvalidStatusCodeThe status code returned by the upstream server does not have a matching response in the OpenAPI spec.
MissingResponseDefinitionThe OpenAPI spec contained a missing inline response definition or referenced a response that did not exist.
MissingSchemaDefinitionThe requested path was not found in the OpenAPI spec. This response was not validated and may be missing relevant testcase properties.The OpenAPI spec contained a missing inline schema definition or referenced a schema that did not exist.
PathNotFoundThe requested path was not found in the OpenAPI spec.
RequestFailedJSONDeserializationThe request body could not be deserialized as JSON.
RequestFailedValidationUnexpectedBooleanThe request body contained a boolean value when the OpenAPI spec expected a different type.
RequestFailedValidationUnexpectedNullThe request body contains a null value when the OpenAPI spec did not allow null values.
RequestFailedValidationUnexpectedNumberThe request body contained a number value when the OpenAPI spec expected a different type.
RequestFailedValidationUnexpectedPropertyThe request body contained a property that was not defined in the OpenAPI spec.
RequestFailedValidationUnexpectedStringThe request body contained a string value when the OpenAPI spec expected a different type.
RequestFailedValidationUnsupportedSchemaKindThe OpenAPI spec contained a schema with an unsupported kind, such as anyOf, oneOf, or not.
RequestMismatchNonEmptyBodyThe client included a non-empty body when the OpenAPI spec expected an empty body.
RequestMismatchedContentTypeHeaderThe client included a Content-Type header in the request that does not match any content types defined in the OpenAPI spec.
RequestMissingContentTypeHeaderThe client did not include a Content-Type header in the request. This is only an issue when the response body is not empty.
ResponseFailedJSONDeserializationThe response body could not be deserialized as JSON.
ResponseFailedValidationUnexpectedBooleanThe response body contained a boolean value when the OpenAPI spec expected a different type.
ResponseFailedValidationUnexpectedNullThe response body contains a null value when the OpenAPI spec did not allow null values.
ResponseFailedValidationUnexpectedNumberThe response body contained a number value when the OpenAPI spec expected a different type.
ResponseFailedValidationUnexpectedPropertyThe response body contained a property that was not defined in the OpenAPI spec.
ResponseFailedValidationUnexpectedStringThe response body contained a string value when the OpenAPI spec expected a different type.
ResponseFailedValidationUnsupportedSchemaKindThe OpenAPI spec contained a schema with an unsupported kind, such as anyOf, oneOf, or not.
ResponseMismatchNonEmptyBodyThe upstream server included a non-empty response body when the OpenAPI spec expected an empty body.
ResponseMismatchedContentTypeHeaderThe upstream server included a Content-Type header in the response that does not match any content types defined in the OpenAPI spec.
ResponseMissingContentTypeHeaderThe upstream server did not include a Content-Type header in the response. This is only an issue when the response body is not empty.