json_path 0.7.1 copy "json_path: ^0.7.1" to clipboard
json_path: ^0.7.1 copied to clipboard

Implementation of RFC 9535 - JSONPath: Query Expressions for JSON. Reads and writes values in parsed JSON objects using queries like `$.store.book[2].price`.

example/example.dart

import 'dart:convert';

import 'package:json_path/json_path.dart';

void main() {
  final document = jsonDecode('''
{
  "store": {
    "book": [
      {
        "category": "reference",
        "author": "Nigel Rees",
        "title": "Sayings of the Century",
        "price": 8.95
      },
      {
        "category": "fiction",
        "author": "Evelyn Waugh",
        "title": "Sword of Honour",
        "price": 12.99
      },
      {
        "category": "fiction",
        "author": "Herman Melville",
        "title": "Moby Dick",
        "isbn": "0-553-21311-3",
        "price": 8.99
      },
      {
        "category": "fiction",
        "author": "J. R. R. Tolkien",
        "title": "The Lord of the Rings",
        "isbn": "0-395-19395-8",
        "price": 22.99
      }
    ],
    "bicycle": {
      "color": "red",
      "price": 19.95
    }
  }
}  
  ''');

  print('All prices in the store, by JSONPath:');
  JsonPath(r'$..price')
      .read(document)
      .map((match) => '${match.path}:\t${match.value}')
      .forEach(print);

  print('\nSame, by JSON Pointer:');
  JsonPath(r'$..price')
      .read(document)
      .map((match) => '${match.pointer}:\t${match.value}')
      .forEach(print);

  print('\nSame, but just the values:');
  JsonPath(r'$..price').readValues(document).forEach(print);

  print('\nBooks under 10:');
  JsonPath(r'$.store.book[[email protected] < 10].title')
      .readValues(document)
      .forEach(print);

  print('\nBooks with ISBN:');
  JsonPath(r'$.store.book[[email protected]].title').readValues(document).forEach(print);

  print('\nBooks under 10 with ISBN:');
  JsonPath(r'$.store.book[[email protected] < 10 && @.isbn].title')
      .readValues(document)
      .forEach(print);

  print('\nBooks with "the" in the title:');
  JsonPath(r'$.store.book[?search(@.title, "the")].title')
      .readValues(document)
      .forEach(print);

  print('\nBooks with the same category as the last one:');
  JsonPath(r'$.store.book[[email protected] == $.store.book[-1].category].title')
      .readValues(document)
      .forEach(print);
}
93
likes
140
pub points
99%
popularity

Publisher

verified publisherkarapetov.com

Implementation of RFC 9535 - JSONPath: Query Expressions for JSON. Reads and writes values in parsed JSON objects using queries like `$.store.book[2].price`.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

iregexp, maybe_just_nothing, petitparser, rfc_6901

More

Packages that depend on json_path