w3_space_provision
Associates a decentralized storage space with a customer or billing account by linking a space DID to a customer identifier for simplified storage management.
Instructions
Associates a space with a customer/billing account.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customerId | Yes | Customer identifier (e.g., email or account DID) to associate the space with. | |
spaceDid | Yes | The DID of the space to provision. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Associates a space with a customer/billing account.",
"properties": {
"customerId": {
"description": "Customer identifier (e.g., email or account DID) to associate the space with.",
"type": "string"
},
"spaceDid": {
"description": "The DID of the space to provision.",
"pattern": "^did\\:key\\:",
"type": "string"
}
},
"required": [
"customerId",
"spaceDid"
],
"type": "object"
}