{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "BuildSpec", "type": "object", "description": "Specification of the desired build behavior.", "properties": { "serviceAccount": { "type": "string", "description": "The name of the ServiceAccount to use to run the build pod." }, "completionDeadlineSeconds": { "type": "integer", "description": "Optional duration in seconds the build may run before the system terminates it. The countdown starts from the time the build pod is scheduled." }, "nodeSelector": { "type": "object", "description": "Selector which must match a node's labels for the build pod to be scheduled on that node." }, "triggeredBy": { "type": "array", "description": "Describes which triggers started the most recent build." } } }