SchemaRequest interface

Final format for Schema params passed to backend requests.

Signature:

export interface SchemaRequest extends SchemaShared<SchemaRequest> 

Extends: SchemaShared<SchemaRequest>

Properties

Property Type Description
required string[] Optional. Array of required property.
type SchemaType The type of the property. this can only be undefined when using anyOf schemas, which do not have an explicit type in the OpenAPI specification.

SchemaRequest.required

Optional. Array of required property.

Signature:

required?: string[];

SchemaRequest.type

The type of the property. this can only be undefined when using anyOf schemas, which do not have an explicit type in the OpenAPI specification.

Signature:

type?: SchemaType;