eventGroupsSchema.json 967 B

123456789101112131415161718192021222324
  1. {
  2. "copyright": "Licensed Materials - Property of IBM. IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2018. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.",
  3. "$id": "eventGroupsSchema.json",
  4. "$schema": "http://json-schema.org/draft-07/schema#",
  5. "title": "eventGroups",
  6. "description": "The event groups of the dashboard specification, representing ...",
  7. "type": "array",
  8. "items": {
  9. "type": "object",
  10. "properties": {
  11. "id": {
  12. "$ref": "schemaDefs.json#/definitions/id"
  13. },
  14. "widgetIds": {
  15. "description": "The model id of ...",
  16. "type": "array",
  17. "minItems": 1,
  18. "items": { "$ref": "schemaDefs.json#/definitions/modelId" },
  19. "uniqueItems": true
  20. }
  21. },
  22. "required": ["id", "widgetIds"]
  23. }
  24. }