jsonbinpack
Version:
A space-efficient schema-driven binary JSON serialization format based on JSON Schema
49 lines (48 loc) • 736 B
JSON
{
"type": "object",
"additionalProperties": false,
"required": [
"github",
"patreon",
"open_collective",
"ko_fi",
"tidelift",
"community_bridge",
"liberapay",
"issuehunt",
"otechie",
"custom"
],
"properties": {
"github": {
"type": "string"
},
"patreon": {
"type": "null"
},
"open_collective": {
"type": "null"
},
"ko_fi": {
"type": "null"
},
"tidelift": {
"type": "null"
},
"community_bridge": {
"type": "null"
},
"liberapay": {
"type": "null"
},
"issuehunt": {
"type": "null"
},
"otechie": {
"type": "null"
},
"custom": {
"type": "null"
}
}
}