{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/argo/refs/heads/main/json-schema/argo-cd-version-message-schema.json", "title": "VersionMessage", "description": "Argo CD server version information.", "type": "object", "properties": { "Version": { "type": "string", "description": "Argo CD version string." }, "BuildDate": { "type": "string", "description": "Build date." }, "GitCommit": { "type": "string", "description": "Git commit SHA of this build." }, "GoVersion": { "type": "string", "description": "Go language version used to build." }, "Platform": { "type": "string", "description": "Operating system and architecture." } } }