{
"id": "computer.haha.san.app",
"defs": {
"main": {
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"code",
"createdAt",
"updatedAt"
],
"properties": {
"code": {
"type": "string",
"maxLength": 65536,
"description": "The Lua source, inline."
},
"name": {
"type": "string",
"maxLength": 640,
"description": "Human-readable name. The record key is derived from it."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 2000,
"description": "One line on what the app does."
}
}
},
"description": "A sandbox app: Lua source plus metadata, published by its author. The record key is a slug derived from the name, so re-publishing a name is an edit rather than a new app."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}