123456789101112131415161718192021222324 |
- {
- "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.",
- "$id": "eventGroupsSchema.json",
- "$schema": "http://json-schema.org/draft-07/schema#",
- "title": "eventGroups",
- "description": "The event groups of the dashboard specification, representing ...",
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "id": {
- "$ref": "schemaDefs.json#/definitions/id"
- },
- "widgetIds": {
- "description": "The model id of ...",
- "type": "array",
- "minItems": 1,
- "items": { "$ref": "schemaDefs.json#/definitions/modelId" },
- "uniqueItems": true
- }
- },
- "required": ["id", "widgetIds"]
- }
- }
|