propertiesSchema.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "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.",
  3. "$id": "propertiesSchema.json",
  4. "$schema": "http://json-schema.org/draft-07/schema#",
  5. "title": "properties",
  6. "description": "The properties of the dashboard specification",
  7. "type": "object",
  8. "properties": {
  9. "customColors": {
  10. "type": "object",
  11. "properties": {
  12. "colors": {
  13. "type": "array",
  14. "items": {
  15. "color": { "$ref": "schemaDefs.json#/definitions/name" }
  16. }
  17. }
  18. }
  19. },
  20. "localCache": { "type": "string" },
  21. "dashboardColorSet": { "type": "string" },
  22. "fredIsRed": { "type": "boolean" },
  23. "defaultLocale": { "type": "string" },
  24. "colorSet": {
  25. "oneOf": [
  26. { "type": "string" },
  27. {
  28. "type": "object",
  29. "properties": {
  30. "type": { "type": "string" }
  31. }
  32. }
  33. ]
  34. }
  35. }
  36. }