w3_can_access_claim
Claim delegated capabilities for an authorized account by submitting a valid proof, such as a CID string or CAR file path, to enable access to specific resources.
Instructions
Claims delegated capabilities for the authorized account using a provided proof.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
proof | Yes | Delegation proof (e.g., path to CAR file or base64 CID string) containing capabilities to claim. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Claims delegated capabilities for the authorized account using a provided proof.",
"properties": {
"proof": {
"description": "Delegation proof (e.g., path to CAR file or base64 CID string) containing capabilities to claim.",
"type": "string"
}
},
"required": [
"proof"
],
"type": "object"
}