Request
A request frame, either direction.
Fields and variants
Section titled “Fields and variants”idjsonrpcmethodparamstrace
Source
schema/msp/experimental/msp.schema.json#/types/Request
{ "description": "A request frame, either direction.", "properties": { "id": { "$ref": "#/$defs/RequestId", "description": "Client-chosen id, unique among that client's in-flight requests." }, "jsonrpc": { "$ref": "#/$defs/JsonRpcVersion", "description": "The literal `\"2.0\"`." }, "method": { "description": "Slash-namespaced camelCase method name.", "type": "string" }, "params": { "description": "Method-specific parameters; omitted entirely when empty, never `null`.", "properties": {}, "type": "object" }, "trace": { "$ref": "#/$defs/TraceContext", "description": "W3C trace passthrough; requests only." } }, "required": [ "id", "jsonrpc", "method" ], "type": "object"}