Initial Clippy

This commit is contained in:
Richard Lee
2026-04-04 13:20:29 -07:00
parent dedd1c386a
commit e6d2da4716
33 changed files with 1713 additions and 1 deletions

View File

@@ -0,0 +1,54 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"accountUserId": {
"type": "string"
},
"avatarId": {
"type": "string"
},
"awardId": {
"type": "string"
},
"awardedAt": {
"format": "int64",
"type": "integer"
},
"awardedBy": {
"type": [
"string",
"null"
]
},
"metadataJson": {
"type": [
"string",
"null"
]
},
"sourceRef": {
"type": [
"string",
"null"
]
},
"sourceSummary": {
"type": [
"string",
"null"
]
},
"sourceType": {
"type": "string"
}
},
"required": [
"accountUserId",
"avatarId",
"awardId",
"awardedAt",
"sourceType"
],
"title": "CodexAvatarAward",
"type": "object"
}