Schema
{
"type": "object",
"properties": {
"playingId": {
"type": "integer",
"description": "Playing ID to be stopped.\\n Unsigned Integer 32-bit.",
"minimum": 0,
"maximum": 4294967295
},
"transitionDuration": {
"type": "integer",
"description": "Fade duration (ms).\\n Integer 32-bit.",
"minimum": -2147483648,
"maximum": 2147483647
},
"fadeCurve": {
"type": "integer",
"minimum": 0,
"maximum": 9,
"description": "Curve type to be used for the transition. Uses values from \\ref AkCurveInterpolation ."
}
},
"required": [
"playingId",
"transitionDuration",
"fadeCurve"
],
"additionalProperties": false
}