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. SchemaType.

SchemaRequest.required

Optional. Array of required property.

Signature:

required?: string[];

SchemaRequest.type

The type of the property. SchemaType.

Signature:

type: SchemaType;