Schema Server

This app serves JSON Schema files and related documentation for the Convergint Platform.
Use these schemas for validation, autocomplete, and documentation in your YAML or JSON configuration files.

Available Schemas

How to Use

VS Code, Cursor, Windsurf

Add this comment at the top of your YAML file:

# yaml-language-server: $schema=https://schemas.prod.platform.convergint.tech/web-application/schema.json
name: my-app
teamSlug: engineering-enablement
resourceTier: small
publicHostname: my-app.convergint.tech

Or configure your .vscode/settings.json:

{
  "yaml.schemas": {
    "https://schemas.prod.platform.convergint.tech/web-application/schema.json": "your/values.yaml"
  }
}

JetBrains IDEs (IntelliJ, PyCharm, WebStorm, etc.)

Add this comment at the top of your YAML file:

# $schema: https://schemas.prod.platform.convergint.tech/web-application/schema.json
name: my-app
teamSlug: engineering-enablement
resourceTier: small
publicHostname: my-app.convergint.tech