CustomProperty

May 22, 2025 ยท View on GitHub

Example Usage

import { CustomProperty } from "@launchdarkly/mcp-server/models/components";

let value: CustomProperty = {
  name: "Jira issues",
  value: [
    "is-123",
    "is-456",
  ],
};

Fields

FieldTypeRequiredDescriptionExample
namestring:heavy_check_mark:The name of the custom property of this type.Jira issues
valuestring[]:heavy_check_mark:An array of values for the custom property data to associate with this flag.[
"is-123",
"is-456"
]