Type alias JRPC_SCHEMA_METHOD

JRPC_SCHEMA_METHOD: {
    description: string;
    name: string;
    notification?: boolean;
    params: JRPC_SCHEMA_METHOD_PARAM[];
    result: JSONSchema4;
}

Represents a JSON-RPC method schema.

Property

The name of the method.

Property

A description of the method.

Property

Whether the method is a notification (i.e. doesn't return a result).

Property

The method parameters.

Property

The expected result of the method.

Type declaration

  • description: string
  • name: string
  • Optional notification?: boolean
  • params: JRPC_SCHEMA_METHOD_PARAM[]
  • result: JSONSchema4

Generated using TypeDoc