No description available.
Properties
collectionRuleUris
array
of stringat-uri
Optional
No description available.
coverPhotoUri
string
at-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
creator
string
did
Optional
A decentralized identifier (DID).
description
string
Optional
No description available.
maxLength: 5000 bytesmodifiedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
name
string
Required
No description available.
maxLength: 200 bytesspaceUri
string
Optional
No description available.
maxLength: 512 bytesvisibility
ref
#visibility
Required
No description available.
View raw schema
{
"type": "object",
"required": [
"name",
"createdAt",
"visibility"
],
"properties": {
"name": {
"type": "string",
"maxLength": 200
},
"creator": {
"type": "string",
"format": "did"
},
"spaceUri": {
"type": "string",
"maxLength": 512
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"modifiedAt": {
"type": "string",
"format": "datetime"
},
"visibility": {
"ref": "#visibility",
"type": "ref"
},
"description": {
"type": "string",
"maxLength": 5000
},
"coverPhotoUri": {
"type": "string",
"format": "at-uri"
},
"collectionRuleUris": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
}
}
}
}