{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "GroupDetailItem",
  "type": "object",
  "additionalProperties": false,
  "description": "TAnalytics-v3 .. The detail of a group/classification like category/brand",
  "properties": {
    "id": {
      "type": "string",
      "description": "The id of the classification"
    },
    "name": {
      "type": "string",
      "description": "The name of the classification"
    }
  },
  "required": [
    "id"
  ]
}