{
    "title": "PlanId",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "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
}