jsonbinpack
Version:
A space-efficient schema-driven binary JSON serialization format based on JSON Schema
40 lines (39 loc) • 816 B
JSON
{
"type": "object",
"additionalProperties": false,
"required": [
"rules"
],
"properties": {
"rules": {
"type": "object",
"additionalProperties": false,
"required": [
"ordered-imports"
],
"properties": {
"ordered-imports": {
"type": "object",
"additionalProperties": false,
"required": [
"options"
],
"properties": {
"options": {
"type": "object",
"additionalProperties": false,
"required": [
"grouped-imports"
],
"properties": {
"grouped-imports": {
"type": "boolean"
}
}
}
}
}
}
}
}
}