{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CopyExperimentToProject",
"title": "CopyExperimentToProject",
"type": "object",
"properties": {
"target_team_id": {
"type": "integer",
"description": "The team ID to copy the experiment to."
},
"feature_flag_key": {
"type": "string",
"description": "Optional feature flag key to use in the destination team."
},
"name": {
"type": "string",
"description": "Optional name for the copied experiment."
}
},
"required": [
"target_team_id"
]
}