Lit Protocol · Schema

AddActionRequest

Web3Key ManagementMPCProgrammable KeysLit Actions

Properties

Name Type Description
action_ipfs_cid string IPFS CID for the action (keccak256-hashed on server).
name string
description string
View JSON Schema on GitHub

JSON Schema

lit-protocol-addactionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddActionRequest",
  "title": "AddActionRequest",
  "type": "object",
  "required": [
    "action_ipfs_cid",
    "description",
    "name"
  ],
  "properties": {
    "action_ipfs_cid": {
      "description": "IPFS CID for the action (keccak256-hashed on server).",
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    }
  }
}