21 lines
776 B
Go
21 lines
776 B
Go
|
|
// Package mastodon contains terms for the toot namespace.
|
||
|
|
package mastodon
|
||
|
|
|
||
|
|
// Namespace is the IRI prefix used for terms defined in this namespace.
|
||
|
|
const Namespace = "http://joinmastodon.org/ns#"
|
||
|
|
|
||
|
|
const (
|
||
|
|
AttributionDomains = Namespace + "attributionDomains"
|
||
|
|
Blurhash = Namespace + "blurhash"
|
||
|
|
Discoverable = Namespace + "discoverable"
|
||
|
|
Featured = Namespace + "featured"
|
||
|
|
FeaturedTags = Namespace + "featuredTags"
|
||
|
|
FocalPoint = Namespace + "focalPoint"
|
||
|
|
Indexable = Namespace + "indexable"
|
||
|
|
Memorial = Namespace + "memorial"
|
||
|
|
Suspended = Namespace + "suspended"
|
||
|
|
VotersCount = Namespace + "votersCount"
|
||
|
|
TypeEmoji = Namespace + "Emoji"
|
||
|
|
TypeIdentityProof = Namespace + "IdentityProof"
|
||
|
|
)
|