ContributionsMost RecentMost LikesSolutionsHow to read and delete specific AWS SQS message in snaplogic Hi, We have a requirement to read specific SQS message (by passing sqs message id) and delete it after entire pipeline process gets completed. When I use the SQS Consumer snap by passing sqs message id, it is reading all the messages from Queue instead reading only particular message and SQS acknowledge snap deleting all messages. Can you please give us a example pipeline to read only specific message from AWS SQS queue and delete it after pipeline completes its process. Thank you! How to Convert JSON data into PDF Hi, I have to generate a PDF from JSON data. Please let me know how we can achieve this in snaplogic with an example pipeline. Re: Removing Null Values from JSON @Spiro_Taleski - Thank you! Yes I checked this article and it worked. Removing Null Values from JSON Hi, We have a requirement to remove the null values elements from the json. Below is the example JSON which is having null values at Root and child levels. We need a solution to remove nulls at all levels and if all elements in child are removed then the entire child should get remove. Could you please provide the pipeline solution for it. Example: { “Root”:{ “Element1”:“1”, “Element2”:“A”, “Element3”:null, “Child1”:{ “Element4”:“1”, “Element5”:null } “Child2”:{ “Element6”:“1”, “Child3”:{ “Element7”:“1”, “Element8”:null, “Child4”:{ “Element9”: null } } } } } Expected Result: { “Root”:{ “Element1”:“1”, “Element2”:“A” “Child1”:{ “Element4”:“1” } “Child2”:{ “Element6”:“1”, “Child3”:{ “Element7”:“1” } } } } How to convert JSON to XML with multiple XSD Validations applied We have a requirement to convert JSON to XML and while converting need to validate with multiple XSD’s (presently I have 2 xsds) and generate XML. Please let me know the possible approaches If possible with an example.