The type of the game patch

id < /th >  < td > packs/patchType.json < /td >  < /tr >  < tr >  < th>schema http://json-schema.org/draft-07/schema#

Properties

Name Type
game_text Boolean
game_assets Boolean
game_subtitles Boolean
website Boolean
audios Boolean

game_text

Description If the patch modify the game text
Type Boolean
Required Yes

game_assets

Description If the patch modify the game assets
Type Boolean
Required Yes

game_subtitles

Description If the patch modify the game subtitles
Type Boolean
Required Yes

website

Description If the patch modify the custom controller
Type Boolean
Required Yes

audios

Description If the patch modify the game audios
Type Boolean
Required Yes

Schema

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "packs/patchType.json",
    "description": "The type of the game patch",
    "type": "object",
    "properties": {
        "game_text": {
            "description": "If the patch modify the game text",
            "type": "boolean"
        },
        "game_assets": {
            "description": "If the patch modify the game assets",
            "type": "boolean"
        },
        "game_subtitles": {
            "description": "If the patch modify the game subtitles",
            "type": "boolean"
        },
        "website": {
            "description": "If the patch modify the custom controller",
            "type": "boolean"
        },
        "audios": {
            "description": "If the patch modify the game audios",
            "type": "boolean"
        }
    },
    "required": [
        "game_text",
        "game_assets",
        "game_subtitles",
        "website",
        "audios"
    ]
}