{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/worker-manager/v1/pulse-launch-config-message.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "The message that is emitted when worker pool launch configs are created/changed/archived.",
  "properties": {
    "launchConfigId": {
      "description": "The ID of the launch configuration. Must be unique forever within the worker pool.\nAny change to the launch configuration (except `workerManager` fields) must use a new ID\nto ensure proper tracking of configuration metrics.\nIf not provided, worker-manager will generate a unique ID.\nMust be between 1 and 38 characters long and contain only alphanumeric\ncharacters, dashes, and underscores.\n",
      "maxLength": 38,
      "minLength": 1,
      "pattern": "^([a-zA-Z0-9-_]*)$",
      "title": "Launch Configuration ID",
      "type": "string"
    },
    "providerId": {
      "$ref": "worker-pool-full.json#/properties/providerId"
    },
    "workerPoolId": {
      "$ref": "worker-pool-full.json#/properties/workerPoolId"
    }
  },
  "required": [
    "launchConfigId",
    "workerPoolId",
    "providerId"
  ],
  "title": "Launch Config Pulse Message",
  "type": "object"
}