{ "$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" }