{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "$anchor": "cdm.product.template",
  "type": "string",
  "title": "DurationTypeEnum",
  "description": "Specifies the duration type of the Security Lending transaction. e.g. Open or Term.",
  "enum": [
    "Evergreen",
    "Open",
    "Term"
  ],
  "oneOf": [
    {
      "enum": [
        "Evergreen"
      ],
      "title": "Evergreen",
      "description": "Specifies a trade where the term date is extended by a pre-determined period until a notice is serviced. Once the notice is served, the trade will not be reset again and goes to term."
    },
    
    {
      "enum": [
        "Open"
      ],
      "title": "Open",
      "description": "Specifies a trade with no termination date."
    },
    
    {
      "enum": [
        "Term"
      ],
      "title": "Term",
      "description": "Specifies a trade with a termination date."
    }
  ]
}
