{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://harness-forge.dev/schemas/runtime/selected-profile.schema.json",
  "title": "Selected Profile",
  "type": "object",
  "additionalProperties": false,
  "required": ["profileId", "bundleIds", "generatedAt"],
  "properties": {
    "profileId": { "type": "string", "minLength": 1 },
    "displayName": { "type": "string" },
    "bundleIds": {
      "type": "array",
      "items": { "type": "string", "minLength": 1 }
    },
    "generatedAt": { "type": "string", "minLength": 1 }
  }
}
