Netlify · Schema
repoInfo
CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| provider | string | |
| deploy_key_id | string | |
| repo_path | string | |
| repo_branch | string | |
| dir | string | |
| functions_dir | string | |
| cmd | string | |
| allowed_branches | array | |
| public_repo | boolean | |
| private_logs | boolean | |
| repo_url | string | |
| env | object | |
| installation_id | integer | |
| stop_builds | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/repoInfo",
"title": "repoInfo",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"provider": {
"type": "string"
},
"deploy_key_id": {
"type": "string"
},
"repo_path": {
"type": "string"
},
"repo_branch": {
"type": "string"
},
"dir": {
"type": "string"
},
"functions_dir": {
"type": "string"
},
"cmd": {
"type": "string"
},
"allowed_branches": {
"type": "array",
"items": {
"type": "string"
}
},
"public_repo": {
"type": "boolean"
},
"private_logs": {
"type": "boolean"
},
"repo_url": {
"type": "string"
},
"env": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"installation_id": {
"type": "integer"
},
"stop_builds": {
"type": "boolean"
}
}
}