update lexi
This commit is contained in:
parent
7c39de1c9f
commit
fe54a8f939
34
lexicons/ai/syui/game.json
Normal file
34
lexicons/ai/syui/game.json
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"lexicon": 1,
|
||||||
|
"id": "ai.syui.game",
|
||||||
|
"defs": {
|
||||||
|
"main": {
|
||||||
|
"type": "record",
|
||||||
|
"key": "self",
|
||||||
|
"description": "Record containing a game user.",
|
||||||
|
"input": {
|
||||||
|
"encoding": "application/json",
|
||||||
|
"record": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"account",
|
||||||
|
"username"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"account": {
|
||||||
|
"type": "at-uri"
|
||||||
|
},
|
||||||
|
"username": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"createdAt": {
|
||||||
|
"type": "string",
|
||||||
|
"format": "datetime",
|
||||||
|
"description": "Client-declared timestamp when this post was originally created."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
80
lexicons/ai/syui/game/character.json
Normal file
80
lexicons/ai/syui/game/character.json
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
{
|
||||||
|
"lexicon": 1,
|
||||||
|
"id": "ai.syui.game.character",
|
||||||
|
"defs": {
|
||||||
|
"main": {
|
||||||
|
"type": "record",
|
||||||
|
"key": "string",
|
||||||
|
"description": "record containing a game character.",
|
||||||
|
"input": {
|
||||||
|
"encoding": "application/json",
|
||||||
|
"record": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"createdAt"
|
||||||
|
],
|
||||||
|
"charactor": {
|
||||||
|
"type": "object",
|
||||||
|
"enum": [
|
||||||
|
"ai",
|
||||||
|
"manny",
|
||||||
|
"quinn",
|
||||||
|
"chinese",
|
||||||
|
"phoenix",
|
||||||
|
"kirin",
|
||||||
|
"leviathan",
|
||||||
|
"wyvern",
|
||||||
|
"cerberus",
|
||||||
|
"dragon",
|
||||||
|
"kitsune",
|
||||||
|
"pegasus"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"season": {
|
||||||
|
"type": "integer",
|
||||||
|
"minimum": 0,
|
||||||
|
"maximum": 3,
|
||||||
|
"default": 1
|
||||||
|
},
|
||||||
|
"group": {
|
||||||
|
"type": "string",
|
||||||
|
"default": "fantasy",
|
||||||
|
"enum": [
|
||||||
|
"origin",
|
||||||
|
"fantasy",
|
||||||
|
"animal"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"gender": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"none",
|
||||||
|
"male",
|
||||||
|
"famale"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"fullname": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"nickname": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"createdAt": {
|
||||||
|
"type": "string",
|
||||||
|
"format": "datetime",
|
||||||
|
"description": "Client-declared timestamp when this post was originally created."
|
||||||
|
},
|
||||||
|
"updatedAt": {
|
||||||
|
"type": "string",
|
||||||
|
"format": "datetime"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -5,7 +5,7 @@
|
|||||||
"main": {
|
"main": {
|
||||||
"type": "record",
|
"type": "record",
|
||||||
"key": "tid",
|
"key": "tid",
|
||||||
"description": "Record containing a game user.",
|
"description": "record containing a game user.",
|
||||||
"input": {
|
"input": {
|
||||||
"encoding": "application/json",
|
"encoding": "application/json",
|
||||||
"record": {
|
"record": {
|
||||||
@ -112,7 +112,7 @@
|
|||||||
"createdAt": {
|
"createdAt": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"format": "datetime",
|
"format": "datetime",
|
||||||
"description": "Client-declared timestamp when this post was originally created."
|
"description": "client-declared timestamp when this post was originally created."
|
||||||
},
|
},
|
||||||
"updatedAt": {
|
"updatedAt": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user