Netlify · Schema
deployFiles
CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites
Properties
| Name | Type | Description |
|---|---|---|
| files | object | |
| draft | boolean | |
| async | boolean | |
| functions | object | |
| function_schedules | array | |
| functions_config | object | |
| branch | string | |
| framework | string | |
| framework_version | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/deployFiles",
"title": "deployFiles",
"type": "object",
"properties": {
"files": {
"type": "object",
"properties": {}
},
"draft": {
"type": "boolean"
},
"async": {
"type": "boolean"
},
"functions": {
"type": "object",
"properties": {}
},
"function_schedules": {
"type": "array",
"items": {
"$ref": "#/components/schemas/functionSchedule"
}
},
"functions_config": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/functionConfig"
}
},
"branch": {
"type": "string"
},
"framework": {
"type": "string"
},
"framework_version": {
"type": "string"
}
}
}