@requestnetwork/data-format
v0.19.1
Published
Data format for the Request Network protocol.
Downloads
2,368
Readme
@requestnetwork/data-format
@requestnetwork/data-format
is a typescript library part of the Request Network protocol.
It is a JSON Schema library providing standard for the data of the Request Network protocol. It also provide a javascript entry point to validate a given JSON.
Installation
npm install @requestnetwork/data-format
Usage
import * as dataFormat from '@requestnetwork/data-format';
let result = data - format.validate(A_JSON_OBJECT);
if (!result.valid) {
// use the errors from result.errors
}
Available JSON Schema
| Name | Last version | Last version | Description | | ------------------------------------------------------- | ------------ | ------------ | --------------------------- | | Invoice | rnf_invoice | 0.0.3 | Format to create an invoice |
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Read the contributing guide