{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-gamelift/refs/heads/main/json-schema/gamelift-update-build-input-schema.json",
"title": "UpdateBuildInput",
"description": "UpdateBuildInput schema from Amazon GameLift API",
"type": "object",
"properties": {
"BuildId": {
"allOf": [
{
"$ref": "#/components/schemas/BuildIdOrArn"
},
{
"description": "A unique identifier for the build to update. You can use either the build ID or ARN value. "
}
]
},
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/NonZeroAndMaxString"
},
{
"description": "A descriptive label associated with a build. Build names don't need to be unique. "
}
]
},
"Version": {
"allOf": [
{
"$ref": "#/components/schemas/NonZeroAndMaxString"
},
{
"description": "Version information associated with a build or script. Version strings don't need to be unique."
}
]
}
},
"required": [
"BuildId"
]
}