{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AddVoiceToProviderDTO", "title": "AddVoiceToProviderDTO", "type": "object", "properties": { "ownerId": { "type": "string", "description": "This is the owner_id of your shared voice which you want to add to your provider Account from Provider Voice Library" }, "voiceId": { "type": "string", "description": "This is the voice_id of the shared voice which you want to add to your provider Account from Provider Voice Library" }, "name": { "type": "string", "description": "This is the new name of the voice which you want to have once you have added voice to your provider Account from Provider Voice Library" } }, "required": [ "ownerId", "voiceId", "name" ] }