schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
devfile.json
location
Zip project's source location address. Should be file path of the archive, e.g. file://$FILE_PATH
{"type": "string"}
devfile.json
uri
URI Reference of a parent devfile YAML file. It can be a full URL or a relative URI with the current devfile as the base URI.
{"type": "string"}
devfile.json
variables
Overrides of variables encapsulated in a parent devfile. Overriding is done according to K8S strategic merge patch standard rules.
{"type": "object", "additionalProperties": {"type": "string"}}
devfile.json
version
Specific stack/sample version to pull the parent devfile from, when using id in the parent reference. To specify `version`, `id` must be defined and used as the import reference source. `version` can be either a specific stack version, or `latest`. If no `version` specified, default version will be used.
{"type": "string", "pattern": "^(latest)|(([1-9])\\.([0-9]+)\\.([0-9]+)(\\-[0-9a-z-]+(\\.[0-9a-z-]+)*)?(\\+[0-9A-Za-z-]+(\\.[0-9A-Za-z-]+)*)?)$"}
devfile.json
projects
Projects worked on in the devworkspace, containing names and sources locations
{"type": "array", "items": {"type": "object", "required": ["name"], "oneOf": [{"required": ["git"]}, {"required": ["zip"]}], "properties": {"attributes": {"type": "object", "additionalProperties": true}, "clonePath": {"type": "string"}, "git": {"type": "object", "required": ["remotes"], "properties": {"checkoutFrom": {"type": "object", "properties": {"remote": {"type": "string"}, "revision": {"type": "string"}}, "additionalProperties": false}, "remotes": {"type": "object", "additionalProperties": {"type": "string"}}}, "additionalProperties": false}, "name": {"type": "string", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"}, "zip": {"type": "object", "properties": {"location": {"type": "string"}}, "additionalProperties": false}}, "additionalProperties": false}}
devfile.json
attributes
Map of implementation-dependant free-form YAML attributes.
{"type": "object", "additionalProperties": true}
devfile.json
clonePath
Path relative to the root of the projects to which this project should be cloned into. This is a unix-style relative path (i.e. uses forward slashes). The path is invalid if it is absolute or tries to escape the project root through the usage of '..'. If not specified, defaults to the project name.
{"type": "string"}
devfile.json
git
Project's Git source
{"type": "object", "required": ["remotes"], "properties": {"checkoutFrom": {"type": "object", "properties": {"remote": {"type": "string"}, "revision": {"type": "string"}}, "additionalProperties": false}, "remotes": {"type": "object", "additionalProperties": {"type": "string"}}}, "additionalProperties": false}
devfile.json
checkoutFrom
Defines from what the project should be checked out. Required if there are more than one remote configured
{"type": "object", "properties": {"remote": {"type": "string"}, "revision": {"type": "string"}}, "additionalProperties": false}
devfile.json
remote
The remote name should be used as init. Required if there are more than one remote configured
{"type": "string"}
devfile.json
revision
The revision to checkout from. Should be branch name, tag or commit id. Default branch is used if missing or specified revision is not found.
{"type": "string"}
devfile.json
remotes
The remotes map which should be initialized in the git project. Projects must have at least one remote configured while StarterProjects & Image Component's Git source can only have at most one remote configured.
{"type": "object", "additionalProperties": {"type": "string"}}
devfile.json
name
Project name
{"type": "string", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"}
devfile.json
zip
Project's Zip source
{"type": "object", "properties": {"location": {"type": "string"}}, "additionalProperties": false}
devfile.json
location
Zip project's source location address. Should be file path of the archive, e.g. file://$FILE_PATH
{"type": "string"}
devfile.json
schemaVersion
Devfile schema version
{"type": "string", "pattern": "^([2-9])\\.([0-9]+)\\.([0-9]+)(\\-[0-9a-z-]+(\\.[0-9a-z-]+)*)?(\\+[0-9A-Za-z-]+(\\.[0-9A-Za-z-]+)*)?$"}
devfile.json
starterProjects
StarterProjects is a project that can be used as a starting point when bootstrapping new projects
{"type": "array", "items": {"type": "object", "required": ["name"], "oneOf": [{"required": ["git"]}, {"required": ["zip"]}], "properties": {"attributes": {"type": "object", "additionalProperties": true}, "git": {"type": "object", "required": ["remotes"], "properties": {"checkoutFrom": {"type": "object", "properties": {"remote": {"type": "string"}, "revision": {"type": "string"}}, "additionalProperties": false}, "remotes": {"type": "object", "additionalProperties": {"type": "string"}}}, "additionalProperties": false}, "name": {"type": "string", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"}, "subDir": {"type": "string"}, "zip": {"type": "object", "properties": {"location": {"type": "string"}}, "additionalProperties": false}}, "additionalProperties": false}}
devfile.json
attributes
Map of implementation-dependant free-form YAML attributes.
{"type": "object", "additionalProperties": true}
devfile.json
description
Description of a starter project
{"type": "string"}
devfile.json
git
Project's Git source
{"type": "object", "required": ["remotes"], "properties": {"checkoutFrom": {"type": "object", "properties": {"remote": {"type": "string"}, "revision": {"type": "string"}}, "additionalProperties": false}, "remotes": {"type": "object", "additionalProperties": {"type": "string"}}}, "additionalProperties": false}
devfile.json
checkoutFrom
Defines from what the project should be checked out. Required if there are more than one remote configured
{"type": "object", "properties": {"remote": {"type": "string"}, "revision": {"type": "string"}}, "additionalProperties": false}
devfile.json
remote
The remote name should be used as init. Required if there are more than one remote configured
{"type": "string"}
devfile.json
revision
The revision to checkout from. Should be branch name, tag or commit id. Default branch is used if missing or specified revision is not found.
{"type": "string"}
devfile.json
remotes
The remotes map which should be initialized in the git project. Projects must have at least one remote configured while StarterProjects & Image Component's Git source can only have at most one remote configured.
{"type": "object", "additionalProperties": {"type": "string"}}
devfile.json
name
Project name
{"type": "string", "maxLength": 63, "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"}
devfile.json
subDir
Sub-directory from a starter project to be used as root for starter project.
{"type": "string"}
devfile.json
zip
Project's Zip source
{"type": "object", "properties": {"location": {"type": "string"}}, "additionalProperties": false}
devfile.json
location
Zip project's source location address. Should be file path of the archive, e.g. file://$FILE_PATH
{"type": "string"}
devfile.json
variables
Map of key-value variables used for string replacement in the devfile. Values can be referenced via {{variable-key}} to replace the corresponding value in string fields in the devfile. Replacement cannot be used for - schemaVersion, metadata, parent source - element identifiers, e.g. command id, component name, endpoint name, project name - references to identifiers, e.g. in events, a command's component, container's volume mount name - string enums, e.g. command group kind, endpoint exposure
{"type": "object", "additionalProperties": {"type": "string"}}
vss-extension.json
uri
Valid URI
{"type": "string", "format": "uri"}
vss-extension.json
contribution_definition
A contribution that is part of this extension
{"type": "object", "required": ["id", "type", "targets"], "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "targets": {"type": "array", "items": {"type": "string"}}, "restrictedTo": {"type": "array", "items": {"type": "string", "enum": ["member", "public", "anonymous"]}}, "properties": {"type": "object"}}}
vss-extension.json
id
A reference ID (string) for the contribution. Each contribution's ID must be unique within an extension.
{"type": "string"}
vss-extension.json
type
The ID of the contributionType of this contribution.
{"type": "string"}
vss-extension.json
description
(Optional) A string describing what the contribution is providing.
{"type": "string"}
vss-extension.json
targets
An array of contribution IDs that the contribution is targeting (contributing to).
{"type": "array", "items": {"type": "string"}}
vss-extension.json
items
Contribution IDs that the contribution is targeting.
{"type": "string"}
vss-extension.json
restrictedTo
Valid Values: https://docs.microsoft.com/en-us/azure/devops/extend/develop/public-project?view=azure-devops#contribution-visibility
{"type": "array", "items": {"type": "string", "enum": ["member", "public", "anonymous"]}}
vss-extension.json
items
Valid Values: https://docs.microsoft.com/en-us/azure/devops/extend/develop/public-project?view=azure-devops#contribution-visibility
{"type": "string", "enum": ["member", "public", "anonymous"]}
vss-extension.json
properties
(Optional) An object that includes properties for the contribution as defined in the contribution type.
{"type": "object"}
vss-extension.json
contributionType_definition
A contribution Type that is part of this extension
{"type": "object", "required": ["id", "name"], "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "properties": {"type": "array", "items": {"type": "object", "required": ["type"], "properties": {"type": {"type": "string", "enum": ["string", "uri", "guid", "boolean", "integer", "double", "dateTime", "array", "object"]}, "required": {"type": "boolean", "default": false}}}}}}
vss-extension.json
id
A reference ID (string) for the contribution type. Each contribution type's ID must be unique within an extension.
{"type": "string"}
vss-extension.json
name
The friendly name of the contribution type.
{"type": "string"}
vss-extension.json
description
(Optional) A string describing in more detail what the contribution type is for.
{"type": "string"}
vss-extension.json
properties
(Optional) A dictionary that maps property names to property descriptions. These properties describe the required and optional properties that can be used by contributions of this type.
{"type": "array", "items": {"type": "object", "required": ["type"], "properties": {"type": {"type": "string", "enum": ["string", "uri", "guid", "boolean", "integer", "double", "dateTime", "array", "object"]}, "required": {"type": "boolean", "default": false}}}}
vss-extension.json
items
Information about the contributionType Property
{"type": "object", "required": ["type"], "properties": {"type": {"type": "string", "enum": ["string", "uri", "guid", "boolean", "integer", "double", "dateTime", "array", "object"]}, "required": {"type": "boolean", "default": false}}}
vss-extension.json
type
The type of value that the property can have.
{"type": "string", "enum": ["string", "uri", "guid", "boolean", "integer", "double", "dateTime", "array", "object"]}
vss-extension.json
required
(Optional) A boolean value which if true indicates that the property is required for all contributions of this type.
{"type": "boolean", "default": false}
vss-extension.json
description
(Optional) A string describing what the property is used for.
{"type": "string"}
vss-extension.json
manifestVersion
This should be 1.
{"type": "integer", "default": 1, "enum": [1]}
vss-extension.json
id
This is a string that must be unique among extensions from the same publisher.
{"type": "string", "allOf": [{}]}
vss-extension.json
version
Should be in the format major.minor.patch, for example 0.1.2 or 1.0.0. You can also add a fourth number for the following format: 0.1.2.3
{"type": "string", "examples": ["1.0.0", "1.0.0.0"], "pattern": "^\\d+\\.\\d+\\.\\d+(\\.\\d+)?$"}
vss-extension.json
publisher
This identifier must match the identifier the extension is published under.
{"type": "string", "pattern": "^[a-zA-Z0-9][a-zA-Z0-9-]+$"}
vss-extension.json
categories
At least one category must be provided and there is no limit to how many categories you may include.
{"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["Azure Repos", "Azure Boards", "Azure Pipelines", "Azure Test Plans", "Azure Artifacts"]}}
vss-extension.json
id
Id of the product or service which your integration/extension should support
{"type": "string", "enum": ["Microsoft.VisualStudio.Services", "Microsoft.TeamFoundation.Server", "Microsoft.VisualStudio.Services.Integration", "Microsoft.TeamFoundation.Server.Integration", "Microsoft.VisualStudio.Services.Cloud", "Microsoft.VisualStudio.Services.Cloud.Integration"]}
vss-extension.json
version
Some installation target identifiers, like and , support an optional version range. This further clarifies the supported releases the extension or integration is supported on.Microsoft.TeamFoundation.ServerMicrosoft.TeamFoundation.Server.Integration
{"type": "string", "examples": ["[17.0,)", "[15.0,)", "[14.0,)", "[12.0,)", "[11.0,)", "[10.0,)", "[12.0,15.0)", "[14.3,15.1]"], "pattern": "^(\\[|\\()\\d{2}\\.\\d,(\\d{2}\\.\\d)?(\\)|\\])$"}
vss-extension.json
scopes
An array of authorization scopes (strings) listing permissions required by your extension.
{"type": "array", "items": {"type": "string", "enum": ["vso.acquisition_write", "vso.agentpools", "vso.agentpools_listen", "vso.agentpools_manage", "vso.analytics", "vso.auditlog", "vso.base", "vso.build", "vso.build_execute", "vso.build_fork", "vso.code", "vso.code_full", "vso.code_manage", "vso.code_status", "vso.code_write", "vso.commerce.write", "vso.connected_server", "vso.dashboards", "vso.dashboards_manage", "vso.entitlements", "vso.extension", "vso.extension.data", "vso.extension.data_write", "vso.extension.default", "vso.extension_manage", "vso.features", "vso.features_write", "vso.gallery", "vso.gallery_acquire", "vso.gallery_manage", "vso.gallery_publish", "vso.governance_manage", "vso.graph", "vso.graph_manage", "vso.graph_write", "vso.hooks", "vso.hooks_interact", "vso.hooks_write", "vso.identity", "vso.identity_manage", "vso.licensing", "vso.loadtest", "vso.loadtest_write", "vso.machinegroup_manage", "vso.memberentitlementmanagement", "vso.memberentitlementmanagement_write", "vso.notification", "vso.notification_diagnostics", "vso.notification_manage", "vso.notification_publish", "vso.notification_write", "vso.packaging", "vso.packaging_manage", "vso.packaging_write", "vso.profile", "vso.profile_write", "vso.project", "vso.project_manage", "vso.project_write", "vso.release", "vso.release_execute", "vso.release_logs", "vso.release_manage", "vso.security_manage", "vso.serviceendpoint", "vso.serviceendpoint_manage", "vso.serviceendpoint_query", "vso.settings", "vso.settings_write", "vso.symbols", "vso.symbols_manage", "vso.symbols_write", "vso.taskgroups_manage", "vso.taskgroups_read", "vso.taskgroups_write", "vso.test", "vso.test_write", "vso.tokenadministration", "vso.tokens", "vso.variablegroups_manage", "vso.variablegroups_read", "vso.variablegroups_write", "vso.wiki", "vso.wiki_write", "vso.work", "vso.work_full", "vso.work_write"]}}
vss-extension.json
items
Authorization Scope.
{"type": "string", "enum": ["vso.acquisition_write", "vso.agentpools", "vso.agentpools_listen", "vso.agentpools_manage", "vso.analytics", "vso.auditlog", "vso.base", "vso.build", "vso.build_execute", "vso.build_fork", "vso.code", "vso.code_full", "vso.code_manage", "vso.code_status", "vso.code_write", "vso.commerce.write", "vso.connected_server", "vso.dashboards", "vso.dashboards_manage", "vso.entitlements", "vso.extension", "vso.extension.data", "vso.extension.data_write", "vso.extension.default", "vso.extension_manage", "vso.features", "vso.features_write", "vso.gallery", "vso.gallery_acquire", "vso.gallery_manage", "vso.gallery_publish", "vso.governance_manage", "vso.graph", "vso.graph_manage", "vso.graph_write", "vso.hooks", "vso.hooks_interact", "vso.hooks_write", "vso.identity", "vso.identity_manage", "vso.licensing", "vso.loadtest", "vso.loadtest_write", "vso.machinegroup_manage", "vso.memberentitlementmanagement", "vso.memberentitlementmanagement_write", "vso.notification", "vso.notification_diagnostics", "vso.notification_manage", "vso.notification_publish", "vso.notification_write", "vso.packaging", "vso.packaging_manage", "vso.packaging_write", "vso.profile", "vso.profile_write", "vso.project", "vso.project_manage", "vso.project_write", "vso.release", "vso.release_execute", "vso.release_logs", "vso.release_manage", "vso.security_manage", "vso.serviceendpoint", "vso.serviceendpoint_manage", "vso.serviceendpoint_query", "vso.settings", "vso.settings_write", "vso.symbols", "vso.symbols_manage", "vso.symbols_write", "vso.taskgroups_manage", "vso.taskgroups_read", "vso.taskgroups_write", "vso.test", "vso.test_write", "vso.tokenadministration", "vso.tokens", "vso.variablegroups_manage", "vso.variablegroups_read", "vso.variablegroups_write", "vso.wiki", "vso.wiki_write", "vso.work", "vso.work_full", "vso.work_write"]}
vss-extension.json
demands
An array of demands (strings) listing the capabilities required by your extension.
{"type": "array", "items": {"type": "string", "allOf": [{}]}}
vss-extension.json
items
Demand Scope.
{"type": "string", "allOf": [{}]}
vss-extension.json
baseUri
(Optional) base URL for all relative URLs specified by the extension's contributions.
{"type": "string", "format": "uri"}
vss-extension.json
icons
Dictionary of icons representing the extension.
{"type": "object", "required": ["default"], "properties": {"default": {"type": "string", "format": "uri-reference"}}}
vss-extension.json
default
The value must be the path to the icon file in the extension
{"type": "string", "format": "uri-reference"}
vss-extension.json
tags
Array of string tags to help users find your extension.
{"type": "array", "minItems": 1, "items": {"type": "string", "examples": ["Extension", "Marketplace", "Publish", "Package", "Install", "Continuous Integration", "Continuous Delivery", "Build", "Release", "Azure Pipelines", "Azure DevOps Extensions", "Visual Studio Extensions", "__BYOLENFORCED", "__DoNotDownload"]}}
vss-extension.json
items
A tag to help users find your extension.
{"type": "string", "examples": ["Extension", "Marketplace", "Publish", "Package", "Install", "Continuous Integration", "Continuous Delivery", "Build", "Release", "Azure Pipelines", "Azure DevOps Extensions", "Visual Studio Extensions", "__BYOLENFORCED", "__DoNotDownload"]}
vss-extension.json
galleryFlags
Array of string tags to classify your extension within the Visual Studio Marketplace
{"type": "array", "minItems": 1, "items": {"type": "string", "enum": ["Paid", "Preview", "Public"]}}
vss-extension.json
items
A string tag to classify your extension within the Visual Studio Marketplace
{"type": "string", "enum": ["Paid", "Preview", "Public"]}
vss-extension.json
licensing
More information: https://docs.microsoft.com/en-us/azure/devops/extend/develop/manifest?view=azure-devops#mark-an-extension-as-paid
{"type": "object"}
vss-extension.json
galleryproperties
More information: https://docs.microsoft.com/en-us/azure/devops/extend/develop/manifest?view=azure-devops#mark-an-extension-as-paid
{"type": "object"}
vss-extension.json
screenshots
Array of images that could not be included in your **content*.
{"type": "array", "items": {"type": "object", "required": ["path"], "properties": {"path": {"type": "string", "format": "uri-reference"}}}}
vss-extension.json
items
Each image should be 1366x768 pixels.
{"type": "object", "required": ["path"], "properties": {"path": {"type": "string", "format": "uri-reference"}}}
vss-extension.json
path
The path of each item is the path to the file in the extension.
{"type": "string", "format": "uri-reference"}
vss-extension.json
details
GitHub Flavored Markdown file which describes the details of the Extension
{"allOf": [{}]}
vss-extension.json
license
GitHub Flavored Markdown file which describes the license information of the Extension
{"allOf": [{}]}
vss-extension.json
pricing
GitHub Flavored Markdown file which describes the pricing information of the Extension
{"allOf": [{}]}
vss-extension.json
getstarted
First steps, how to setup or use.
{"allOf": [{}]}
vss-extension.json
learn
Deeper content to help users better understand your extension or service.
{"allOf": [{}]}
vss-extension.json
license
End user license agreement.
{"allOf": [{}]}
vss-extension.json
privacypolicy
Privacy policy for an extension.
{"allOf": [{}]}
vss-extension.json
support
Get help and support for an extension.
{"allOf": [{}]}
vss-extension.json
badges
Array of links to external metadata badges like TravisCI, Appveyor etc from the approved badges sites.
{"type": "array", "items": {"type": "object", "required": ["href", "uri"], "properties": {"href": {"type": "string", "format": "uri"}, "uri": {"type": "string", "format": "uri"}}}}
vss-extension.json
href
Link the user navigates to when clicking the badge.
{"type": "string", "format": "uri"}
vss-extension.json
uri
The absolute URL of the badge image to be displayed.
{"type": "string", "format": "uri"}
vss-extension.json
branding
Dictionary of brand-related properties.
{"type": "object", "required": ["color"], "properties": {"color": {"type": "string"}, "theme": {"type": "string", "enum": ["light", "dark"]}}}
vss-extension.json
color
Primary color of the extension or publisher; can be a hex (#ff00ff), RGB (rgb(100,200,50)), or supported HTML color names (blue).
{"type": "string"}
vss-extension.json
theme
Complements the color; use dark for dark branding colors, or light for lighter branding colors.
{"type": "string", "enum": ["light", "dark"]}
vss-extension.json
public
Set to true to make this extension public in the Visual Studio Market Place
{"type": "boolean", "default": false}
vss-extension.json
items
A file you wish to include in your extension. Both folders and individual files are acceptable
{"type": "object", "required": ["path"], "properties": {"path": {"type": "string", "format": "uri-reference"}, "addressable": {"type": "boolean", "default": false}, "packagePath": {"type": "string", "format": "uri-reference"}}}
vss-extension.json
path
Path of resource, root directory is where your manifest file is located
{"type": "string", "format": "uri-reference"}
vss-extension.json
addressable
Set to true if you want your file to be URL-addressable
{"type": "boolean", "default": false}
vss-extension.json
packagePath
Places your resource from disk to the specified value when packaged
{"type": "string", "format": "uri-reference"}
hugo.json
.
The output format options https://gohugo.io/templates/output-formats/#configure-output-formats
{"type": "object", "properties": {"name": {"type": "string", "minLength": 1}, "mediaType": {"type": "string", "enum": ["application/javascript", "application/json", "application/manifest+json", "application/octet-stream", "application/pdf", "application/rss+xml", "application/toml", "application/typescript", "application/xml", "application/yaml", "font/otf", "font/ttf", "image/bmp", "image/gif", "image/jpeg", "image/png", "image/svg+xml", "image/webp", "text/calendar", "text/css", "text/csv", "text/html", "text/jsx", "text/plain", "text/tsx", "text/x-sass", "text/x-scss", "video/3gpp", "video/mp4", "video/mpeg", "video/ogg", "video/webm", "video/x-msvideo"]}, "path": {"type": "string", "minLength": 1}, "baseName": {"type": "string", "default": "index"}, "rel": {"type": "string", "default": "alternate"}, "protocol": {"type": "string"}, "isPlainText": {"type": "boolean", "default": false}, "isHTML": {"type": "boolean", "default": false}, "noUgly": {"type": "boolean", "default": false}, "notAlternative": {"type": "boolean", "default": false}, "permalinkable": {"type": "boolean", "default": false}, "weight": {"type": "integer"}}, "additionalProperties": false}
hugo.json
name
The identifier https://gohugo.io/templates/output-formats/#configure-output-formats
{"type": "string", "minLength": 1}
hugo.json
mediaType
The media type https://gohugo.io/templates/output-formats/#configure-output-formats
{"type": "string", "enum": ["application/javascript", "application/json", "application/manifest+json", "application/octet-stream", "application/pdf", "application/rss+xml", "application/toml", "application/typescript", "application/xml", "application/yaml", "font/otf", "font/ttf", "image/bmp", "image/gif", "image/jpeg", "image/png", "image/svg+xml", "image/webp", "text/calendar", "text/css", "text/csv", "text/html", "text/jsx", "text/plain", "text/tsx", "text/x-sass", "text/x-scss", "video/3gpp", "video/mp4", "video/mpeg", "video/ogg", "video/webm", "video/x-msvideo"]}
hugo.json
path
The path https://gohugo.io/templates/output-formats/#configure-output-formats
{"type": "string", "minLength": 1}
hugo.json
baseName
The base filename for the list filenames https://gohugo.io/templates/output-formats/#configure-output-formats
{"type": "string", "default": "index"}
hugo.json
rel
ERROR: type should be string, got "\nhttps://gohugo.io/templates/output-formats/#configure-output-formats"
{"type": "string", "default": "alternate"}
hugo.json
protocol
The replacement for `http://` or `https://` in `baseURL` https://gohugo.io/templates/output-formats/#configure-output-formats
{"type": "string"}
hugo.json
isPlainText
Enable/disable Go's plain text templates parser for the templates https://gohugo.io/templates/output-formats/#configure-output-formats
{"type": "boolean", "default": false}
hugo.json
isHTML
ERROR: type should be string, got "\nhttps://gohugo.io/templates/output-formats/#configure-output-formats"
{"type": "boolean", "default": false}
hugo.json
noUgly
Enable/disable adding file extensions to urls https://gohugo.io/templates/output-formats/#configure-output-formats
{"type": "boolean", "default": false}