Lit Protocol · Schema

LitActionResponse

Web3Key ManagementMPCProgrammable KeysLit Actions

Properties

Name Type Description
response object
logs string
has_error boolean
View JSON Schema on GitHub

JSON Schema

lit-protocol-litactionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LitActionResponse",
  "title": "LitActionResponse",
  "type": "object",
  "required": [
    "has_error",
    "logs",
    "response"
  ],
  "properties": {
    "response": {},
    "logs": {
      "type": "string"
    },
    "has_error": {
      "type": "boolean"
    }
  }
}