{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ServiceAccountWithSecret", "title": "ServiceAccountWithSecret", "allOf": [ { "$ref": "#/components/schemas/ServiceAccount" }, { "type": "object", "properties": { "secret": { "type": "string", "description": "Service account secret (only returned once at creation). Store this securely." } } } ] }