Request body for creation/negation of a label
Properties
cid
string
cid
Optional
A content identifier (CID) referencing immutable data.
exp
string
datetime
Optional
expiration timestamp
src
string
did
Optional
Label authority DID. Some servers might support only a single label authority, in which case this can be omitted, or must match exactly. Other servers might support multiple authorities.
uri
string
uri
Required
Subject URI. May be an AT-URI or DID. Support for other URI schemes is indeterminate.
val
string
Required
No description available.
View raw schema
{
"type": "object",
"required": [
"uri",
"val"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"exp": {
"type": "string",
"format": "datetime",
"description": "expiration timestamp"
},
"src": {
"type": "string",
"format": "did",
"description": "Label authority DID. Some servers might support only a single label authority, in which case this can be omitted, or must match exactly. Other servers might support multiple authorities."
},
"uri": {
"type": "string",
"format": "uri",
"description": "Subject URI. May be an AT-URI or DID. Support for other URI schemes is indeterminate."
},
"val": {
"type": "string"
}
},
"description": "Request body for creation/negation of a label"
}