You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parameter of type object should be validated deep.
Should be invalid and state that /test is required property:
Should be invalid and state that /test has min of 1:
openapi: 3.0.0info:
title: someversion: 1.0.0servers:
- url: https://httpbin.orgpaths:
/post:
post:
parameters:
- name: "object"in: "query"description: "Object with required prop test, test >=1"required: trueschema:
type: "object"required:
- "test"properties:
test:
type: "integer"format: "int32"minimum: 1example: 1
- name: "ads"in: "query"description: "Just a list of ints"schema:
type: "integer"format: "int32"minimum: 1example: 1responses:
'200':
description: ok
The text was updated successfully, but these errors were encountered:
Parameter of type object should be validated deep.
Should be invalid and state that /test is required property:
Should be invalid and state that /test has min of 1:
The text was updated successfully, but these errors were encountered: