Atlassian · Schema

ServiceRegistryTier

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string tier description
id string tier ID
level integer tier level
name string tier name
nameKey string name key of the tier
View JSON Schema on GitHub

JSON Schema

atlassian-serviceregistrytier-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceRegistryTier",
  "title": "ServiceRegistryTier",
  "properties": {
    "description": {
      "description": "tier description",
      "nullable": true,
      "type": "string"
    },
    "id": {
      "description": "tier ID",
      "format": "uuid",
      "type": "string"
    },
    "level": {
      "description": "tier level",
      "type": "integer"
    },
    "name": {
      "description": "tier name",
      "nullable": true,
      "type": "string"
    },
    "nameKey": {
      "description": "name key of the tier",
      "example": "service-registry.tier1.name",
      "type": "string"
    }
  },
  "type": "object"
}