After
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"builds": {
"items": {
"additionalProperties": false,
"properties": {
"autoAcceptChanges": {
"type": "boolean"
},
"branch": {
"type": "string"
},
"buildId": {
"format": "uuid",
"type": "string"
},
"commitSha": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"gateStatus": {
"type": "string"
},
"prNumber": {
"type": [
"number",
"null"
]
},
"status": {
"type": "string"
}
},
"required": [
"buildId",
"commitSha",
"branch",
"prNumber",
"status",
"gateStatus",
"autoAcceptChanges",
"createdAt"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"builds"
],
"type": "object"
}