Atlassian · Schema

ServiceRegistry

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string service description
id string service ID
name string service name
organizationId string organization ID
revision string service revision
serviceTier object
View JSON Schema on GitHub

JSON Schema

atlassian-serviceregistry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceRegistry",
  "title": "ServiceRegistry",
  "properties": {
    "description": {
      "description": "service description",
      "nullable": true,
      "type": "string"
    },
    "id": {
      "description": "service ID",
      "format": "uuid",
      "type": "string"
    },
    "name": {
      "description": "service name",
      "type": "string"
    },
    "organizationId": {
      "description": "organization ID",
      "type": "string"
    },
    "revision": {
      "description": "service revision",
      "type": "string"
    },
    "serviceTier": {
      "$ref": "#/components/schemas/ServiceRegistryTier"
    }
  },
  "type": "object"
}