Skip to main content

RGBColour

An RGB colour described by values for red, green and blue (0..255) as well as an optional name.

colourName object[]

Multilingual string, represented as an array of SpecificLanguageString objects, each containing a language code (using ISO 639-1:2002) and the translated string

Possible values: >= 1

  • Array [
  • languageLanguageCode (string)required

    ISO 639-1:2002 language code

    Possible values: Value must match regular expression ^[a-z]{2}$

    Example: en
    stringstringrequired

    Translated string

  • ]
  • rgbBlueValueintegerrequired

    The blue value of the RGB colour (0..255).

    Possible values: >= 0 and <= 255

    rgbGreenValueintegerrequired

    The green value of the RGB colour (0..255).

    Possible values: >= 0 and <= 255

    rgbRedValueintegerrequired

    The red value of the RGB colour (0..255).

    Possible values: >= 0 and <= 255

    RGBColour
    {
    "colourName": [
    {
    "language": "en",
    "string": "string"
    }
    ],
    "rgbBlueValue": 0,
    "rgbGreenValue": 0,
    "rgbRedValue": 0
    }