Skip to content

Commit

Permalink
Update the metadata json schema
Browse files Browse the repository at this point in the history
  • Loading branch information
evokerking1 authored Nov 19, 2024
1 parent 7692c82 commit 3ed013c
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions json_schemas/skyport/meta_data.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,23 @@
"properties": {
"version": {
"type": "string",
"minLength": 1
"minLength": 3,
"description": "Version Number the current skyport release"
},
"codename": {
"type": "string",
"minLength": 1
"minLength": 1,
"description": "Codename for the current skyport release"
},
"mode": {
"type": "string",
"minLength": 1
"minLength": 1,
"description": "What mode the server runs in. Not currently used."
}
},
"required": [
"version",
"codename",
"mode"
"codename"
]
}
},
Expand Down

0 comments on commit 3ed013c

Please sign in to comment.