JSON::Hyper(3pm) | User Contributed Perl Documentation | JSON::Hyper(3pm) |
JSON::Hyper - extract links from JSON via a schema
my $hyper = JSON::Hyper->new($hyperschema); my $json = from_json( ... ); my @links = $hyper->find_links($json->[1]->{some}->{object}); foreach my $link (@links) { printf("<%s> (%s)", $link->{href}, $link->{rel}); }
The JSON Hyper Schema proposal defines hypertext navigation through data structures represented by JSON.
If the schema is omitted, defaults to the JSON Referencing hyper schema (described at <http://json-schema.org/json-ref>)
Each link is a JSON::Hyper::Link object.
For example, assuming the hyper schema specifies slash-delimited fragments, the following:
my $hyper = JSON::Hyper->new($hyperschema); my ($result) = $hyper->get('http://example.com/data.json#foo/bar/0');
Is roughly equivalent to:
use JSON; use LWP::UserAgent; my $ua = LWP::UserAgent->new; my $response = $ua->get('http://example.com/data.json'); my $object = from_json($response->decoded_content); my $result = $object->{foo}{bar}[0];
Note, if called multiple times on the same URL will return not just equivalent objects, but the same object.
So, why does this method return a list of results instead of just a single result? In most cases, there will be either 0 or 1 items on the list; however, JSONPath allows a path to match multiple nodes, so there will occasionally be more than one result. (In scalar context, this method just returns the first result anyway.)
This has the effect of rel="full" behaving like inclusion does in various programming languages.
This modifies the given object rather than creating a new object.
Please report any bugs to <http://rt.cpan.org/>.
JSON::Hyper::Link.
Related modules: JSON::T, JSON::Path, JSON::GRDDL, JSON::Schema.
<http://tools.ietf.org/html/draft-zyp-json-schema>.
Toby Inkster <tobyink@cpan.org>.
Copyright 2010-2012 Toby Inkster.
This module is tri-licensed. It is available under the X11 (a.k.a. MIT) licence; you can also redistribute it and/or modify it under the same terms as Perl itself.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2022-05-28 | perl v5.34.0 |