org.symphonyoss.fin.ccy [E]

An object referring to a currency. A currency object has no attributes other than an ID and the only currently defined standard ID for a currency is ISO4217 although other proprietary taxonomies may be possible.

Attributes

The following attributes are required for a valid object of this type:

IDDescription
IDCurrency identifier, all instances MUST contain an identifier of type org.symphonyoss.fin.ccy.id.iso4217 unless that standard does not provide an identifier for the currency referred to. Where present, the iso4217 SHOULD be the first or only identifier. Note that only officially recognized identifiers defined by ISO4217 may be present in an attribute of that type, currencies for which there is no official identifier should be represented using the

org.symphonyoss.fin.ccy.id.symphony attribute type.


PresentationML
<div class="PresentationML" data-version="2.0">
    <div class="entity" data-entity-id="gbp">
        <b>UK Pounds Sterling</b>
    </div>
</div>

is a fiat currency whereas
<div class="PresentationML" data-version="2.0">
    <div class="entity" data-entity-id="xbt">
        <b>Bitcoin</b>
    </div>
</div>
is an unregulated crypto-currency.
EntityJSON
{
	"gbp": 
	{
		"type":     "org.symphonyoss.fin.ccy",   
    	"version":  "0.1",
    	"id":
    	[
    	   	{
				"type":		"org.symphonyoss.fin.ccy.id.iso4217",
				"value":	"GBP"
			}
		]
	},
	"xbt":
	{
		"type":     "org.symphonyoss.fin.ccy",   
    	"version":  "0.1",
    	"id":
    	[
    	   	{
				"type":		"org.symphonyoss.fin.ccy.id.symphony",
				"value":	"XBT"
			}
		]
	}
}

Need help? Email help@finos.org we'll get back to you.

Content on this page is licensed under the CC BY 4.0 license.
Code on this page is licensed under the Apache 2.0 license.