id < /th > < td > packs.json < /td > < /tr > < tr > < th>schema
|
http://json-schema.org/draft-07/schema#
|
Properties
Defined in packs/tag.html
Type
|
Array [Tag]
|
Required
|
No
|
patchsCategories
Defined in packs/patchCategory.html
Description
|
List of patchs categories found in the all patches table
|
Type
|
Array [PatchCategory]
|
Required
|
No
|
packs
Defined in packs/pack.html
Description
|
List of packs
|
Type
|
Array [Pack]
|
Required
|
No
|
Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "packs.json",
"type": "object",
"properties": {
"tags": {
"type": "array",
"items": {
"description": "Tag",
"$ref": "packs/tag.json"
}
},
"patchsCategories": {
"type": "array",
"description": "List of patchs categories found in the all patches table",
"items": {
"description": "Patch category",
"$ref": "packs/patchCategory.json"
}
},
"packs": {
"type": "array",
"description": "List of packs",
"items": {
"description": "Pack",
"$ref": "packs/pack.json"
}
}
}
}