{
    "title": "PlansModifyFilter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.plan.PlansModifyFilter",
    "type": "object",
    "required": [
        "controllerId",
        "planIds"
    ],
    "properties": {
        "controllerId": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 100,
            "minLength": 1
        },
        "planIds": {
            "type": "array",
            "uniqueItems": true,
            "minItems": 1,
            "items": {
                "javaType": "com.sos.joc.model.plan.PlanId",
                "type": "object",
                "required": [
                    "planSchemaId",
                    "noticeSpaceKey"
                ],
                "properties": {
                    "noticeSpaceKey": {
                        "type": "string",
                        "pattern": "^[^<>]*$",
                        "maxLength": 255,
                        "minLength": 1
                    },
                    "planSchemaId": {
                        "type": "string",
                        "pattern": "^[^<>]*$",
                        "maxLength": 255,
                        "minLength": 1
                    }
                },
                "additionalProperties": false
            }
        }
    },
    "additionalProperties": false
}