{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codestar/refs/heads/main/json-structure/codestar-team-member-structure.json",
"name": "TeamMember",
"description": "Information about a team member in a project.",
"type": "object",
"properties": {
"userArn": {
"allOf": [
{
"$ref": "#/components/schemas/UserArn"
},
{
"description": "The Amazon Resource Name (ARN) of the user in IAM."
}
]
},
"projectRole": {
"allOf": [
{
"$ref": "#/components/schemas/Role"
},
{
"description": "The role assigned to the user in the project. Project roles have different levels of access. For more information, see Working with Teams in the AWS CodeStar User Guide. "
}
]
},
"remoteAccessAllowed": {
"allOf": [
{
"$ref": "#/components/schemas/RemoteAccessAllowed"
},
{
"description": "Whether the user is allowed to remotely access project resources using an SSH public/private key pair."
}
]
}
},
"required": [
"userArn",
"projectRole"
]
}