{
  "title": "job chain node parameters",
  "id": "schemas/joe/jobChain/nodeParams",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "javaType": "com.sos.joc.model.joe.nodeparams.Params",
  "type": "object",
  "properties": {
    "paramList": {
      "xmlElement": "param",
      "type": "array",
      "items": {
        "javaType": "com.sos.joc.model.joe.nodeparams.Param",
        "type": "object",
        "required": [
          "name"
        ],
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "description": "parameter value as attribute in xml representation",
            "type": "string"
          },
          "content": {
            "description": "parameter value as cdata in xml representation",
            "type": "string"
          }
        }
      }
    }
  }
}
