スキーマ
{
    "type": "object",
    "properties": {
        "switchGroup": {
            "anyOf": [
                {
                    "type": "string",
                    "pattern": "^(StateGroup|SwitchGroup|SoundBank|GameParameter|Event|Effect|AudioDevice|Trigger|Attenuation|DialogueEvent|Bus|AuxBus|Conversion|ModulatorLfo|ModulatorEnvelope|ModulatorTime|Platform|Language|AcousticTexture|Global):[a-zA-Z0-9_]+$",
                    "description": "The name of the object qualified by its type or Short ID in the form of type:name or Global:shortId. Only object types that have globally-unique names or Short Ids are supported. Ex: Event:Play_Sound_01, Global:245489792"
                },
                {
                    "type": "string",
                    "pattern": "^\\{[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}\\}$",
                    "description": "オブジェクトGUIDで、その形式は: {aabbcc00-1122-3344-5566-77889900aabb}。"
                },
                {
                    "type": "string",
                    "pattern": "^\\\\",
                    "description": "Wwiseオブジェクトへのプロジェクトパスで、カテゴリと、ワークユニットを含みます。For example: \\\\Containers\\\\Default Work Unit\\\\New Sound SFX."
                }
            ],
            "description": "Either the ID (GUID), unique qualified name, or path of the Switch Group."
        },
        "gameObject": {
            "type": "integer",
            "description": "ゲームオブジェクトの固有ID。\\n ゲームオブジェクトID、符号なし整数64-bit。",
            "minimum": 0,
            "maximum": 18446744073709551615
        }
    },
    "required": [
        "switchGroup"
    ],
    "additionalProperties": false
}