lexicon, add atproto media storage

This commit is contained in:
Julia Lange 2025-03-21 19:54:05 -07:00
parent 69f0fd921a
commit 90fa6148a5
Signed by: Julia
SSH key fingerprint: SHA256:5DJcfxa5/fKCYn57dcabJa2vN2e6eT0pBerYi5SUbto
2 changed files with 76 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{
"lexicon": 1,
"id": "me.woach.content.title",
"defs": {
"main": {
"type": "object",
"properties": {
"language": {
"type": "string",
"knownValues": [
"me.woach.content.title#romanization",
"me.woach.content.title#english",
"me.woach.content.title#native"
]
},
"value": { "type": "string", "minLength": 1 }
}
},
"romanization": { "type": "token",
"description": "Romanization of the native title" },
"english": { "type": "token",
"description": "English translation or title" },
"native": { "type": "token",
"description": "Native title" }
}
}