{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-gamelift/refs/heads/main/json-structure/gamelift-update-build-input-structure.json", "name": "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" ] }