Lit Protocol · Schema

VersionResponse

Web3Key ManagementMPCProgrammable KeysLit Actions

Properties

Name Type Description
name string
version string
commit_version string
submodule_versions array
View JSON Schema on GitHub

JSON Schema

lit-protocol-versionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VersionResponse",
  "title": "VersionResponse",
  "type": "object",
  "required": [
    "commit_version",
    "name",
    "submodule_versions",
    "version"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "commit_version": {
      "type": "string"
    },
    "submodule_versions": {
      "type": "array",
      "items": {
        "type": "array",
        "items": [
          {
            "type": "string"
          },
          {
            "type": "string"
          }
        ],
        "maxItems": 2,
        "minItems": 2
      }
    }
  }
}