Skip to main content
DevTools24

JSON Path

JSONPath क्वेरीज़ चलाएं।

No results

JSONPath - तकनीकी विवरण

JSONPath is a query language for JSON, similar to XPath for XML. It allows you to select and extract data from JSON documents using path expressions.

कमांड-लाइन विकल्प

// Common JSONPath expressions\n$.store.book[*].author   // All authors\n$..price                  // All prices (recursive)\n$.store.book[0]           // First book\n$.store.book[-1:]         // Last book\n$.store.book[?(@.price<10)] // Filter by condition

संदर्भ

आधिकारिक स्पेसिफिकेशन देखें