SoundContent schema from Adyen API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-sound-content-schema.json", "title": "SoundContent", "description": "SoundContent schema from Adyen API", "type": "object", "properties": { "SoundFormat": { "$ref": "#/components/schemas/SoundFormat" }, "Language": { "type": "string", "pattern": "^[a-z]{2,2}$" }, "ReferenceID": { "type": "string", "pattern": "^.+$" }, "Text": { "type": "string", "pattern": "^.+$" } }, "required": [ "SoundFormat" ] }