A filesystem entry in a Substratum Drive.
Properties
assetCid
string
Optional
No description available.
driveId
string
Required
The UUID of the drive
isDirectory
boolean
Required
No description available.
metadataCid
string
Optional
No description available.
ownerDid
string
did
Required
A decentralized identifier (DID).
path
string
Required
No description available.
receiptCid
string
Optional
No description available.
View raw schema
{
"type": "object",
"required": [
"driveId",
"path",
"isDirectory",
"ownerDid"
],
"properties": {
"path": {
"type": "string"
},
"driveId": {
"type": "string",
"description": "The UUID of the drive"
},
"assetCid": {
"type": "string"
},
"ownerDid": {
"type": "string",
"format": "did"
},
"receiptCid": {
"type": "string"
},
"isDirectory": {
"type": "boolean"
},
"metadataCid": {
"type": "string"
}
},
"description": "A filesystem entry in a Substratum Drive."
}