Group

Group instance that resources can be assigned to

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

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

JSON Schema

application-research-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Group",
  "title": "Group",
  "type": "object",
  "description": "Group instance that resources can be assigned to",
  "required": [
    "groupId",
    "groupTypeId",
    "title"
  ],
  "properties": {
    "groupId": {
      "$ref": "#/components/schemas/GroupId"
    },
    "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
    }
  }
}