Microsoft Graph · Schema

rgbColor

Color in RGB.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
b number Blue value
g number Green value
r number Red value
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphrgbcolor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.rgbColor",
  "title": "rgbColor",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "b": {
      "type": "number",
      "description": "Blue value",
      "format": "uint8"
    },
    "g": {
      "type": "number",
      "description": "Green value",
      "format": "uint8"
    },
    "r": {
      "type": "number",
      "description": "Red value",
      "format": "uint8"
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "description": "Color in RGB."
}