{ "lexicon": 1, "id": "org.atproto-nix.projects", "defs": { "main": { "type": "record", "description": "Metadata about ATProto-related projects and their packaging status in Nix", "record": { "type": "object", "properties": { "name": { "type": "string", "description": "Project name" }, "description": { "type": "string", "description": "Short description of the project" }, "category": { "type": "string", "description": "Project category, e.g., SDK, App, Tool" }, "repoURL": { "type": "string", "description": "Repository URL", "optional": true }, "appURL": { "type": "string", "description": "Application URL", "optional": true }, "maintainers": { "type": "array", "description": "List of maintainers' handles", "items": { "type": "string" } }, "status": { "type": "string", "description": "Packaging status for Nix", "enum": ["planned", "in-progress", "completed"] } }, "required": ["name", "description", "category", "status"] } } } }