Group Type

Defines the semantics of group assignments

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
groupTypeId string
title string
description string
View JSON Schema on GitHub

JSON Schema

application-research-grouptype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupType",
  "title": "Group Type",
  "type": "object",
  "description": "Defines the semantics of group assignments",
  "required": [
    "groupTypeId",
    "title"
  ],
  "properties": {
    "groupTypeId": {
      "type": "string",
      "pattern": "^([a-z0-9-]+(?:[.][a-z0-9-]+)*):([a-zA-Z0-9._\\-\\/]+)$"
    },
    "title": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "description": {
      "type": "string",
      "minLength": 1
    }
  }
}