스키마
{
"type": "object",
"properties": {
"stateGroup": {
"anyOf": [
{
"type": "string",
"pattern": "^[a-zA-Z_]+[a-zA-Z_0-9()]*$",
"description": "오브젝트의 이름을 말합니다."
},
{
"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": "integer",
"description": "Wwise Object의 Short ID.\\n Unsigned Integer 32 비트.",
"minimum": 0,
"maximum": 4294967295
}
],
"description": "State Group의 ID (GUID), 이름, 또는 Short ID."
},
"state": {
"anyOf": [
{
"type": "string",
"pattern": "^[a-zA-Z_]+[a-zA-Z_0-9()]*$",
"description": "오브젝트의 이름을 말합니다."
},
{
"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": "integer",
"description": "Wwise Object의 Short ID.\\n Unsigned Integer 32 비트.",
"minimum": 0,
"maximum": 4294967295
}
],
"description": "State의 ID (GUID), 이름, 또는 Short ID."
}
},
"required": [
"stateGroup",
"state"
],
"additionalProperties": false
}