Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions lexicons/app.skydrops/actor.luminary.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"lex": 1,
"id": "app.skydrops.actor.luminary",
"defs": {
"main": {
"type": "record",
"description": "The profile definition for a Skydrops user. Singular: Lumen. Plural: Luminaries.",
"key": "literal:self",
"record": {
"type": "object",
"required": ["handleType"],
"properties": {
"displayName": { "type": "string", "maxLength": 64 },
"description": { "type": "string", "maxLength": 256 },
"avatar": { "type": "blob", "accept": ["image/*"] },
"banner": { "type": "blob", "accept": ["image/*"] },
"handleType": {
"type": "string",
"description": "Defines the user as an individual 'Lumen' within the collective 'Luminaries'."
},
"tagline": { "type": "string", "default": "Where the Skies touch Grass" },
"greeting": { "type": "string", "default": "Welcome home, Luminary!" }
}
}
}
}
}
22 changes: 22 additions & 0 deletions lexicons/app.skydrops/feed.drop.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"lexicon": 1,
"id": "app.skydrops.feed.drop",
"defs": {
"main": {
"type": "record",
"description": "A high-fidelity audio/video drop in the Digital Gravity field.",
"record": {
"type": "object",
"required": ["audio", "createdAt"],
"properties": {
"audio": { "type": "blob", "accept": ["audio/*"] },
"text": { "type": "string", "maxLength": 300 },
"videoSource": { "type": "com.atproto.repo.strongRef" },
"altitude": { "type": "string", "knownValues": ["meadow", "zenith"] },
"heliaCurated": { "type": "boolean", "default": false },
"createdAt": { "type": "string", "format": "date-time" }
}
}
}
}
}
21 changes: 21 additions & 0 deletions lexicons/app.skydrops/feed.meadow.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"lex": 1,
"id": "app.skydrops.feed.meadow",
"defs": {
"main": {
"type": "record",
"description": "An audio-only entry in the Meadow feed.",
"key": "tid",
"record": {
"type": "object",
"required": ["audio", "createdAt"],
"properties": {
"audio": { "type": "blob", "accept": ["audio/*"] },
"caption": { "type": "string", "maxLength": 300 },
"alt": { "type": "string", "description": "Audio description for accessibility." },
"createdAt": { "type": "string", "format": "date-time" }
}
}
}
}
}
29 changes: 29 additions & 0 deletions lexicons/app.skydrops/feed.visual.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"lexicon": 1,
"id": "app.skydrops.feed.visual",
"defs": {
"main": {
"type": "record",
"description": "High-fidelity visual or long-form content for the Zenith layer.",
"record": {
"type": "object",
"required": ["mediaType", "createdAt"],
"properties": {
"mediaType": { "type": "string", "knownValues": ["image", "video", "article"] },
"image": { "type": "blob", "accept": ["image/*"] },
"video": { "type": "blob", "accept": ["video/*"] },
"title": { "type": "string", "maxLength": 100 },
"content": { "type": "string", "maxLength": 10000 },
"aspectRatio": {
"type": "object",
"properties": {
"width": { "type": "integer" },
"height": { "type": "integer" }
}
},
"createdAt": { "type": "string", "format": "date-time" }
}
}
}
}
}
21 changes: 21 additions & 0 deletions lexicons/app.skydrops/feed.zenithSort.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"lexicon": 1,
"id": "app.skydrops.feed.zenithSort",
"defs": {
"main": {
"type": "record",
"description": "Helia's local curation instructions for Zenith prioritization.",
"record": {
"type": "object",
"required": ["subject", "priority", "createdAt"],
"properties": {
"subject": { "type": "com.atproto.repo.strongRef" },
"priority": { "type": "integer", "minimum": 0, "maximum": 100 },
"constellation": { "type": "string" },
"heliaNote": { "type": "string", "maxLength": 140 },
"createdAt": { "type": "string", "format": "date-time" }
}
}
}
}
}
19 changes: 19 additions & 0 deletions lexicons/app.skydrops/graph.horizon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"lex": 1,
"id": "app.skydrops.graph.horizon",
"defs": {
"main": {
"type": "record",
"description": "A follow relationship within the Skydrops horizon.",
"key": "tid",
"record": {
"type": "object",
"required": ["subject", "createdAt"],
"properties": {
"subject": { "type": "string", "format": "did" },
"createdAt": { "type": "string", "format": "date-time" }
}
}
}
}
}
26 changes: 26 additions & 0 deletions lexicons/app.skydrops/system.dew.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"lex": 1,
"id": "app.skydrops.system.dew",
"defs": {
"main": {
"type": "record",
"description": "An interaction record representing 'Dew'. Interoperable with global 'Like' counts.",
"key": "tid",
"record": {
"type": "object",
"required": ["subject", "createdAt"],
"properties": {
"subject": {
"type": "ref",
"ref": "com.atproto.repo.strongRef"
},
"isPublicLike": {
"type": "boolean",
"description": "If true, this also triggers a standard app.bsky.feed.like record."
},
"createdAt": { "type": "string", "format": "date-time" }
}
}
}
}
}
20 changes: 20 additions & 0 deletions lexicons/app.skydrops/user.echo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"lexicon": 1,
"id": "app.skydrops.user.echo",
"defs": {
"main": {
"type": "record",
"description": "A lightweight resonance record for sharing drops.",
"record": {
"type": "object",
"required": ["subject", "createdAt"],
"properties": {
"subject": { "type": "com.atproto.repo.strongRef" },
"resonance": { "type": "integer", "minimum": 1, "maximum": 5 },
"comment": { "type": "string", "maxLength": 140 },
"createdAt": { "type": "string", "format": "date-time" }
}
}
}
}
}
20 changes: 20 additions & 0 deletions lexicons/app.skydrops/user.mist.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"lex": 1,
"id": "app.skydrops.user.mist",
"defs": {
"main": {
"type": "record",
"description": "A misty, ephemeral status update.",
"key": "tid",
"record": {
"type": "object",
"required": ["text", "expiresAt", "createdAt"],
"properties": {
"text": { "type": "string", "maxLength": 140 },
"expiresAt": { "type": "string", "format": "date-time" },
"createdAt": { "type": "string", "format": "date-time" }
}
}
}
}
}