Home
Allianz Future Cloud Platform
Platform Services Service Structure
Platform Services Service Structure
A microservice registered on the Allianz Future Cloud Platform
Type: object
Properties: 10
Cloud Platform Enterprise Financial Services Insurance Platform Engineering Kubernetes
Service is a JSON Structure definition published by Allianz Future Cloud Platform, describing 10 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
service_id
name
namespace
status
replicas
version
language
repository_url
created_at
modified_at
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"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-service-structure.json",
"description": "A microservice registered on the Allianz Future Cloud Platform",
"properties": {
"service_id": {
"type": "string",
"description": "Unique identifier for the service",
"example": "svc-500123"
},
"name": {
"type": "string",
"description": "Kebab-case service name",
"example": "policy-service"
},
"namespace": {
"type": "string",
"description": "Kubernetes namespace the service belongs to",
"example": "insurance-policy"
},
"status": {
"type": "string",
"description": "Current operational status",
"enum": [
"running",
"pending",
"failed",
"stopped"
],
"example": "running"
},
"replicas": {
"type": "integer",
"description": "Number of running pod replicas",
"example": 3
},
"version": {
"type": "string",
"description": "Currently deployed version",
"example": "2.5.1"
},
"language": {
"type": "string",
"description": "Primary programming language",
"enum": [
"kotlin",
"java",
"nodejs",
"python"
],
"example": "kotlin"
},
"repository_url": {
"type": "uri",
"description": "Git repository URL",
"example": "https://github.com/allianz/policy-service"
},
"created_at": {
"type": "datetime",
"description": "Timestamp when the service was registered",
"example": "2026-01-01T00:00:00Z"
},
"modified_at": {
"type": "datetime",
"description": "Timestamp when the service was last updated",
"example": "2026-04-15T14:30:00Z"
}
},
"name": "Service"
}