Source: gctax/schemas/gctax_group_schema.js

/**
* Schema for {@link module:gctax_group~Gctax_group}
* @constant
*/
const gctax_group_schema = {
    "id": "/gcgroup_schema",
    "type": "object",
    "properties": {
        "group": {
            "required": true,
            "type": "string"
        },
        "notes": {
            "required": true,
            "type": "string"
        },
        "tent_paths": {
            "required": true,
            "type": "array",
            "items": {
                "type": "object",
                "properties": {
                    "tent_path": {
                        "required": true,
                        "type": "string"
                    }
                }
            },
            "minItems": 1
        }
    },
    "additionalProperties": false
};

module.exports = gctax_group_schema;