{
    "title": "params or environment variables",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "array",
    "items": {
        "javaType": "com.sos.joc.model.common.NameValuePair",
        "type": "object",
        "required": [
            "name",
            "value"
        ],
        "properties": {
            "name": {
                "type": "string",
                "pattern": "^[^<>]*$",
                "maxLength": 255
            },
            "value": {
                "type": "string",
                "pattern": "^(?s)((?!<script( |>)|<svg/on).)*$"
            }
        }
    }
}