Files
nana-story/contracts/schema/app-info.schema.json
T

24 lines
391 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "AppInfo",
"type": "object",
"properties": {
"contractVersion": {
"type": "integer",
"format": "uint32",
"minimum": 0
},
"name": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"name",
"version",
"contractVersion"
]
}