Declares URI templates that are equivalent to at:// URIs whose collection matches this record's key (an NSID). If this record is hosted in the same repo as the NSID's com.atproto.lexicon.schema, the first suitable URI is considered the canonical alternate URI for that NSID.
nsid
Properties
uris
array
of
string
uri
Required
Template URIs equivalent to at:// URIs with this NSID. Most preferred first; consumers will use the first suitable entry. The tokens {{did}}, {{rkey}} and {{collection}} will be substituted with their values, e.g. https://example.com/profiles/{{did}}/things/{{rkey}}
minLength: 1 itemsView raw schema
{
"key": "nsid",
"type": "record",
"record": {
"type": "object",
"required": [
"uris"
],
"properties": {
"uris": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"minLength": 1,
"description": "Template URIs equivalent to at:// URIs with this NSID. Most preferred first; consumers will use the first suitable entry. The tokens {{did}}, {{rkey}} and {{collection}} will be substituted with their values, e.g. https://example.com/profiles/{{did}}/things/{{rkey}}"
}
}
},
"description": "Declares URI templates that are equivalent to at:// URIs whose collection matches this record's key (an NSID). If this record is hosted in the same repo as the NSID's com.atproto.lexicon.schema, the first suitable URI is considered the canonical alternate URI for that NSID."
}