skip to Main Content

How to get parent node id from child node id in JSON

Here is my JSON string: [ { "Order": 1, "IssueId": 83719, "Journal": "HLRF", "Identity": "HLRF, Vol.137, Iss.4, y.2024, February 2024", "Web": "https://harvardlawreview.org/forum/issue/83719", "Articles": [ { "Link": "https://harvardlawreview.org/forum/article/1451533", "Pdf": 3789188 }, { "Link": "https://harvardlawreview.org/forum/article/1451561", "Pdf": 3789306 }, { "Link": "https://harvardlawreview.org/forum/article/1451574", "Pdf":…

VIEW QUESTION

getting json data into azure pipeline

jobs: # Set an output variable from job A - job: A steps: - powershell: | $image_infor=Invoke-WebRequest https://raw.githubusercontent.com/Sitecore/docker-images/master/tags/sitecore-tags.json ###json data Write-Host $image_infor Write-Host "##vso[task.setvariable variable=myOutput_currentDate;isoutput=true]$image_infor" name: setvarStep # Map the variable into job B - job: B dependsOn: A variables:…

VIEW QUESTION

Iterate JSON using Java

Below is the JSON response that I have received. I am looking to iterate through the JSON response and retrieve the taskId if the status is NEW. Can someone assist me in writing this in Java with org.json? The validation…

VIEW QUESTION
Back To Top
Search