Lit Protocol · Schema

AddActionToGroupRequest

Web3Key ManagementMPCProgrammable KeysLit Actions

Properties

Name Type Description
group_id integer
action_ipfs_cid string IPFS CID for the action (will be keccak256-hashed on server).
View JSON Schema on GitHub

JSON Schema

lit-protocol-addactiontogrouprequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddActionToGroupRequest",
  "title": "AddActionToGroupRequest",
  "type": "object",
  "required": [
    "action_ipfs_cid",
    "group_id"
  ],
  "properties": {
    "group_id": {
      "type": "integer",
      "format": "uint64",
      "minimum": 0.0
    },
    "action_ipfs_cid": {
      "description": "IPFS CID for the action (will be keccak256-hashed on server).",
      "type": "string"
    }
  }
}