jsonbinpack
Version:
A space-efficient schema-driven binary JSON serialization format based on JSON Schema
58 lines (57 loc) • 1.19 kB
JSON
{
"type": "object",
"additionalProperties": false,
"required": [
"rules"
],
"properties": {
"rules": {
"type": "object",
"additionalProperties": false,
"required": [
"no-any",
"radix",
"ordered-imports"
],
"properties": {
"no-any": {
"type": "array",
"maxItems": 1,
"minItems": 1,
"items": {
"type": "boolean"
}
},
"radix": {
"type": "array",
"maxItems": 1,
"minItems": 1,
"items": {
"type": "boolean"
}
},
"ordered-imports": {
"type": "object",
"additionalProperties": false,
"required": [
"options"
],
"properties": {
"options": {
"type": "object",
"additionalProperties": false,
"required": [
"grouped-imports"
],
"properties": {
"grouped-imports": {
"type": "boolean"
}
}
}
}
}
}
}
}
}