This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"title": "Bananew", | |
"description": "Schema for Bananew changelog files", | |
"type": "object", | |
"required": ["versions"], | |
"properties": { | |
"versions": { | |
"type": "array", | |
"minItems": 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"title": "Settings array", | |
"description": "The root of the JSON file. This contains all of the settings.", | |
"type": "array", | |
"uniqueItems": true, | |
"items": { | |
"type": "object", | |
"required": ["save", "name", "type"], | |
"properties": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"title": "Pack data", | |
"description": "This is the main JSON object which Psych reads from.", | |
"type": "object", | |
"properties": { | |
"name": { | |
"description": "The name of your mod.", | |
"type": "string" | |
}, |