feat: zod 라이브러리 업데이트 및 JSON 스키마 정의 개선
This commit is contained in:
@@ -1,7 +1,23 @@
|
||||
{
|
||||
"$ref": "#/definitions/TurnCommandProfile",
|
||||
"definitions": {
|
||||
"TurnCommandProfile": {}
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"general": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"nation": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"$schema": "http://json-schema.org/draft-07/schema#"
|
||||
"required": [
|
||||
"general",
|
||||
"nation"
|
||||
],
|
||||
"additionalProperties": false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user