12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "$schema": "http://json-schema.org/draft-07/schema#",
- "type": "array",
- "title": "Category information for integrations.",
- "items": {
- "$ref": "#/$defs/category"
- },
- "$defs": {
- "category": {
- "type": "object",
- "description": "An entry for a single category.",
- "properties": {
- "id": {
- "$ref": "./shared.json#/$defs/id"
- },
- "name": {
- "type": "string",
- "minLength": 1,
- "description": "The display name for the category."
- },
- "description": {
- "type": "string",
- "description": "A description of the category."
- },
- "most_popular": {
- "type": "boolean",
- "description": "Indicates if the category should show up in the initial list of categories, or only in the full expanded list."
- },
- "priority": {
- "type": "integer",
- "description": "Indicates sort order for categories that are marked as most popular."
- },
- "collector_default": {
- "type": "boolean",
- "description": "Indicates that the category should be added to collector integrations that list no categories."
- },
- "children": {
- "type": "array",
- "description": "A list of categories that are children of this category.",
- "items": {
- "$ref": "#/$defs/category"
- }
- }
- },
- "required": [
- "id",
- "name",
- "description",
- "most_popular",
- "priority",
- "children"
- ]
- }
- }
- }
|