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
We would like to perform validation on types before an API call is made.
For example: Check the Name type is valid against the restrictions stated in the OpenAPI spec
"Name": {
"title": "A name unique within the parent collection",
"description": "Names must begin with a lower case ASCII letter, be composed exclusively of lowercase ASCII, uppercase ASCII, numbers, and '-', and may not end with a '-'. Names cannot be a UUID though they may contain a UUID.",
"type": "string",
"pattern": "^(?![0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$)^[a-z][a-z0-9-]*[a-zA-Z0-9]*$",
"minLength": 1,
"maxLength": 63
},
The text was updated successfully, but these errors were encountered:
We would like to perform validation on types before an API call is made.
For example: Check the
Name
type is valid against the restrictions stated in the OpenAPI specThe text was updated successfully, but these errors were encountered: