A 6-digit Red-Green-Blue (RGB) code that can be
displayed using HTML. Used in Party
to associate a web-displayable color
of the party. The RGB code is specified in hexadecimal, such that the RGB code
for the color green is "00FF00" ("#00" + "#FF" + "#00").
Examples
XML
<Party objectId="par0004"> <Abbreviation>IND</Abbreviation> <Color>232066</Color> <Name> <Text language="en">Independent</Text> <Text language="es">Independiente</Text> <Text language="fr">Indépendant</Text> <Text language="pl">Niezależny</Text> <Text language="hi">स्वतंत्र</Text> </Name> </Party>
JSON
"Party": { "objectId": "par0004", "Abbreviation": "IND", "Color": "232066", "Name": { "Text": [ { "language": "en", "value": "Independent" }, { "language": "es", "value": "Independiente" }, { "language": "fr", "value": "Indépendant" }, { "language": "pl", "value": "Niezależny" }, { "language": "hi", "value": "स्वतंत्र" } ] } }