Allianz Future Cloud Platform · JSON Structure

Platform Services Register Service Request Structure

Request body for registering a new service

Type: object Properties: 5 Required: 4
Cloud PlatformEnterpriseFinancial ServicesInsurancePlatform EngineeringKubernetes

RegisterServiceRequest is a JSON Structure definition published by Allianz Future Cloud Platform, describing 5 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name namespace language repository_url resource_requirements

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/allianz-future-cloud-platform/refs/heads/main/json-structure/platform-services-register-service-request-structure.json",
  "description": "Request body for registering a new service",
  "properties": {
    "name": {
      "type": "string",
      "description": "Kebab-case service name",
      "example": "claims-service"
    },
    "namespace": {
      "type": "string",
      "description": "Target Kubernetes namespace",
      "example": "insurance-claims"
    },
    "language": {
      "type": "string",
      "description": "Primary programming language",
      "enum": [
        "kotlin",
        "java",
        "nodejs",
        "python"
      ],
      "example": "kotlin"
    },
    "repository_url": {
      "type": "uri",
      "description": "Git repository URL for the service",
      "example": "https://github.com/allianz/claims-service"
    },
    "resource_requirements": {
      "$ref": "#/components/schemas/ResourceRequirements"
    }
  },
  "required": [
    "name",
    "namespace",
    "language",
    "repository_url"
  ],
  "name": "RegisterServiceRequest"
}