Pack Patch Component

Component of a pack patch

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

Properties

Name Type
id String
linked_game String
name String
description String
authors String
small_description String
patch_type Object (of type patchType.html)

Example

{
    "id": "fibbage2_patch",
    "linked_game": "fibbage2",
    "name": "Fibbage 2",
    "description": "",
    "authors": "* Akira896 (traducción e imágenes)\n* Fukken Hanzel (imágenes adicionales)\n* Fixed Fun (videos)",
    "small_description": "¡Juego traducido al español!",
    "patch_type": {
        "game_text": true,
        "game_assets": true,
        "game_subtitles": false,
        "website": true,
        "audios": false
    }
}

id

Description Unique id of the component
Type String
Required Yes
Examples
  • fibbage2_patch
  • linked_game

    Description Id of the linked game for this component
    Type String
    Required Yes
    Examples
  • fibbage2
  • name

    Description Name of the component
    Type String
    Required Yes
    Examples
  • Fibbage 2
  • description

    Description Description of the component
    Type String
    Required Yes
    Examples
  • authors

    Description Authors of the component
    Type String
    Required Yes
    Examples
    • Akira896 (traducción e imágenes)
    • Fukken Hanzel (imágenes adicionales)
    • Fixed Fun (videos)
  • small_description

    Description Small description of the component
    Type String
    Required Yes
    Examples
  • ¡Juego traducido al español!
  • patch_type

    Defined in patchType.html

    $id packs/patchType.json
    Description Type of the patch
    Type Object (of type patchType.html)
    Required Yes

    Properties

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

    Schema

    {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "$id": "packs/packPatchComponent.json",
        "title": "Pack Patch Component",
        "description": "Component of a pack patch",
        "type": "object",
        "examples": [
            {
                "id": "fibbage2_patch",
                "linked_game": "fibbage2",
                "name": "Fibbage 2",
                "description": "",
                "authors": "* Akira896 (traducción e imágenes)\n* Fukken Hanzel (imágenes adicionales)\n* Fixed Fun (videos)",
                "small_description": "¡Juego traducido al español!",
                "patch_type": {
                    "game_text": true,
                    "game_assets": true,
                    "game_subtitles": false,
                    "website": true,
                    "audios": false
                }
            }
        ],
        "properties": {
            "id": {
                "examples": [
                    "fibbage2_patch"
                ],
                "description": "Unique id of the component",
                "type": "string"
            },
            "linked_game": {
                "examples": [
                    "fibbage2"
                ],
                "description": "Id of the linked game for this component",
                "type": "string"
            },
            "name": {
                "examples": [
                    "Fibbage 2"
                ],
                "description": "Name of the component",
                "type": "string"
            },
            "description": {
                "examples": [
                    ""
                ],
                "description": "Description of the component",
                "type": "string"
            },
            "authors": {
                "examples": [
                    "* Akira896 (traducción e imágenes)\n* Fukken Hanzel (imágenes adicionales)\n* Fixed Fun (videos)"
                ],
                "description": "Authors of the component",
                "type": "string"
            },
            "small_description": {
                "examples": [
                    "¡Juego traducido al español!"
                ],
                "description": "Small description of the component",
                "type": "string"
            },
            "patch_type": {
                "description": "Type of the patch",
                "$ref": "patchType.json"
            }
        },
        "required": [
            "id",
            "linked_game",
            "name",
            "description",
            "authors",
            "small_description",
            "patch_type"
        ]
    }