Type alias JRPC_SCHEMA_METHOD_PARAM

JRPC_SCHEMA_METHOD_PARAM: {
    description: string;
    name: string;
    required?: boolean;
    schema: JSONSchema4;
}

Represents a parameter for a JSON-RPC method schema.

Property

The name of the parameter.

Property

A description of the parameter.

Property

The schema for the parameter.

Property

Whether the parameter is required.

Type declaration

  • description: string
  • name: string
  • Optional required?: boolean
  • schema: JSONSchema4

Generated using TypeDoc