Skip to content

Latest commit

 

History

History
22 lines (11 loc) · 886 Bytes

README.md

File metadata and controls

22 lines (11 loc) · 886 Bytes

JsonPath solution

1) Find demands where the payer is a resident of street A and B

Solution: $.Demands[?(@.payer.address.street=='A' || @.payer.address.street=='B')]

2) Find demands where the payer is a resident of street A and identifies themself as FEMALE

Solution: $.Demands[?(@.payer.address.street=='A' && @.payer.gender=='FEMALE')]

3) Find demands which belong to the tax period - April 1st, 2022 to March 31st, 2023

Solution: $.Demands[?(@.taxPeriodFrom >= 1648771200000 && @.taxPeriodTo <=1680307199000)]

4) Find demands which belong to the tax period - April 1st 2021 to March 31st, 2022

Solution: $.Demands[?(@.taxPeriodFrom >= 1617235200000 && @.taxPeriodTo <=1648771199000)]

5) Find demands whose payer has the id 34231 and mobile number as 7878787878

Solution: $.Demands[?(@.payer.id== 34231 && @.payer.mobileNumber ==7878787878)]