123456789101112131415161718192021222324252627282930313233343536 |
- {
- "copyright": "Licensed Materials - Property of IBM. IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2018, 2019. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.",
- "$id": "propertiesSchema.json",
- "$schema": "http://json-schema.org/draft-07/schema#",
- "title": "properties",
- "description": "The properties of the dashboard specification",
- "type": "object",
- "properties": {
- "customColors": {
- "type": "object",
- "properties": {
- "colors": {
- "type": "array",
- "items": {
- "color": { "$ref": "schemaDefs.json#/definitions/name" }
- }
- }
- }
- },
- "localCache": { "type": "string" },
- "dashboardColorSet": { "type": "string" },
- "fredIsRed": { "type": "boolean" },
- "defaultLocale": { "type": "string" },
- "colorSet": {
- "oneOf": [
- { "type": "string" },
- {
- "type": "object",
- "properties": {
- "type": { "type": "string" }
- }
- }
- ]
- }
- }
- }
|