{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "$anchor": "cdm.event.workflow",
  "type": "string",
  "title": "LimitLevelEnum",
  "description": "The enumeration values to specify the level at which the limit is set: customer business, proprietary business or account level. This is part of the CME specification for clearing credit limits, although not specified as a set of enumerated values as part of the clearing confirmation specification.",
  "enum": [
    "Account",
    "Customer",
    "House"
  ],
  "oneOf": [
    {
      "enum": [
        "Account"
      ],
      "title": "Account",
      "description": "The limit is set in relation to the proprietary business undertaken by the clearing counterparty."
    },
    
    {
      "enum": [
        "Customer"
      ],
      "title": "Customer",
      "description": "The limit is set in relation to the customer business undertaken by the clearing counterparty."
    },
    
    {
      "enum": [
        "House"
      ],
      "title": "House",
      "description": "The limit is set at the account level in relation to the clearing counterparty."
    }
  ]
}
