{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://cpobjects.mycpl.net/schema/cgc/application.json", "title": "Application", "description": "Application", "type": "object", "properties": { "token": { "description": "Unique ID of the application", "type": "string" }, "name": { "description": "Name of the application", "type": "string" }, "connector": { "description": "Unique ID of the connector", "type": "string", "$ref": "./enums/connector.json", "example": "catalog_player" }, "connector_version": { "description": "Version of the connector", "type": "string", "example": "prod-catalogplayer-v1" }, "credentials": { "description": "Credentials of the application", "type": "object" } }, "required": [ "token", "connector" ] }