{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Emulator BIOS Profile", "type": "object", "required": ["emulator", "source", "systems", "files"], "properties": { "emulator": { "type": "string" }, "type": { "type": "string", "enum": ["standalone", "libretro", "standalone + libretro"] }, "source": { "type": "string", "format": "uri" }, "systems": { "type": "array", "items": { "type": "string" } }, "files": { "type": "array", "items": { "type": "object", "required": ["name"], "properties": { "name": { "type": "string" }, "region": { "type": "string" }, "required": { "type": "boolean", "default": false }, "md5": { "type": "string", "pattern": "^[a-fA-F0-9]{32}$" }, "sha1": { "type": "string", "pattern": "^[a-f0-9]{40}$" }, "size": { "type": "integer" }, "source_ref": { "type": "string" }, "note": { "type": "string" } } } } } }