Skip to content
Developer Preview

ClientInfo

Client identification inside initialize params. Diagnostics and telemetry attribution only; never an authority claim.

  • name
  • title
  • version
Source

schema/msp/experimental/msp.schema.json#/types/ClientInfo

{
"description": "Client identification inside `initialize` params. Diagnostics\nand telemetry attribution only; never an authority claim.",
"properties": {
"name": {
"description": "Machine identifier, `[a-z0-9_]+`.",
"pattern": "^[a-z0-9_]+$",
"type": "string"
},
"title": {
"description": "Human display name.",
"type": "string"
},
"version": {
"description": "Client version string.",
"type": "string"
}
},
"required": [
"name",
"version"
],
"type": "object"
}