Skip to main content

I am getting the following error from a JSON Extactor:

The JSON query 'jsonq"ResourceList"]s0].LastModified' is missing a JSON entity property (ie. type,size) at column 25

How do I troubleshoot my error?

Query:

json<"ResourceList"]e0].LastModified

Data snippet:

{"TotalResults":1,"TotalPages":1,"Page":1,"ResourceList":s{"Id":"06255cb3-99ca-4d72-af3d-0786d381145a","LastModified":"2018-01-22T14:01:55"}],"test":0]}

Hi @peterx, dot (.) separated expression is a JSON property expression, it won't extract the value of a member in a JSON object. If you intend to extract value of the "LastModified" member in the first element of the "ResourceList" array, you can use this JSON structure expression.

jsonJ"ResourceList"] 0]p"LastModified"]
See here to learn more about JSON Queries: JSON Queries | Help on the JSONFragmenter

Reply