I have a Azure Servicebus topie and multiple subscriptions.message will be posted with dictionary type. based on the dictionary key will I be able to filter the message. All the examples are shown based on the hierarchy https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-messaging-sql-filter#property_name . here is the payload and I want to filter based on the dict key which is DataReady, Datapending, Dataprocessed.
Message 1:
{
"DataReady": "{\"RequestId\":\"605dc8dda700a7b9c25eb22a\"\"Status\":"Initiated\"}"
}
Message 2:
{
"DataProcessed": "{\"RequestId\":\"605dc8dda700a7b9c25eb22a\"\"Status\":"Processed\"}"
}
message 3:
{
"DataPending": "{\"RequestId\":\"605dc8dda700a7b9c25eb22a\"\"Status\":"pending\"}"
}