{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-schema/mediaconvert-api-wav-settings-schema.json", "title": "WavSettings", "description": "Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value WAV.", "type": "object", "properties": { "BitDepth": { "allOf": [ { "$ref": "#/components/schemas/__integerMin16Max24" }, { "xml": { "name": "bitDepth" }, "description": "Specify Bit depth (BitDepth), in bits per sample, to choose the encoding quality for this audio track." } ] }, "Channels": { "allOf": [ { "$ref": "#/components/schemas/__integerMin1Max64" }, { "xml": { "name": "channels" }, "description": "Specify the number of channels in this output audio track. Valid values are 1 and even numbers up to 64. For example, 1, 2, 4, 6, and so on, up to 64." } ] }, "Format": { "allOf": [ { "$ref": "#/components/schemas/WavFormat" }, { "xml": { "name": "format" }, "description": "The service defaults to using RIFF for WAV outputs. If your output audio is likely to exceed 4 GB in file size, or if you otherwise need the extended support of the RF64 format, set your output WAV file format to RF64." } ] }, "SampleRate": { "allOf": [ { "$ref": "#/components/schemas/__integerMin8000Max192000" }, { "xml": { "name": "sampleRate" }, "description": "Sample rate in Hz." } ] } } }