System Type

The abstract type of an application or service

Application DependenciesCloud-NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
systemNamespace string
correlationIds array
labels object
documentationLabels object
tags array
View JSON Schema on GitHub

JSON Schema

application-research-systemtype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SystemType",
  "title": "System Type",
  "type": "object",
  "description": "The abstract type of an application or service",
  "properties": {
    "systemNamespace": {
      "type": "string",
      "pattern": "^[a-z0-9]+(?:[.][a-z0-9]+){1}$",
      "maxLength": 32
    },
    "correlationIds": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CorrelationId"
      }
    },
    "labels": {
      "$ref": "#/components/schemas/Labels"
    },
    "documentationLabels": {
      "$ref": "#/components/schemas/DocumentationLabels"
    },
    "tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Tag"
      }
    }
  }
}