|
NAMEJSON::Hyper - extract links from JSON via a schemaSYNOPSISmy $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}); } DESCRIPTIONThe JSON Hyper Schema proposal defines hypertext navigation through data structures represented by JSON.Constructor
Methods
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.)
Utilities
BUGSPlease report any bugs to <http://rt.cpan.org/>.SEE ALSOJSON::Hyper::Link.Related modules: JSON::T, JSON::Path, JSON::GRDDL, JSON::Schema. <http://tools.ietf.org/html/draft-zyp-json-schema>. AUTHORToby Inkster <tobyink@cpan.org>.COPYRIGHT AND LICENCECopyright 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. a.k.a. "The MIT Licence"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.
Visit the GSP FreeBSD Man Page Interface. |