{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "$anchor": "cdm.base.staticdata.asset.common",
  "type": "string",
  "title": "AssetTypeEnum",
  "description": "Represents an enumeration list to identify the asset type.",
  "enum": [
    "Cash",
    "Commodity",
    "Other",
    "Security"
  ],
  "oneOf": [
    {
      "enum": [
        "Cash"
      ],
      "title": "Cash",
      "description": "Indentifies cash in a currency form."
    },
    
    {
      "enum": [
        "Commodity"
      ],
      "title": "Commodity",
      "description": "Indentifies basic good used in commerce that is interchangeable with other goods of the same type."
    },
    
    {
      "enum": [
        "Other"
      ],
      "title": "Other",
      "description": "Indentifies other asset types."
    },
    
    {
      "enum": [
        "Security"
      ],
      "title": "Security",
      "description": "Indentifies negotiable financial instrument of monetary value with an issue ownership position."
    }
  ]
}
