schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
trivia.schema.json
use_spoilers
Whether to hide the answers in spoilers when revealing the question's answers.
{"type": "boolean"}
djlint.json
JSON schema fcor djLint's configuration file
{"$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "default": {"format_attribute_template_tags": false, "profile": "html"}, "definitions": {"css-beautify": {"type": "object"}, "js-beautify": {"type": "object"}}, "properties": {"$schema": {"type": "string"}, "blank_line_after_tag": {"type": "string"}, "blank_line_before_tag": {"type": "string"}, "close_void_tags": {"type": "boolean"}, "css": {}, "custom_blocks": {"type": "string"}, "custom_html": {"type": "string"}, "exclude": {"type": "string"}, "extend_exclude": {"type": "string"}, "extension": {"type": "string"}, "files": {"items": {"type": "string"}, "type": "array"}, "format_attribute_template_tags": {"type": "boolean"}, "format_css": {"type": "boolean"}, "format_js": {"type": "boolean"}, "ignore": {"type": "string"}, "ignore_blocks": {"type": "string"}, "ignore_case": {"type": "boolean"}, "include": {"type": "string"}, "indent": {"type": "number"}, "js": {}, "line_break_after_multiline_tag": {"type": "boolean"}, "linter_output_format": {"examples": ["{filename}:{line}: {code} {message} {match}"], "type": "string"}, "max_attribute_length": {"type": "number"}, "max_blank_lines": {"type": "number"}, "max_line_length": {"type": "number"}, "no_function_formatting": {"type": "boolean"}, "no_line_after_yaml": {"type": "boolean"}, "no_set_formatting": {"type": "boolean"}, "per-file-ignores": {"type": "object"}, "preserve_blank_lines": {"type": "boolean"}, "preserve_leading_space": {"type": "boolean"}, "profile": {"enum": ["html", "django", "jinja", "nunjucks", "handlebars", "golang", "angular"]}, "require_pragma": {"type": "boolean"}, "use_gitignore": {"type": "boolean"}}, "type": "object"}
host.json
aggregator
Configuration settings for the function result aggregator.
{"type": "object", "properties": {"batchSize": {"type": "integer", "default": 1000}, "flushTimeout": {"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:00:30"}}, "additionalProperties": false}
host.json
batchSize
The maximum batch size for aggregations. If this value is reached before the 'flushTimeout', all values will be flushed.
{"type": "integer", "default": 1000}
host.json
flushTimeout
The aggregation duration. The aggregator will flush periodically based on this value.
{"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:00:30"}
host.json
functions
The list of functions the host should load.
{"type": "array", "uniqueItems": true, "items": {"type": "string"}}
host.json
functionTimeout
Value indicating the timeout duration for all functions.
{"oneOf": [{"type": "string", "pattern": "^(-1|(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d)$"}, {"enum": [null]}]}
host.json
watchDirectories
Set of shared code directories that should be monitored for changes to ensure that when code in these directories is changed, it is picked up by your functions
{"type": "array", "uniqueItems": true, "items": {"type": "string", "minLength": 1}}
host.json
singleton
Configuration settings for Singleton lock behavior.
{"type": "object", "properties": {"lockPeriod": {"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:00:15"}, "listenerLockPeriod": {"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:01:00"}, "listenerLockRecoveryPollingInterval": {"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:01:00"}, "lockAcquisitionTimeout": {"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:01:00"}, "lockAcquisitionPollingInterval": {"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$"}}, "additionalProperties": false}
host.json
lockPeriod
The period that function level locks are taken for (they will auto renew).
{"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:00:15"}
host.json
listenerLockPeriod
The period that listener locks are taken for.
{"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:01:00"}
host.json
listenerLockRecoveryPollingInterval
The time interval used for listener lock recovery if a listener lock couldn't be acquired on startup.
{"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:01:00"}
host.json
lockAcquisitionTimeout
The maximum amount of time the runtime will try to acquire a lock.
{"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:01:00"}
host.json
lockAcquisitionPollingInterval
The interval between lock acquisition attempts.
{"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$"}
host.json
healthMonitor
Configuration settings for the Functions host health monitor
{"type": "object", "properties": {"enabled": {"type": "boolean", "default": true}, "healthCheckInterval": {"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:00:10"}, "healthCheckWindow": {"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:02:00"}, "healthCheckThreshold": {"type": "integer", "default": 6}, "counterThreshold": {"type": "number", "default": 0.8}}, "additionalProperties": false}
host.json
enabled
Specifies whether the feature is enabled.
{"type": "boolean", "default": true}
host.json
healthCheckInterval
The time interval between the periodic background health checks
{"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:00:10"}
host.json
healthCheckWindow
A sliding time window used in conjunction with the healthCheckThreshold setting.
{"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:02:00"}
host.json
healthCheckThreshold
Maximum number of times the health check can fail before a host recycle is initiated.
{"type": "integer", "default": 6}
host.json
counterThreshold
The threshold at which a performance counter will be considered unhealthy.
{"type": "number", "default": 0.8}
host.json
http-extension
Configuration settings for 'http' triggers.
{"type": "object", "required": ["routePrefix"], "properties": {"routePrefix": {"type": "string", "default": "api"}, "maxConcurrentRequests": {"type": "integer", "default": -1}, "maxOutstandingRequests": {"type": "integer", "default": -1}, "dynamicThrottlesEnabled": {"type": "boolean", "default": false}, "hsts": {"type": "object", "properties": {"isEnabled": {"type": "boolean"}, "excludedHosts": {"type": "array", "uniqueItems": true, "items": {"type": "string"}}, "includeSubDomains": {"type": "boolean"}, "maxAge": {"type": "string"}, "preload": {"type": "boolean"}}, "additionalProperties": false}, "customHeaders": {"type": "object"}}, "additionalProperties": false}
host.json
routePrefix
Defines the default route prefix that applies to all routes. Use an empty string to remove the prefix.
{"type": "string", "default": "api"}
host.json
maxConcurrentRequests
Defines the the maximum number of http functions that will execute in parallel.
{"type": "integer", "default": -1}
host.json
maxOutstandingRequests
Defines the maximum number of outstanding requests that will be held at any given time.
{"type": "integer", "default": -1}
host.json
dynamicThrottlesEnabled
Indicates whether dynamic host counter checks should be enabled.
{"type": "boolean", "default": false}
host.json
hsts
Configuration settings for Strict-Transport-Security
{"type": "object", "properties": {"isEnabled": {"type": "boolean"}, "excludedHosts": {"type": "array", "uniqueItems": true, "items": {"type": "string"}}, "includeSubDomains": {"type": "boolean"}, "maxAge": {"type": "string"}, "preload": {"type": "boolean"}}, "additionalProperties": false}
host.json
isEnabled
Indicates whether the hsts configuration should be applied
{"type": "boolean"}
host.json
excludedHosts
Defines the list of host names that will not add the HSTS header.
{"type": "array", "uniqueItems": true, "items": {"type": "string"}}
host.json
includeSubDomains
Indicates whether the includeSubDomain parameter of the Strict-Transport-Security header should be enabled.
{"type": "boolean"}
host.json
maxAge
Defines the max-age parameter of the Strict-Transport-Security header.
{"type": "string"}
host.json
preload
Indicates whether the preload parameter of the Strict-Transport-Security header should be enabled.
{"type": "boolean"}
host.json
customHeaders
Allows you to set custom headers in the HTTP response, ex. X-Content-Type-Options.
{"type": "object"}
host.json
queues-extension
Configuration settings for 'queue' triggers.
{"type": "object", "properties": {"maxPollingInterval": {"type": "integer", "default": 1000}, "batchSize": {"type": "integer", "maximum": 32, "minimum": 1, "default": 16}, "maxDequeueCount": {"type": "integer", "default": 5}, "newBatchThreshold": {"type": "integer"}, "visibilityTimeout": {"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:00:00"}}, "additionalProperties": false}
host.json
maxPollingInterval
The maximum interval in milliseconds between queue polls.
{"type": "integer", "default": 1000}
host.json
batchSize
The number of queue messages to retrieve and process in parallel (per job function).
{"type": "integer", "maximum": 32, "minimum": 1, "default": 16}
host.json
maxDequeueCount
The number of times to try processing a message before moving it to the poison queue
{"type": "integer", "default": 5}
host.json
newBatchThreshold
The threshold at which a new batch of messages will be fetched. The default is batchSize/2.
{"type": "integer"}
host.json
visibilityTimeout
The visibility timeout that will be applied to messages that fail processing.
{"pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:00:00"}
host.json
queues-extension-v2
Configuration settings for 'queue' triggers.
{"type": "object", "properties": {"maxPollingInterval": {"type": "string", "pattern": "^[0-9][0-9]:[0-9][0-9]:[0-9][0-9](?:\\.[0-9]+)?$", "default": "00:00:02"}, "visibilityTimeout": {"type": "string", "pattern": "^[0-9][0-9]:[0-9][0-9]:[0-9][0-9](?:\\.[0-9]+)?$", "default": "00:00:00"}, "batchSize": {"type": "integer", "maximum": 32, "minimum": 1, "default": 16}, "maxDequeueCount": {"type": "integer", "default": 5}, "newBatchThreshold": {"type": "integer"}, "messageEncoding": {"type": "string", "enum": ["base64", "none"]}}, "additionalProperties": false}
host.json
maxPollingInterval
The maximum interval between queue polls. Minimum is 00:00:00.100 (100 ms).
{"type": "string", "pattern": "^[0-9][0-9]:[0-9][0-9]:[0-9][0-9](?:\\.[0-9]+)?$", "default": "00:00:02"}
host.json
visibilityTimeout
The time interval between retries when processing of a message fails.
{"type": "string", "pattern": "^[0-9][0-9]:[0-9][0-9]:[0-9][0-9](?:\\.[0-9]+)?$", "default": "00:00:00"}
host.json
batchSize
The number of queue messages that the Functions runtime retrieves simultaneously and processes in parallel. When the number being processed gets down to the `newBatchThreshold`, the runtime gets another batch and starts processing those messages. So the maximum number of concurrent messages being processed per function is `batchSize` plus `newBatchThreshold`. This limit applies separately to each queue-triggered function.
{"type": "integer", "maximum": 32, "minimum": 1, "default": 16}
host.json
maxDequeueCount
The number of times to try processing a message before moving it to the poison queue
{"type": "integer", "default": 5}
host.json
newBatchThreshold
The threshold at which a new batch of messages will be fetched. The default is batchSize/2.
{"type": "integer"}
host.json
messageEncoding
This setting is only available in extension version 5.0.0 and higher. It represents the encoding format for messages.
{"type": "string", "enum": ["base64", "none"]}
host.json
durableTask-extension
Configuration settings for 'orchestration'/'activity' triggers.
{"type": "object", "properties": {"hubName": {"type": "string", "default": "DurableFunctionsHub"}, "storageProvider": {"type": "object", "properties": {"connectionStringName": {"type": "string"}, "controlQueueBatchSize": {"type": "integer", "default": 32}, "controlQueueBufferThreshold": {"type": "integer", "default": 256}, "controlQueueVisibilityTimeout": {"type": "string", "default": "00:05:00"}, "maxQueuePollingInterval": {"type": "string", "default": "00:00:30"}, "partitionCount": {"type": "integer", "default": 4}, "trackingStoreConnectionStringName": {"type": "string"}, "trackingStoreNamePrefix": {"type": "string"}, "useLegacyPartitionManagement": {"type": "boolean", "default": false}, "workItemQueueVisibilityTimeout": {"type": "string", "default": "00:05:00"}}, "additionalProperties": false}, "tracing": {"type": "object", "properties": {"traceInputsAndOutputs": {"type": "boolean", "default": false}, "traceReplayEvents": {"type": "boolean", "default": false}}, "additionalProperties": false}, "notifications": {"type": "object", "properties": {"eventGrid": {"type": "object", "properties": {"topicEndpoint": {"type": "string"}, "keySettingName": {"type": "string"}, "publishRetryCount": {"type": "integer", "default": 0}, "publishRetryInterval": {"type": "string", "default": "00:05:00"}, "publishEventTypes": {"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["Started", "Pending", "Completed", "Failed", "Terminated"]}}}, "additionalProperties": false}}, "additionalProperties": false}, "maxConcurrentActivityFunctions": {"type": "integer", "default": 10}, "maxConcurrentOrchestratorFunctions": {"type": "integer", "default": 10}, "extendedSessionsEnabled": {"type": "boolean"}, "extendedSessionIdleTimeoutInSeconds": {"type": "integer"}, "useAppLease": {"type": "boolean", "default": true}, "useGracefulShutdown": {"type": "boolean", "default": false}, "maxEntityOperationBatchSize": {"type": "integer", "default": 50}, "useTablePartitionManagement": {"type": "boolean", "default": false}}, "additionalProperties": false}
host.json
hubName
Alternate task hub names can be used to isolate multiple Durable Functions applications from each other, even if they're using the same storage backend.
{"type": "string", "default": "DurableFunctionsHub"}
host.json
controlQueueBatchSize
The number of messages to pull from the control queue at a time.
{"type": "integer", "default": 32}
host.json
controlQueueBufferThreshold
The number of control queue messages that can be buffered in memory at a time, at which point the dispatcher will wait before dequeuing any additional messages.
{"type": "integer", "default": 256}
host.json
controlQueueVisibilityTimeout
The visibility timeout of dequeued control queue messages.
{"type": "string", "default": "00:05:00"}
host.json
maxQueuePollingInterval
The maximum control and work-item queue polling interval in the hh:mm:ss format. Higher values can result in higher message processing latencies. Lower values can result in higher storage costs because of increased storage transactions.
{"type": "string", "default": "00:00:30"}
host.json
partitionCount
The partition count for the control queue. May be a positive integer between 1 and 16.
{"type": "integer", "default": 4}
host.json
trackingStoreConnectionStringName
The name of a connection string to use for the History and Instances tables. If not specified, the azureStorageConnectionStringName connection is used.
{"type": "string"}
host.json
trackingStoreNamePrefix
The prefix to use for the History and Instances tables when trackingStoreConnectionStringName is specified. If not set, the default prefix value will be DurableTask. If trackingStoreConnectionStringName is not specified, then the History and Instances tables will use the hubName value as their prefix, and any setting for trackingStoreNamePrefix will be ignored.
{"type": "string"}
host.json
useLegacyPartitionManagement
When set to false, uses a partition management algorithm that reduces the possibility of duplicate function execution when scaling out.
{"type": "boolean", "default": false}
host.json
workItemQueueVisibilityTimeout
The visibility timeout of dequeued work item queue messages.
{"type": "string", "default": "00:05:00"}
host.json
traceInputsAndOutputs
A value indicating whether to trace the inputs and outputs of function calls. The default behavior when tracing function execution events is to include the number of bytes in the serialized inputs and outputs for function calls. This behavior provides minimal information about what the inputs and outputs look like without bloating the logs or inadvertently exposing sensitive information. Setting this property to true causes the default function logging to log the entire contents of function inputs and outputs.
{"type": "boolean", "default": false}
host.json
traceReplayEvents
A value indicating whether to write orchestration replay events to Application Insights.
{"type": "boolean", "default": false}
host.json
topicEndpoint
The URL of an Azure Event Grid custom topic endpoint. When this property is set, orchestration life-cycle notification events are published to this endpoint. This property supports App Settings resolution.
{"type": "string"}
host.json
keySettingName
The name of the app setting containing the key used for authenticating with the Azure Event Grid custom topic at EventGridTopicEndpoint.
{"type": "string"}
host.json
publishRetryCount
The number of times to retry if publishing to the Event Grid Topic fails.
{"type": "integer", "default": 0}
host.json
publishRetryInterval
The Event Grid publishes retry interval in the hh:mm:ss format.
{"type": "string", "default": "00:05:00"}
host.json
publishEventTypes
A list of event types to publish to Event Grid. If not specified, all event types will be published.
{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["Started", "Pending", "Completed", "Failed", "Terminated"]}}
host.json
maxConcurrentActivityFunctions
The maximum number of activity functions that can be processed concurrently on a single host instance.
{"type": "integer", "default": 10}
host.json
maxConcurrentOrchestratorFunctions
The maximum number of orchestrator functions that can be processed concurrently on a single host instance.
{"type": "integer", "default": 10}
host.json
useAppLease
When set to true, apps will require acquiring an app-level blob lease before processing task hub messages.
{"type": "boolean", "default": true}
host.json
useGracefulShutdown
Enable gracefully shutting down to reduce the chance of host shutdowns failing in-process function executions.
{"type": "boolean", "default": false}
host.json
maxEntityOperationBatchSize
The maximum number of entity operations that are processed as a batch. If set to 1, batching is disabled, and each operation message is processed by a separate function invocation.
{"type": "integer", "default": 50}
host.json
cosmosDB-extension
Configuration settings for Azure Cosmos DB bindings and triggers.
{"type": "object", "properties": {"connectionMode": {"enum": ["Gateway", "Direct"], "default": "Gateway"}, "protocol": {"enum": ["Https", "Tcp"], "default": "Https"}}, "additionalProperties": false}
host.json
connectionMode
ConnectionMode to be used on the DocumentClients.
{"enum": ["Gateway", "Direct"], "default": "Gateway"}
host.json
protocol
Protocol to be used on the DocumentClients.
{"enum": ["Https", "Tcp"], "default": "Https"}
host.json
cosmosDB-extension-v2
Configuration settings for Azure Cosmos DB bindings and triggers.
{"type": "object", "properties": {"connectionMode": {"enum": ["Gateway", "Direct"], "default": "Gateway"}, "protocol": {"enum": ["Https", "Tcp"], "default": "Https"}, "leaseOptions": {"type": "object", "properties": {"leasePrefix": {"type": "string"}}, "additionalProperties": false}}, "additionalProperties": false}
host.json
connectionMode
ConnectionMode to be used on the DocumentClients.
{"enum": ["Gateway", "Direct"], "default": "Gateway"}
host.json
protocol
Protocol to be used on the DocumentClients.
{"enum": ["Https", "Tcp"], "default": "Https"}
host.json
leasePrefix
Lease prefix to use across all functions in an app.
{"type": "string"}
host.json
applicationInsights
Configuration settings for Application Insights logging.
{"type": "object", "properties": {"sampling": {"type": "object", "properties": {"isEnabled": {"type": "boolean", "default": true}, "maxTelemetryItemsPerSecond": {"type": "integer", "default": 5}}}}, "additionalProperties": false}
host.json
sampling
Configuration settings for Application Insights client-side adaptive sampling.
{"type": "object", "properties": {"isEnabled": {"type": "boolean", "default": true}, "maxTelemetryItemsPerSecond": {"type": "integer", "default": 5}}}
host.json
isEnabled
If true, client-side adaptive sampling is enabled.
{"type": "boolean", "default": true}
host.json
maxTelemetryItemsPerSecond
The target rate that the adaptive algorithm aims for on each instance
{"type": "integer", "default": 5}
host.json
id
The unique ID for this job host. Can be a lower case GUID with dashes removed
{"type": "string", "minLength": 1}
host.json
logger
Configuration settings for logging.
{"type": "object", "properties": {"defaultLevel": {"enum": ["Critical", "Debug", "Error", "Information", "None", "Trace", "Warning"], "default": "Information"}, "categoryLevels": {"type": "object", "additionalProperties": {"enum": ["Critical", "Debug", "Error", "Information", "None", "Trace", "Warning"]}}}}
host.json
defaultLevel
The default level for logging. If a category level is not specified, this value is used.
{"enum": ["Critical", "Debug", "Error", "Information", "None", "Trace", "Warning"], "default": "Information"}
host.json
categoryLevels
Log levels for specific categories.
{"type": "object", "additionalProperties": {"enum": ["Critical", "Debug", "Error", "Information", "None", "Trace", "Warning"]}}
host.json
tracing
Configuration settings for logging/tracing behavior.
{"type": "object", "properties": {"consoleLevel": {"enum": ["off", "error", "warning", "info", "verbose"], "default": "verbose"}, "fileLoggingMode": {"enum": ["never", "always", "debugOnly"], "default": "debugOnly"}}, "additionalProperties": false}
host.json
consoleLevel
The tracing level used for console logging.
{"enum": ["off", "error", "warning", "info", "verbose"], "default": "verbose"}
host.json
fileLoggingMode
Value determining what level of file logging is enabled.
{"enum": ["never", "always", "debugOnly"], "default": "debugOnly"}
host.json
serviceBus
Configuration settings for 'serviceBus' triggers.
{"type": "object", "properties": {"maxConcurrentCalls": {"type": "integer", "default": 16}, "prefetchCount": {"type": "integer"}, "autoRenewTimeout": {"type": "string", "pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:05:00"}, "autoComplete": {"type": "boolean", "default": true}}, "additionalProperties": false}
host.json
maxConcurrentCalls
The maximum number of concurrent calls to the callback the message pump should initiate.
{"type": "integer", "default": 16}
host.json
prefetchCount
The default PrefetchCount that will be used by the underlying MessageReceiver.
{"type": "integer"}
host.json
autoRenewTimeout
The maximum duration within which the Service Bus message lock will be renewed automatically.
{"type": "string", "pattern": "^(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d$", "default": "00:05:00"}
host.json
autoComplete
Specifies whether messages should be automatically completed after successful processing.
{"type": "boolean", "default": true}
host.json
eventHub
Configuration settings for 'eventHub' triggers.
{"type": "object", "properties": {"maxBatchSize": {"type": "integer"}, "prefetchCount": {"type": "integer"}, "batchCheckpointFrequency": {"type": "integer", "default": 1}}, "additionalProperties": false}
host.json
maxBatchSize
The maximum event count received per receive loop.
{"type": "integer"}
host.json
prefetchCount
The default PrefetchCount that will be used by the underlying EventProcessorHost.
{"type": "integer"}
host.json
batchCheckpointFrequency
The number of batches to process before creating an EventHub cursor checkpoint
{"type": "integer", "default": 1}
host.json
extensionBundle
Configuration settings for extension bundle
{"type": "object", "properties": {"id": {"type": "string", "default": "Microsoft.Azure.Functions.ExtensionBundle"}, "version": {"type": "string", "examples": ["[1.*, 2.0.0)", "[2.*, 3.0.0)"], "default": "[2.*, 3.0.0)"}}, "examples": [{"id": "Microsoft.Azure.Functions.ExtensionBundle", "version": "[2.*, 3.0.0)"}], "additionalProperties": false}
host.json
id
The id of the extension bundle
{"type": "string", "default": "Microsoft.Azure.Functions.ExtensionBundle"}
host.json
version
The version of the extension bundle.
{"type": "string", "examples": ["[1.*, 2.0.0)", "[2.*, 3.0.0)"], "default": "[2.*, 3.0.0)"}
host.json
languageWorker
Configuration settings for Language Workers.
{"type": "object", "properties": {"workersDirectory": {"type": "string"}}, "additionalProperties": false}
host.json
workersDirectory
Specifies full path of the directory for language workers
{"type": "string"}