{ "$schema": "http://json-schema.org/draft-07/schema#", "type": ["object", "null"], "additionalProperties": false, "properties": { "schemaVersion": { "type": "integer" }, "updatedAt": { "type": "string" }, "packs": { "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "version": { "type": "string" }, "totalSizeBytes": { "type": "number" }, "logoPath": { "type": "string" }, "characterCount": { "type": "integer" }, "palette": { "type": "object", "additionalProperties": false, "properties": { "start": { "type": "string" }, "end": { "type": "string" } }, "required": ["start", "end"] }, "bundled": { "type": "boolean" } }, "required": [ "id", "name", "version", "totalSizeBytes", "logoPath", "characterCount", "palette", "bundled" ] } } }, "required": ["schemaVersion", "updatedAt", "packs"], "default": null }