divvy-rest
Version:
A RESTful API for submitting payments and monitoring accounts on the Divvy network.
18 lines (17 loc) • 369 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "config.json",
"description": "The Divvy-REST configuration file",
"type": "object",
"properties": {
"divvyd_servers": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"uniqueItems": true
}
},
"required": ["divvyd_servers"]
}