# JSON::Name Provide a trait (and Attribute role) for JSON Marshal/Unmarshal where the JSON names aren't Perl identifiers ## Synopsis ``` use JSON::Name; class MyClass { # The attribute meta object will have the role JSON::Name::NamedAttribute # applied and "666.evil.name" will be stored in it's json-name attribute has $.nice-name is json-name('666.evil.name'); } ``` ## Description This is released as a dependency of [JSON::Marshal](https://github.com/jonathanstowe/JSON-Marshal) and [JSON::Unmarshal](https://github.com/tadzik/JSON-Unmarshal) in order to save duplication, it is intended to store a separate JSON name for an attribute where the name of the JSON attribute might be changed, either for aesthetic reasons or the name is not a valid Perl identifier. It will of course also be needed in classes thar are going to use JSON::Marshal or JSON::Unmarshal for serialisation/de-serialisation. Of course it could be used in other modules for a similar purpose. ## Installation Assuming you have a working perl6 installation you should be able to install this with *ufo* : ufo make test make install *ufo* can be installed with *panda* for rakudo: panda install ufo Or you can install directly with "panda": # From the source directory panda install . # Remote installation panda install JSON::Name Other install mechanisms may be become available in the future. ## Support This should be considered experimental software until such time that Perl 6 reaches an official release. However suggestions/patches are welcomed via github at https://github.com/jonathanstowe/JSON-Name ## Licence Please see the LICENCE file in the distribution (C) Jonathan Stowe 2015