mirror of
https://github.com/miaowware/qrm2.git
synced 2024-10-31 14:27:11 -04:00
0241d1856a
- Added Resource Manager - Migrated most exts to it - Added config entry for the resources URL - Added my ID to template - Bumped copyright on edited files Fixes #246
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"title": "Index",
|
|
"type": "object",
|
|
"properties": {
|
|
"last_updated": {
|
|
"title": "Last Updated",
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"resources": {
|
|
"title": "Resources",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "#/definitions/Resource"
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"last_updated",
|
|
"resources"
|
|
],
|
|
"definitions": {
|
|
"File": {
|
|
"title": "File",
|
|
"type": "object",
|
|
"properties": {
|
|
"filename": {
|
|
"title": "Filename",
|
|
"type": "string"
|
|
},
|
|
"hash": {
|
|
"title": "Hash",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"filename",
|
|
"hash"
|
|
]
|
|
},
|
|
"Resource": {
|
|
"title": "Resource",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/File"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|