mirror of
https://github.com/TRaSH-Guides/Guides.git
synced 2026-05-24 11:49:02 -05:00
ea706b1539
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: FonduemangVI <15520607+FonduemangVI@users.noreply.github.com>
33 lines
986 B
JSON
33 lines
986 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"$id": "https://raw.githubusercontent.com/TRaSH-/Guides/master/schemas/profile-groups.schema.json",
|
|
"title": "Quality Profile Groups Schema",
|
|
"description": "Schema for grouping quality profiles into logical categories. Order of groups determines display order.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["name", "profiles"],
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"description": "Display name for the profile group"
|
|
},
|
|
"profiles": {
|
|
"type": "object",
|
|
"description": "Map of quality profile slugs to their trash_id hashes",
|
|
"patternProperties": {
|
|
"^.+$": {
|
|
"type": "string",
|
|
"pattern": "^[a-fA-F0-9]{32}$"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"minProperties": 1
|
|
}
|
|
}
|
|
},
|
|
"minItems": 1
|
|
}
|