MaintainerTeam

View on GitHub

Example Usage

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

let value: MaintainerTeam = {
  key: "team-key-123abc",
  name: "Example team",
  links: {
    "parent": {
      href: "/api/v2/teams",
      type: "application/json",
    },
    "roles": {
      href: "/api/v2/teams/example-team/roles",
      type: "application/json",
    },
    "self": {
      href: "/api/v2/teams/example-team",
      type: "application/json",
    },
  },
};

Fields

FieldTypeRequiredDescriptionExample
keystring:heavy_check_mark:The key of the maintainer teamteam-key-123abc
namestring:heavy_check_mark:A human-friendly name for the maintainer teamExample team
linksRecord<string, components.Link>:heavy_minus_sign:The location and content type of related resources{
"parent": {
"href": "/api/v2/teams",
"type": "application/json"
},
"roles": {
"href": "/api/v2/teams/example-team/roles",
"type": "application/json"
},
"self": {
"href": "/api/v2/teams/example-team",
"type": "application/json"
}
}