diff --git a/news/changelog-1.10.md b/news/changelog-1.10.md index c4908d9192e..407a2bd0edd 100644 --- a/news/changelog-1.10.md +++ b/news/changelog-1.10.md @@ -22,6 +22,10 @@ All changes included in 1.10: - ([#14530](https://github.com/quarto-dev/quarto-cli/pull/14530)): Add `quarto.*` Pandoc template variable namespace. `format.language` is now exposed as `$quarto.language.$` in custom Pandoc templates via the defaults-file `variables:` section, with no leakage into rendered output. +### `html` + +- ([#14601](https://github.com/quarto-dev/quarto-cli/pull/PR)): Add [BeBlob](https://gitlab.com/antonbelev/beblob) as a `comments` provider for GitLab-backed comments (the GitLab counterpart to `utterances`). Supports self-managed GitLab via `gitlab-url` and a self-hosted client bundle via `client-url`/`dev-mode`. + ### `pdf` - ([#13588](https://github.com/quarto-dev/quarto-cli/issues/13588)): Fix Lua error when rendering PDF with `reference-location: margin` and a footnote alongside a figure with `fig-cap`. (author: @mcanouil) diff --git a/src/core/schema/zod-types-from-schema.ts b/src/core/schema/zod-types-from-schema.ts index b4afc6ab132..6d3247f6092 100644 --- a/src/core/schema/zod-types-from-schema.ts +++ b/src/core/schema/zod-types-from-schema.ts @@ -409,7 +409,7 @@ ${zodObject} if (Array.isArray(required)) { baseObj = `${baseObj}.partial().required({${ required.map((key: string) => { - return `${key}: true`; + return `${yamlToTypeScriptKey(key)}: true`; }).join(", ") }})`; } else if (required === undefined) { diff --git a/src/format/html/format-html-shared.ts b/src/format/html/format-html-shared.ts index dbba131dc03..5889442703b 100644 --- a/src/format/html/format-html-shared.ts +++ b/src/format/html/format-html-shared.ts @@ -56,6 +56,7 @@ export const kComments = "comments"; export const kHypothesis = "hypothesis"; export const kUtterances = "utterances"; export const kGiscus = "giscus"; +export const kBeblob = "beblob"; export const kAxe = "axe"; export const kGiscusRepoId = "repo-id"; diff --git a/src/format/html/format-html.ts b/src/format/html/format-html.ts index 942b74b66cf..188827f1517 100644 --- a/src/format/html/format-html.ts +++ b/src/format/html/format-html.ts @@ -69,6 +69,7 @@ import { createCodeCopyButton, kAnchorSections, kAxe, + kBeblob, kBootstrapDependencyName, kCitationsHover, kCodeAnnotations, @@ -296,6 +297,9 @@ export async function htmlFormatExtras( [kGiscus]: (format.metadata[kComments] as Record)[kGiscus] || false, + [kBeblob]: + (format.metadata[kComments] as Record)[kBeblob] || + false, } : {}; options.codeLink = format.metadata[kCodeLink] || false; @@ -565,6 +569,36 @@ export async function htmlFormatExtras( includeAfterBody.push(utterancesAfterBody); } + // beblob (GitLab-backed comments) + if (options.beblob) { + if (typeof (options.beblob) !== "object") { + throw new Error( + "Invalid beblob configuration (must provide client-id, redirect-uri and project-name)", + ); + } + const beblob = options.beblob as Record; + for (const key of ["client-id", "redirect-uri", "project-name"]) { + if (!beblob[key]) { + throw new Error(`Invalid beblob configuration (must provide ${key})`); + } + } + beblob["issue-mapping-strategy"] = beblob["issue-mapping-strategy"] || + "pageTitle"; + beblob["gitlab-url"] = beblob["gitlab-url"] || "https://gitlab.com"; + beblob["theme"] = beblob["theme"] || "light"; + beblob["version"] = beblob["version"] || "2.1.0"; + beblob["dev-mode"] = beblob["dev-mode"] ?? false; + const beblobAfterBody = temp.createFile({ suffix: "-beblob.html" }); + Deno.writeTextFileSync( + beblobAfterBody, + renderEjs( + formatResourcePath("html", join("beblob", "beblob.ejs")), + { beblob }, + ), + ); + includeAfterBody.push(beblobAfterBody); + } + // giscus if (options.giscus) { const giscus = options.giscus as Record; diff --git a/src/resources/editor/tools/vs-code.mjs b/src/resources/editor/tools/vs-code.mjs index 17373e2fab5..e3b735371a5 100644 --- a/src/resources/editor/tools/vs-code.mjs +++ b/src/resources/editor/tools/vs-code.mjs @@ -8819,6 +8819,85 @@ var require_yaml_intelligence_resources = __commonJS({ giscus: { ref: "giscus-configuration" }, + beblob: { + object: { + closed: true, + properties: { + "client-id": { + string: { + description: "The GitLab OAuth Application ID used to authenticate commenters." + } + }, + "redirect-uri": { + string: { + description: "The redirect URI registered for the GitLab OAuth Application\n(must match the value configured in GitLab, typically your site URL).\n" + } + }, + "project-name": { + string: { + description: "The name of the GitLab project used to store comments as issues\n(e.g. `my-project`). This is the project's name as shown in GitLab \u2014\nBeBlob looks the project up by searching GitLab for this name \u2014 not\nthe full `namespace/path`.\n" + } + }, + "issue-mapping-strategy": { + string: { + description: { + short: "How pages are mapped to GitLab issues.", + long: "How pages are mapped to GitLab issues\n(`url`, `pageTitle`, or `issueId`).\n" + }, + completions: [ + "url", + "pageTitle", + "issueId" + ] + } + }, + "issue-id": { + string: { + description: "The GitLab issue id to use. Required only when `issue-mapping-strategy` is `issueId`." + } + }, + "gitlab-url": { + string: { + description: "The base URL of the GitLab instance (use this for self-managed GitLab). Defaults to `https://gitlab.com`." + } + }, + theme: { + string: { + description: { + short: "The theme that should be used for BeBlob.", + long: "The theme that should be used for BeBlob\n(`dark`, `white`, `light`, or `classic`).\n" + }, + completions: [ + "dark", + "white", + "light", + "classic" + ] + } + }, + "dev-mode": { + boolean: { + description: "Load the BeBlob assets locally from your own server instead of from the CDN." + } + }, + version: { + string: { + description: "The BeBlob version to load from the CDN." + } + }, + "client-url": { + string: { + description: "Override the default BeBlob client url with a custom client url (e.g. a self-hosted bundle)." + } + } + }, + required: [ + "client-id", + "redirect-uri", + "project-name" + ] + } + }, hypothesis: { anyOf: [ "boolean", @@ -21730,6 +21809,22 @@ var require_yaml_intelligence_resources = __commonJS({ short: "How posts should be mapped to Github issues", long: "How posts should be mapped to Github issues (pathname,\nurl, title or og:title)" }, + "The GitLab OAuth Application ID used to authenticate commenters.", + "The redirect URI registered for the GitLab OAuth Application (must\nmatch the value configured in GitLab, typically your site URL).", + "The GitLab project (e.g. group/project) that will be\nused to store comments as issues.", + { + short: "How pages are mapped to GitLab issues.", + long: "How pages are mapped to GitLab issues (url,\npageTitle, or issueId)." + }, + "The GitLab issue id to use. Required only when\nissue-mapping-strategy is issueId.", + "The base URL of the GitLab instance (use this for self-managed\nGitLab). Defaults to https://gitlab.com.", + { + short: "The theme that should be used for BeBlob.", + long: "The theme that should be used for BeBlob (dark,\nwhite, light, or classic)." + }, + "Load the BeBlob assets locally from your own server instead of from\nthe CDN.", + "The BeBlob version to load from the CDN.", + "Override the default BeBlob client url with a custom client url\n(e.g. a self-hosted bundle).", "Override the default hypothesis client url with a custom client\nurl.", "Controls whether the sidebar opens automatically on startup.", "Controls whether the in-document highlights are shown by default\n(always, whenSidebarOpen or\nnever)", @@ -21838,9 +21933,9 @@ var require_yaml_intelligence_resources = __commonJS({ short: "Name that should be displayed for the overall site", long: "Name that should be displayed for the overall site. If not explicitly\nprovided in the open-graph metadata, Quarto will use the\nwebsite or book title by default." }, - "Footer left content", - "Footer right content", - "Footer center content", + "Footer left content. Supports markdown formatting.", + "Footer right content. Supports markdown formatting.", + "Footer center content. Supports markdown formatting.", "Footer border (true, false, or a border\ncolor)", "Footer background color", "Footer foreground color", @@ -21885,7 +21980,7 @@ var require_yaml_intelligence_resources = __commonJS({ }, "Path to a file containing the Plausible Analytics script snippet", "Provides an announcement displayed at the top of the page.", - "The content of the announcement", + "The content of the announcement. Supports markdown formatting.", "Whether this announcement may be dismissed by the user.", { short: "The icon to display in the announcement", @@ -21943,7 +22038,7 @@ var require_yaml_intelligence_resources = __commonJS({ "Field that contains the section of index entries", "Additional parameters to pass when executing a search", "Top navigation options", - "The navbar title. Uses the project title if none is specified.", + "The navbar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed to the left of the\ntitle.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -21959,7 +22054,7 @@ var require_yaml_intelligence_resources = __commonJS({ "Collapse tools into the navbar menu when the display becomes\nnarrow.", "Side navigation options", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -21976,7 +22071,7 @@ var require_yaml_intelligence_resources = __commonJS({ "Markdown to place above sidebar content (text or file path)", "Markdown to place below sidebar content (text or file path)", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -22052,7 +22147,7 @@ var require_yaml_intelligence_resources = __commonJS({ }, "Path to a file containing the Plausible Analytics script snippet", "Provides an announcement displayed at the top of the page.", - "The content of the announcement", + "The content of the announcement. Supports markdown formatting.", "Whether this announcement may be dismissed by the user.", { short: "The icon to display in the announcement", @@ -22110,7 +22205,7 @@ var require_yaml_intelligence_resources = __commonJS({ "Field that contains the section of index entries", "Additional parameters to pass when executing a search", "Top navigation options", - "The navbar title. Uses the project title if none is specified.", + "The navbar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed to the left of the\ntitle.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -22126,7 +22221,7 @@ var require_yaml_intelligence_resources = __commonJS({ "Collapse tools into the navbar menu when the display becomes\nnarrow.", "Side navigation options", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -22143,7 +22238,7 @@ var require_yaml_intelligence_resources = __commonJS({ "Markdown to place above sidebar content (text or file path)", "Markdown to place below sidebar content (text or file path)", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -24479,7 +24574,7 @@ var require_yaml_intelligence_resources = __commonJS({ }, "Path to a file containing the Plausible Analytics script snippet", "Provides an announcement displayed at the top of the page.", - "The content of the announcement", + "The content of the announcement. Supports markdown formatting.", "Whether this announcement may be dismissed by the user.", { short: "The icon to display in the announcement", @@ -24537,7 +24632,7 @@ var require_yaml_intelligence_resources = __commonJS({ "Field that contains the section of index entries", "Additional parameters to pass when executing a search", "Top navigation options", - "The navbar title. Uses the project title if none is specified.", + "The navbar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed to the left of the\ntitle.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -24553,7 +24648,7 @@ var require_yaml_intelligence_resources = __commonJS({ "Collapse tools into the navbar menu when the display becomes\nnarrow.", "Side navigation options", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -24570,7 +24665,7 @@ var require_yaml_intelligence_resources = __commonJS({ "Markdown to place above sidebar content (text or file path)", "Markdown to place below sidebar content (text or file path)", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -24850,7 +24945,7 @@ var require_yaml_intelligence_resources = __commonJS({ }, "Path to a file containing the Plausible Analytics script snippet", "Provides an announcement displayed at the top of the page.", - "The content of the announcement", + "The content of the announcement. Supports markdown formatting.", "Whether this announcement may be dismissed by the user.", { short: "The icon to display in the announcement", @@ -24908,7 +25003,7 @@ var require_yaml_intelligence_resources = __commonJS({ "Field that contains the section of index entries", "Additional parameters to pass when executing a search", "Top navigation options", - "The navbar title. Uses the project title if none is specified.", + "The navbar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed to the left of the\ntitle.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -24924,7 +25019,7 @@ var require_yaml_intelligence_resources = __commonJS({ "Collapse tools into the navbar menu when the display becomes\nnarrow.", "Side navigation options", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -24941,7 +25036,7 @@ var require_yaml_intelligence_resources = __commonJS({ "Markdown to place above sidebar content (text or file path)", "Markdown to place below sidebar content (text or file path)", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -25374,12 +25469,12 @@ var require_yaml_intelligence_resources = __commonJS({ mermaid: "%%" }, "handlers/mermaid/schema.yml": { - _internalId: 222617, + _internalId: 222663, type: "object", description: "be an object", properties: { "mermaid-format": { - _internalId: 222609, + _internalId: 222655, type: "enum", enum: [ "png", @@ -25395,7 +25490,7 @@ var require_yaml_intelligence_resources = __commonJS({ exhaustiveCompletions: true }, theme: { - _internalId: 222616, + _internalId: 222662, type: "anyOf", anyOf: [ { diff --git a/src/resources/editor/tools/yaml/all-schema-definitions.json b/src/resources/editor/tools/yaml/all-schema-definitions.json index 540f5683bf2..de3c262c905 100644 --- a/src/resources/editor/tools/yaml/all-schema-definitions.json +++ b/src/resources/editor/tools/yaml/all-schema-definitions.json @@ -1 +1 @@ -{"date":{"_internalId":19,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":18,"type":"object","description":"be an object","properties":{"value":{"type":"string","description":"be a string"},"format":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["value"]}],"description":"be at least one of: a string, an object","$id":"date"},"date-format":{"type":"string","description":"be a string","$id":"date-format"},"math-methods":{"_internalId":26,"type":"enum","enum":["plain","webtex","gladtex","mathml","mathjax","katex"],"description":"be one of: `plain`, `webtex`, `gladtex`, `mathml`, `mathjax`, `katex`","completions":["plain","webtex","gladtex","mathml","mathjax","katex"],"exhaustiveCompletions":true,"$id":"math-methods"},"pandoc-format-request-headers":{"_internalId":34,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":33,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},"$id":"pandoc-format-request-headers"},"pandoc-format-output-file":{"_internalId":42,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":41,"type":"enum","enum":[null],"description":"be 'null'","completions":[],"exhaustiveCompletions":true,"tags":{"hidden":true}}],"description":"be at least one of: a string, 'null'","$id":"pandoc-format-output-file"},"filter-entry-point":{"_internalId":45,"type":"enum","enum":["pre-ast","post-ast","pre-quarto","post-quarto","pre-render","post-render","pre-finalize","post-finalize"],"description":"be one of: `pre-ast`, `post-ast`, `pre-quarto`, `post-quarto`, `pre-render`, `post-render`, `pre-finalize`, `post-finalize`","completions":["pre-ast","post-ast","pre-quarto","post-quarto","pre-render","post-render","pre-finalize","post-finalize"],"exhaustiveCompletions":true,"$id":"filter-entry-point"},"pandoc-format-filters":{"_internalId":76,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":75,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":58,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string"},"path":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["path"]},{"_internalId":68,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string"},"path":{"type":"string","description":"be a string"},"at":{"_internalId":67,"type":"ref","$ref":"filter-entry-point","description":"be filter-entry-point"}},"patternProperties":{},"required":["path","at"]},{"_internalId":74,"type":"object","description":"be an object","properties":{"type":{"_internalId":73,"type":"enum","enum":["citeproc"],"description":"be 'citeproc'","completions":["citeproc"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["type"],"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},"$id":"pandoc-format-filters"},"pandoc-shortcodes":{"_internalId":81,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"$id":"pandoc-shortcodes"},"page-column":{"_internalId":84,"type":"enum","enum":["body","body-outset","body-outset-left","body-outset-right","page","page-left","page-right","page-inset","page-inset-left","page-inset-right","screen","screen-left","screen-right","screen-inset","screen-inset-shaded","screen-inset-left","screen-inset-right","margin"],"description":"be one of: `body`, `body-outset`, `body-outset-left`, `body-outset-right`, `page`, `page-left`, `page-right`, `page-inset`, `page-inset-left`, `page-inset-right`, `screen`, `screen-left`, `screen-right`, `screen-inset`, `screen-inset-shaded`, `screen-inset-left`, `screen-inset-right`, `margin`","completions":["body","body-outset","body-outset-left","body-outset-right","page","page-left","page-right","page-inset","page-inset-left","page-inset-right","screen","screen-left","screen-right","screen-inset","screen-inset-shaded","screen-inset-left","screen-inset-right","margin"],"exhaustiveCompletions":true,"$id":"page-column"},"contents-auto":{"_internalId":98,"type":"object","description":"be an object","properties":{"auto":{"_internalId":97,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":96,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":95,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: a string, an array of values, where each element must be a string","tags":{"description":{"short":"Automatically generate sidebar contents.","long":"Automatically generate sidebar contents. Pass `true` to include all documents\nin the site, a directory name to include only documents in that directory, \nor a glob (or list of globs) to include documents based on a pattern. \n\nSubdirectories will create sections (use an `index.qmd` in the directory to\nprovide its title). Order will be alphabetical unless a numeric `order` field\nis provided in document metadata.\n"}},"documentation":"Automatically generate sidebar contents."}},"patternProperties":{},"$id":"contents-auto"},"navigation-item":{"_internalId":106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":105,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"}],"description":"be at least one of: a string, navigation-item-object","$id":"navigation-item"},"navigation-item-object":{"_internalId":135,"type":"object","description":"be an object","properties":{"aria-label":{"type":"string","description":"be a string","tags":{"description":"Accessible label for the item."},"documentation":"Accessible label for the item."},"file":{"type":"string","description":"be a string","tags":{"description":"Alias for href\n","hidden":true},"documentation":"Alias for href","completions":[]},"href":{"type":"string","description":"be a string","tags":{"description":"Link to file contained with the project or external URL\n"},"documentation":"Link to file contained with the project or external URL"},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)","long":"Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)\nSee for a list of available icons\n"}},"documentation":"Name of bootstrap icon (e.g. github,\nbluesky, share)"},"id":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"menu":{"_internalId":126,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":125,"type":"ref","$ref":"navigation-item","description":"be navigation-item"}},"text":{"type":"string","description":"be a string","tags":{"description":"Text to display for item (defaults to the\ndocument title if not provided). Supports markdown formatting.\n"},"documentation":"Text to display for item (defaults to the document title if not\nprovided). Supports markdown formatting."},"url":{"type":"string","description":"be a string","tags":{"description":"Alias for href\n","hidden":true},"documentation":"Alias for href","completions":[]},"rel":{"type":"string","description":"be a string","tags":{"description":"Value for rel attribute. Multiple space-separated values are permitted.\nSee \nfor a details.\n"},"documentation":"Value for rel attribute. Multiple space-separated values are\npermitted. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel\nfor a details."},"target":{"type":"string","description":"be a string","tags":{"description":"Value for target attribute.\nSee \nfor details.\n"},"documentation":"Value for target attribute. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target\nfor details."}},"patternProperties":{},"closed":true,"$id":"navigation-item-object"},"giscus-themes":{"_internalId":138,"type":"enum","enum":["light","light_high_contrast","light_protanopia","light_tritanopia","dark","dark_high_contrast","dark_protanopia","dark_tritanopia","dark_dimmed","transparent_dark","cobalt","purple_dark","noborder_light","noborder_dark","noborder_gray","preferred_color_scheme"],"description":"be one of: `light`, `light_high_contrast`, `light_protanopia`, `light_tritanopia`, `dark`, `dark_high_contrast`, `dark_protanopia`, `dark_tritanopia`, `dark_dimmed`, `transparent_dark`, `cobalt`, `purple_dark`, `noborder_light`, `noborder_dark`, `noborder_gray`, `preferred_color_scheme`","completions":["light","light_high_contrast","light_protanopia","light_tritanopia","dark","dark_high_contrast","dark_protanopia","dark_tritanopia","dark_dimmed","transparent_dark","cobalt","purple_dark","noborder_light","noborder_dark","noborder_gray","preferred_color_scheme"],"exhaustiveCompletions":true,"$id":"giscus-themes"},"giscus-configuration":{"_internalId":195,"type":"object","description":"be an object","properties":{"repo":{"type":"string","description":"be a string","tags":{"description":{"short":"The Github repo that will be used to store comments.","long":"The Github repo that will be used to store comments.\n\nIn order to work correctly, the repo must be public, with the giscus app installed, and \nthe discussions feature must be enabled.\n"}},"documentation":"The Github repo that will be used to store comments."},"repo-id":{"type":"string","description":"be a string","tags":{"description":{"short":"The Github repository identifier.","long":"The Github repository identifier.\n\nYou can quickly find this by using the configuration tool at [https://giscus.app](https://giscus.app).\nIf this is not provided, Quarto will attempt to discover it at render time.\n"}},"documentation":"The Github repository identifier."},"category":{"type":"string","description":"be a string","tags":{"description":{"short":"The discussion category where new discussions will be created.","long":"The discussion category where new discussions will be created. It is recommended \nto use a category with the **Announcements** type so that new discussions \ncan only be created by maintainers and giscus.\n"}},"documentation":"The discussion category where new discussions will be created."},"category-id":{"type":"string","description":"be a string","tags":{"description":{"short":"The Github category identifier.","long":"The Github category identifier.\n\nYou can quickly find this by using the configuration tool at [https://giscus.app](https://giscus.app).\nIf this is not provided, Quarto will attempt to discover it at render time.\n"}},"documentation":"The Github category identifier."},"mapping":{"_internalId":157,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","completions":["pathname","url","title","og:title"],"tags":{"description":{"short":"The mapping between the page and the embedded discussion.","long":"The mapping between the page and the embedded discussion. \n\n- `pathname`: The discussion title contains the page path\n- `url`: The discussion title contains the page url\n- `title`: The discussion title contains the page title\n- `og:title`: The discussion title contains the `og:title` metadata value\n- any other string or number: Any other strings will be passed through verbatim and a discussion title\ncontaining that value will be used. Numbers will be treated\nas a discussion number and automatic discussion creation is not supported.\n"}},"documentation":"The mapping between the page and the embedded discussion."},"reactions-enabled":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Display reactions for the discussion's main post before the comments."},"documentation":"Display reactions for the discussion’s main post before the\ncomments."},"loading":{"_internalId":162,"type":"enum","enum":["lazy"],"description":"be 'lazy'","completions":["lazy"],"exhaustiveCompletions":true,"tags":{"description":"Specify `loading: lazy` to defer loading comments until the user scrolls near the comments container."},"documentation":"Specify loading: lazy to defer loading comments until\nthe user scrolls near the comments container."},"input-position":{"_internalId":165,"type":"enum","enum":["top","bottom"],"description":"be one of: `top`, `bottom`","completions":["top","bottom"],"exhaustiveCompletions":true,"tags":{"description":"Place the comment input box above or below the comments."},"documentation":"Place the comment input box above or below the comments."},"theme":{"_internalId":192,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":172,"type":"ref","$ref":"giscus-themes","description":"be giscus-themes"},{"_internalId":191,"type":"object","description":"be an object","properties":{"light":{"_internalId":182,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":181,"type":"ref","$ref":"giscus-themes","description":"be giscus-themes"}],"description":"be at least one of: a string, giscus-themes","tags":{"description":"The light theme name."},"documentation":"The light theme name."},"dark":{"_internalId":190,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":189,"type":"ref","$ref":"giscus-themes","description":"be giscus-themes"}],"description":"be at least one of: a string, giscus-themes","tags":{"description":"The dark theme name."},"documentation":"The dark theme name."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, giscus-themes, an object","tags":{"description":{"short":"The giscus theme to use when displaying comments.","long":"The giscus theme to use when displaying comments. Light and dark themes are supported. If a single theme is provided by name, it will be used as light and dark theme. To use different themes, use `light` and `dark` key: \n\n```yaml\nwebsite:\n comments:\n giscus:\n theme:\n light: light # giscus theme used for light website theme\n dark: dark_dimmed # giscus theme used for dark website theme\n```\n"}},"documentation":"The giscus theme to use when displaying comments."},"language":{"type":"string","description":"be a string","tags":{"description":"The language that should be used when displaying the commenting interface."},"documentation":"The language that should be used when displaying the commenting\ninterface."}},"patternProperties":{},"required":["repo"],"closed":true,"$id":"giscus-configuration"},"external-engine":{"_internalId":202,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to the TypeScript module for the execution engine"},"documentation":"Path to the TypeScript module for the execution engine"}},"patternProperties":{},"required":["path"],"closed":true,"tags":{"description":"An execution engine not pre-loaded in Quarto"},"documentation":"An execution engine not pre-loaded in Quarto","$id":"external-engine"},"document-comments-configuration":{"_internalId":321,"type":"anyOf","anyOf":[{"_internalId":207,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":320,"type":"object","description":"be an object","properties":{"utterances":{"_internalId":220,"type":"object","description":"be an object","properties":{"repo":{"type":"string","description":"be a string","tags":{"description":"The Github repo that will be used to store comments."},"documentation":"The Github repo that will be used to store comments."},"label":{"type":"string","description":"be a string","tags":{"description":"The label that will be assigned to issues created by Utterances."},"documentation":"The label that will be assigned to issues created by Utterances."},"theme":{"type":"string","description":"be a string","completions":["github-light","github-dark","github-dark-orange","icy-dark","dark-blue","photon-dark","body-light","gruvbox-dark"],"tags":{"description":{"short":"The Github theme that should be used for Utterances.","long":"The Github theme that should be used for Utterances\n(`github-light`, `github-dark`, `github-dark-orange`,\n`icy-dark`, `dark-blue`, `photon-dark`, `body-light`,\nor `gruvbox-dark`)\n"}},"documentation":"The Github theme that should be used for Utterances."},"issue-term":{"type":"string","description":"be a string","completions":["pathname","url","title","og:title"],"tags":{"description":{"short":"How posts should be mapped to Github issues","long":"How posts should be mapped to Github issues\n(`pathname`, `url`, `title` or `og:title`)\n"}},"documentation":"How posts should be mapped to Github issues"}},"patternProperties":{},"required":["repo"],"closed":true},"giscus":{"_internalId":223,"type":"ref","$ref":"giscus-configuration","description":"be giscus-configuration"},"hypothesis":{"_internalId":319,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":318,"type":"object","description":"be an object","properties":{"client-url":{"type":"string","description":"be a string","tags":{"description":"Override the default hypothesis client url with a custom client url."},"documentation":"Override the default hypothesis client url with a custom client\nurl."},"openSidebar":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Controls whether the sidebar opens automatically on startup."},"documentation":"Controls whether the sidebar opens automatically on startup."},"showHighlights":{"_internalId":241,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":240,"type":"enum","enum":["always","whenSidebarOpen","never"],"description":"be one of: `always`, `whenSidebarOpen`, `never`","completions":["always","whenSidebarOpen","never"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `always`, `whenSidebarOpen`, `never`","tags":{"description":"Controls whether the in-document highlights are shown by default (`always`, `whenSidebarOpen` or `never`)"},"documentation":"Controls whether the in-document highlights are shown by default\n(always, whenSidebarOpen or\nnever)"},"theme":{"_internalId":244,"type":"enum","enum":["classic","clean"],"description":"be one of: `classic`, `clean`","completions":["classic","clean"],"exhaustiveCompletions":true,"tags":{"description":"Controls the overall look of the sidebar (`classic` or `clean`)"},"documentation":"Controls the overall look of the sidebar (classic or\nclean)"},"enableExperimentalNewNoteButton":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Controls whether the experimental New Note button \nshould be shown in the notes tab in the sidebar.\n"},"documentation":"Controls whether the experimental New Note button should be shown in\nthe notes tab in the sidebar."},"usernameUrl":{"type":"string","description":"be a string","tags":{"description":"Specify a URL to direct a user to, \nin a new tab. when they click on the annotation author \nlink in the header of an annotation.\n"},"documentation":"Specify a URL to direct a user to, in a new tab. when they click on\nthe annotation author link in the header of an annotation."},"services":{"_internalId":279,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":278,"type":"object","description":"be an object","properties":{"apiUrl":{"type":"string","description":"be a string","tags":{"description":"The base URL of the service API."},"documentation":"The base URL of the service API."},"authority":{"type":"string","description":"be a string","tags":{"description":"The domain name which the annotation service is associated with."},"documentation":"The domain name which the annotation service is associated with."},"grantToken":{"type":"string","description":"be a string","tags":{"description":"An OAuth 2 grant token which the client can send to the service in order to get an access token for making authenticated requests to the service."},"documentation":"An OAuth 2 grant token which the client can send to the service in\norder to get an access token for making authenticated requests to the\nservice."},"allowLeavingGroups":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"A flag indicating whether users should be able to leave groups of which they are a member."},"documentation":"A flag indicating whether users should be able to leave groups of\nwhich they are a member."},"enableShareLinks":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"A flag indicating whether annotation cards should show links that take the user to see an annotation in context."},"documentation":"A flag indicating whether annotation cards should show links that\ntake the user to see an annotation in context."},"groups":{"_internalId":275,"type":"anyOf","anyOf":[{"_internalId":269,"type":"enum","enum":["$rpc:requestGroups"],"description":"be '$rpc:requestGroups'","completions":["$rpc:requestGroups"],"exhaustiveCompletions":true},{"_internalId":274,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: '$rpc:requestGroups', an array of values, where each element must be a string","tags":{"description":"An array of Group IDs or the literal string `$rpc:requestGroups`"},"documentation":"An array of Group IDs or the literal string\n$rpc:requestGroups"},"icon":{"type":"string","description":"be a string","tags":{"description":"The URL to an image for the annotation service. This image will appear to the left of the name of the currently selected group."},"documentation":"The URL to an image for the annotation service. This image will\nappear to the left of the name of the currently selected group."}},"patternProperties":{},"required":["apiUrl","authority","grantToken"],"propertyNames":{"errorMessage":"property ${value} does not match case convention apiUrl,authority,grantToken,allowLeavingGroups,enableShareLinks,groups,icon","type":"string","pattern":"(?!(^api_url$|^api-url$|^grant_token$|^grant-token$|^allow_leaving_groups$|^allow-leaving-groups$|^enable_share_links$|^enable-share-links$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Alternative annotation services which the client should \nconnect to instead of connecting to the public Hypothesis \nservice at hypothes.is.\n"},"documentation":"Alternative annotation services which the client should connect to\ninstead of connecting to the public Hypothesis service at\nhypothes.is."}},"branding":{"_internalId":292,"type":"object","description":"be an object","properties":{"accentColor":{"type":"string","description":"be a string","tags":{"description":"Secondary color for elements of the commenting UI."},"documentation":"Secondary color for elements of the commenting UI."},"appBackgroundColor":{"type":"string","description":"be a string","tags":{"description":"The main background color of the commenting UI."},"documentation":"The main background color of the commenting UI."},"ctaBackgroundColor":{"type":"string","description":"be a string","tags":{"description":"The background color for call to action buttons."},"documentation":"The background color for call to action buttons."},"selectionFontFamily":{"type":"string","description":"be a string","tags":{"description":"The font family for selection text in the annotation card."},"documentation":"The font family for selection text in the annotation card."},"annotationFontFamily":{"type":"string","description":"be a string","tags":{"description":"The font family for the actual annotation value that the user writes about the page or selection."},"documentation":"The font family for the actual annotation value that the user writes\nabout the page or selection."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention accentColor,appBackgroundColor,ctaBackgroundColor,selectionFontFamily,annotationFontFamily","type":"string","pattern":"(?!(^accent_color$|^accent-color$|^app_background_color$|^app-background-color$|^cta_background_color$|^cta-background-color$|^selection_font_family$|^selection-font-family$|^annotation_font_family$|^annotation-font-family$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Settings to adjust the commenting sidebar's look and feel."},"documentation":"Settings to adjust the commenting sidebar’s look and feel."},"externalContainerSelector":{"type":"string","description":"be a string","tags":{"description":"A CSS selector specifying the containing element into which the sidebar iframe will be placed."},"documentation":"A CSS selector specifying the containing element into which the\nsidebar iframe will be placed."},"focus":{"_internalId":306,"type":"object","description":"be an object","properties":{"user":{"_internalId":305,"type":"object","description":"be an object","properties":{"username":{"type":"string","description":"be a string","tags":{"description":"The username of the user to focus on."},"documentation":"The username of the user to focus on."},"userid":{"type":"string","description":"be a string","tags":{"description":"The userid of the user to focus on."},"documentation":"The userid of the user to focus on."},"displayName":{"type":"string","description":"be a string","tags":{"description":"The display name of the user to focus on."},"documentation":"The display name of the user to focus on."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention username,userid,displayName","type":"string","pattern":"(?!(^display_name$|^display-name$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}}},"patternProperties":{},"required":["user"],"tags":{"description":"Defines a focused filter set for the available annotations on a page."},"documentation":"Defines a focused filter set for the available annotations on a\npage."},"requestConfigFromFrame":{"_internalId":313,"type":"object","description":"be an object","properties":{"origin":{"type":"string","description":"be a string","tags":{"description":"Host url and port number of receiving iframe"},"documentation":"Host url and port number of receiving iframe"},"ancestorLevel":{"type":"number","description":"be a number","tags":{"description":"Number of nested iframes deep the client is relative from the receiving iframe."},"documentation":"Number of nested iframes deep the client is relative from the\nreceiving iframe."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention origin,ancestorLevel","type":"string","pattern":"(?!(^ancestor_level$|^ancestor-level$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"assetRoot":{"type":"string","description":"be a string","tags":{"description":"The root URL from which assets are loaded."},"documentation":"The root URL from which assets are loaded."},"sidebarAppUrl":{"type":"string","description":"be a string","tags":{"description":"The URL for the sidebar application which displays annotations."},"documentation":"The URL for the sidebar application which displays annotations."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object"}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', an object","$id":"document-comments-configuration"},"social-metadata":{"_internalId":336,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title of the page","long":"The title of the page. Note that by default Quarto will automatically \nuse the title metadata from the page. Specify this field if you’d like \nto override the title for this provider.\n"}},"documentation":"The title of the page"},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"A short description of the content.","long":"A short description of the content. Note that by default Quarto will\nautomatically use the description metadata from the page. Specify this\nfield if you’d like to override the description for this provider.\n"}},"documentation":"A short description of the content."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a preview image for the content.","long":"The path to a preview image for the content. By default, Quarto will use\nthe `image` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The path to a preview image for the content."},"image-alt":{"type":"string","description":"be a string","tags":{"description":{"short":"The alt text for the preview image.","long":"The alt text for the preview image. By default, Quarto will use\nthe `image-alt` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The alt text for the preview image."},"image-width":{"type":"number","description":"be a number","tags":{"description":"Image width (pixels)"},"documentation":"Image width (pixels)"},"image-height":{"type":"number","description":"be a number","tags":{"description":"Image height (pixels)"},"documentation":"Image height (pixels)"}},"patternProperties":{},"closed":true,"$id":"social-metadata"},"page-footer-region":{"_internalId":347,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":346,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":345,"type":"ref","$ref":"navigation-item","description":"be navigation-item"}}],"description":"be at least one of: a string, an array of values, where each element must be navigation-item","$id":"page-footer-region"},"sidebar-contents":{"_internalId":382,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":354,"type":"ref","$ref":"contents-auto","description":"be contents-auto"},{"_internalId":381,"type":"array","description":"be an array of values, where each element must be at least one of: navigation-item, a string, an object, contents-auto","items":{"_internalId":380,"type":"anyOf","anyOf":[{"_internalId":361,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},{"type":"string","description":"be a string"},{"_internalId":376,"type":"object","description":"be an object","properties":{"section":{"_internalId":372,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, the null value"},"contents":{"_internalId":375,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents"}},"patternProperties":{},"closed":true},{"_internalId":379,"type":"ref","$ref":"contents-auto","description":"be contents-auto"}],"description":"be at least one of: navigation-item, a string, an object, contents-auto"}}],"description":"be at least one of: a string, contents-auto, an array of values, where each element must be at least one of: navigation-item, a string, an object, contents-auto","$id":"sidebar-contents"},"project-preview":{"_internalId":402,"type":"object","description":"be an object","properties":{"port":{"type":"number","description":"be a number","tags":{"description":"Port to listen on (defaults to random value between 3000 and 8000)"},"documentation":"Port to listen on (defaults to random value between 3000 and\n8000)"},"host":{"type":"string","description":"be a string","tags":{"description":"Hostname to bind to (defaults to 127.0.0.1)"},"documentation":"Hostname to bind to (defaults to 127.0.0.1)"},"serve":{"_internalId":393,"type":"ref","$ref":"project-serve","description":"be project-serve","tags":{"description":"Use an exernal application to preview the project."},"documentation":"Use an exernal application to preview the project."},"browser":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Open a web browser to view the preview (defaults to true)"},"documentation":"Open a web browser to view the preview (defaults to true)"},"watch-inputs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Re-render input files when they change (defaults to true)"},"documentation":"Re-render input files when they change (defaults to true)"},"navigate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Navigate the browser automatically when outputs are updated (defaults to true)"},"documentation":"Navigate the browser automatically when outputs are updated (defaults\nto true)"},"timeout":{"type":"number","description":"be a number","tags":{"description":"Time (in seconds) after which to exit if there are no active clients"},"documentation":"Time (in seconds) after which to exit if there are no active\nclients"}},"patternProperties":{},"closed":true,"$id":"project-preview"},"project-serve":{"_internalId":414,"type":"object","description":"be an object","properties":{"cmd":{"type":"string","description":"be a string","tags":{"description":"Serve project preview using the specified command.\nInterpolate the `--port` into the command using `{port}`.\n"},"documentation":"Serve project preview using the specified command. Interpolate the\n--port into the command using {port}."},"args":{"type":"string","description":"be a string","tags":{"description":"Additional command line arguments for preview command."},"documentation":"Additional command line arguments for preview command."},"env":{"_internalId":411,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Environment variables to set for preview command."},"documentation":"Environment variables to set for preview command."},"ready":{"type":"string","description":"be a string","tags":{"description":"Regular expression for detecting when the server is ready."},"documentation":"Regular expression for detecting when the server is ready."}},"patternProperties":{},"required":["cmd","ready"],"closed":true,"$id":"project-serve"},"publish":{"_internalId":425,"type":"object","description":"be an object","properties":{"netlify":{"_internalId":424,"type":"array","description":"be an array of values, where each element must be publish-record","items":{"_internalId":423,"type":"ref","$ref":"publish-record","description":"be publish-record"}}},"patternProperties":{},"closed":true,"tags":{"description":"Sites published from project"},"documentation":"Sites published from project","$id":"publish"},"publish-record":{"_internalId":432,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier for site"},"documentation":"Unique identifier for site"},"url":{"type":"string","description":"be a string","tags":{"description":"Published URL for site"},"documentation":"Published URL for site"}},"patternProperties":{},"closed":true,"$id":"publish-record"},"twitter-card-config":{"_internalId":336,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title of the page","long":"The title of the page. Note that by default Quarto will automatically \nuse the title metadata from the page. Specify this field if you’d like \nto override the title for this provider.\n"}},"documentation":"The title of the page"},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"A short description of the content.","long":"A short description of the content. Note that by default Quarto will\nautomatically use the description metadata from the page. Specify this\nfield if you’d like to override the description for this provider.\n"}},"documentation":"A short description of the content."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a preview image for the content.","long":"The path to a preview image for the content. By default, Quarto will use\nthe `image` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The path to a preview image for the content."},"image-alt":{"type":"string","description":"be a string","tags":{"description":{"short":"The alt text for the preview image.","long":"The alt text for the preview image. By default, Quarto will use\nthe `image-alt` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The alt text for the preview image."},"image-width":{"type":"number","description":"be a number","tags":{"description":"Image width (pixels)"},"documentation":"Image width (pixels)"},"image-height":{"type":"number","description":"be a number","tags":{"description":"Image height (pixels)"},"documentation":"Image height (pixels)"},"card-style":{"_internalId":437,"type":"enum","enum":["summary","summary_large_image"],"description":"be one of: `summary`, `summary_large_image`","completions":["summary","summary_large_image"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Card style","long":"Card style (`summary` or `summary_large_image`).\n\nIf this is not provided, the best style will automatically\nselected based upon other metadata. You can learn more about Twitter Card\nstyles [here](https://developer.twitter.com/en/docs/twitter-for-websites/cards/overview/abouts-cards).\n"}},"documentation":"Card style"},"creator":{"type":"string","description":"be a string","tags":{"description":"`@username` of the content creator (must be a quoted string)"},"documentation":"@username of the content creator (must be a quoted\nstring)"},"site":{"type":"string","description":"be a string","tags":{"description":"`@username` of the website (must be a quoted string)"},"documentation":"@username of the website (must be a quoted string)"}},"patternProperties":{},"closed":true,"$id":"twitter-card-config"},"open-graph-config":{"_internalId":336,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title of the page","long":"The title of the page. Note that by default Quarto will automatically \nuse the title metadata from the page. Specify this field if you’d like \nto override the title for this provider.\n"}},"documentation":"The title of the page"},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"A short description of the content.","long":"A short description of the content. Note that by default Quarto will\nautomatically use the description metadata from the page. Specify this\nfield if you’d like to override the description for this provider.\n"}},"documentation":"A short description of the content."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a preview image for the content.","long":"The path to a preview image for the content. By default, Quarto will use\nthe `image` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The path to a preview image for the content."},"image-alt":{"type":"string","description":"be a string","tags":{"description":{"short":"The alt text for the preview image.","long":"The alt text for the preview image. By default, Quarto will use\nthe `image-alt` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"The alt text for the preview image."},"image-width":{"type":"number","description":"be a number","tags":{"description":"Image width (pixels)"},"documentation":"Image width (pixels)"},"image-height":{"type":"number","description":"be a number","tags":{"description":"Image height (pixels)"},"documentation":"Image height (pixels)"},"locale":{"type":"string","description":"be a string","tags":{"description":"Locale of open graph metadata"},"documentation":"Locale of open graph metadata"},"site-name":{"type":"string","description":"be a string","tags":{"description":{"short":"Name that should be displayed for the overall site","long":"Name that should be displayed for the overall site. If not explicitly \nprovided in the `open-graph` metadata, Quarto will use the website or\nbook `title` by default.\n"}},"documentation":"Name that should be displayed for the overall site"}},"patternProperties":{},"closed":true,"$id":"open-graph-config"},"page-footer":{"_internalId":480,"type":"object","description":"be an object","properties":{"left":{"_internalId":458,"type":"ref","$ref":"page-footer-region","description":"be page-footer-region","tags":{"description":"Footer left content"},"documentation":"Footer left content"},"right":{"_internalId":461,"type":"ref","$ref":"page-footer-region","description":"be page-footer-region","tags":{"description":"Footer right content"},"documentation":"Footer right content"},"center":{"_internalId":464,"type":"ref","$ref":"page-footer-region","description":"be page-footer-region","tags":{"description":"Footer center content"},"documentation":"Footer center content"},"border":{"_internalId":471,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"description":"Footer border (`true`, `false`, or a border color)"},"documentation":"Footer border (true, false, or a border\ncolor)"},"background":{"type":"string","description":"be a string","tags":{"description":"Footer background color"},"documentation":"Footer background color"},"foreground":{"type":"string","description":"be a string","tags":{"description":"Footer foreground color"},"documentation":"Footer foreground color"}},"patternProperties":{},"closed":true,"$id":"page-footer"},"base-website":{"_internalId":905,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Website title"},"documentation":"Website title"},"description":{"type":"string","description":"be a string","tags":{"description":"Website description"},"documentation":"Website description"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"The path to the favicon for this website"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Base URL for published website"},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"Base URL for website source code repository"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"The value of the target attribute for repo links"},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"The value of the rel attribute for repo links"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"Subdirectory of repository containing website"},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"Branch of website source code (defaults to main)"},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"URL to use for the ‘report an issue’ repository action."},"repo-actions":{"_internalId":511,"type":"anyOf","anyOf":[{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Links to source repository actions"},{"_internalId":510,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Links to source repository actions"}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},"llms-txt":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Generate llms.txt and .llms.md files for LLM-friendly content consumption.\n"},"documentation":"Generate llms.txt and .llms.md files for LLM-friendly content\nconsumption."},"google-analytics":{"_internalId":537,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":536,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"The Google tracking Id or measurement Id of this website."},"storage":{"_internalId":528,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"Storage options for Google Analytics data"},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"Anonymize the user ip address."},"version":{"_internalId":535,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"The version number of Google Analytics to use."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"Enable Google Analytics for this website"},"plausible-analytics":{"_internalId":547,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":546,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Path to a file containing the Plausible Analytics script snippet"}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},"announcement":{"_internalId":577,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":576,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement"},"documentation":"The content of the announcement"},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"Whether this announcement may be dismissed by the user."},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"The icon to display in the announcement"},"position":{"_internalId":570,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"The position of the announcement."},"type":{"_internalId":575,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"Provides an announcement displayed at the top of the page."},"cookie-consent":{"_internalId":609,"type":"anyOf","anyOf":[{"_internalId":582,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":608,"type":"object","description":"be an object","properties":{"type":{"_internalId":589,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"The type of consent that should be requested"},"style":{"_internalId":592,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"The style of the consent banner that is displayed"},"palette":{"_internalId":595,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"The url to the website’s cookie or privacy policy."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"The text to display for the cookie preferences link in the website\nfooter."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"Request cookie consent before enabling scripts that set cookies"},"search":{"_internalId":696,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":695,"type":"object","description":"be an object","properties":{"location":{"_internalId":618,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"Location for search widget (navbar or\nsidebar)"},"type":{"_internalId":621,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"Type of search UI (overlay or textbox)"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Number of matches to display (defaults to 20)"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"Matches after which to collapse additional results"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"Provide button for copying search link"},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"keyboard-shortcut":{"_internalId":643,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},{"_internalId":642,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":653,"type":"anyOf","anyOf":[{"_internalId":650,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},"algolia":{"_internalId":694,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"The name of the index to use when performing a search"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"The unique ID used by Algolia to identify your application"},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"The Search-Only API key to use to connect to Algolia"},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Enable tracking of Algolia analytics events"},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},"index-fields":{"_internalId":690,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"Field that contains the URL of index entries"},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"Field that contains the title of index entries"},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Field that contains the text of index entries"},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Field that contains the section of index entries"}},"patternProperties":{},"closed":true},"params":{"_internalId":693,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"Additional parameters to pass when executing a search"}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"Use external Algolia search index"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Provide full text search for website"},"navbar":{"_internalId":750,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":749,"type":"object","description":"be an object","properties":{"title":{"_internalId":709,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified."},"documentation":"The navbar title. Uses the project title if none is specified."},"logo":{"_internalId":712,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Alternate text for the logo image."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"The navbar’s background color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"The navbar’s foreground color (named or hex color)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Include a search box in the navbar."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Always show the navbar (keeping it pinned)."},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"collapse-below":{"_internalId":729,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"left":{"_internalId":735,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":734,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"List of items for the left side of the navbar."},"right":{"_internalId":741,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":740,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"List of items for the right side of the navbar."},"toggle-position":{"_internalId":746,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"Top navigation options"},"sidebar":{"_internalId":821,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":820,"type":"anyOf","anyOf":[{"_internalId":818,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The identifier for this sidebar."},"title":{"_internalId":767,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The sidebar title. Uses the project title if none is specified."},"logo":{"_internalId":770,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Alternate text for the logo image."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Include a search control in the sidebar."},"tools":{"_internalId":782,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":781,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of sidebar tools"},"contents":{"_internalId":785,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"List of items for the sidebar"},"style":{"_internalId":788,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The style of sidebar (docked or\nfloating)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s background color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"alignment":{"_internalId":801,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"header":{"_internalId":811,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":810,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place above sidebar content (text or file path)"},"footer":{"_internalId":817,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":816,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":819,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":818,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The identifier for this sidebar."},"title":{"_internalId":767,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The sidebar title. Uses the project title if none is specified."},"logo":{"_internalId":770,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Alternate text for the logo image."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Include a search control in the sidebar."},"tools":{"_internalId":782,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":781,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of sidebar tools"},"contents":{"_internalId":785,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"List of items for the sidebar"},"style":{"_internalId":788,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The style of sidebar (docked or\nfloating)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s background color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"alignment":{"_internalId":801,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"header":{"_internalId":811,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":810,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place above sidebar content (text or file path)"},"footer":{"_internalId":817,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":816,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"Side navigation options"},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Markdown to insert below each page’s body."},"margin-header":{"_internalId":831,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":830,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"Markdown to place above margin content (text or file path)"},"margin-footer":{"_internalId":837,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":836,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"Markdown to place below margin content (text or file path)"},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"Provide next and previous article links in footer"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"Provide a ‘back to top’ navigation button"},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"page-footer":{"_internalId":851,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":850,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"Shared page footer"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"},"comments":{"_internalId":860,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":868,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":867,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Publish open graph metadata"},"twitter-card":{"_internalId":876,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":875,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"Publish twitter card metadata"},"other-links":{"_internalId":881,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"A list of other links to appear below the TOC."},"code-links":{"_internalId":891,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":890,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"A list of code links to appear with this document."},"drafts":{"_internalId":899,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":898,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"A list of input documents that should be treated as drafts"},"draft-mode":{"_internalId":904,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"How to handle drafts that are encountered."}},"patternProperties":{},"closed":true,"$id":"base-website"},"book-schema":{"_internalId":905,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Book title"},"documentation":"Book title"},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"Description metadata for HTML version of book"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"The path to the favicon for this website"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Base URL for published website"},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"Base URL for website source code repository"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"The value of the target attribute for repo links"},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"The value of the rel attribute for repo links"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"Subdirectory of repository containing website"},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"Branch of website source code (defaults to main)"},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"URL to use for the ‘report an issue’ repository action."},"repo-actions":{"_internalId":511,"type":"anyOf","anyOf":[{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Links to source repository actions"},{"_internalId":510,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Links to source repository actions"}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},"llms-txt":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Generate llms.txt and .llms.md files for LLM-friendly content consumption.\n"},"documentation":"Generate llms.txt and .llms.md files for LLM-friendly content\nconsumption."},"google-analytics":{"_internalId":537,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":536,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"The Google tracking Id or measurement Id of this website."},"storage":{"_internalId":528,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"Storage options for Google Analytics data"},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"Anonymize the user ip address."},"version":{"_internalId":535,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"The version number of Google Analytics to use."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"Enable Google Analytics for this website"},"plausible-analytics":{"_internalId":547,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":546,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Path to a file containing the Plausible Analytics script snippet"}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},"announcement":{"_internalId":577,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":576,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement"},"documentation":"The content of the announcement"},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"Whether this announcement may be dismissed by the user."},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"The icon to display in the announcement"},"position":{"_internalId":570,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"The position of the announcement."},"type":{"_internalId":575,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"Provides an announcement displayed at the top of the page."},"cookie-consent":{"_internalId":609,"type":"anyOf","anyOf":[{"_internalId":582,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":608,"type":"object","description":"be an object","properties":{"type":{"_internalId":589,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"The type of consent that should be requested"},"style":{"_internalId":592,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"The style of the consent banner that is displayed"},"palette":{"_internalId":595,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"The url to the website’s cookie or privacy policy."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"The text to display for the cookie preferences link in the website\nfooter."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"Request cookie consent before enabling scripts that set cookies"},"search":{"_internalId":696,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":695,"type":"object","description":"be an object","properties":{"location":{"_internalId":618,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"Location for search widget (navbar or\nsidebar)"},"type":{"_internalId":621,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"Type of search UI (overlay or textbox)"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Number of matches to display (defaults to 20)"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"Matches after which to collapse additional results"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"Provide button for copying search link"},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"keyboard-shortcut":{"_internalId":643,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},{"_internalId":642,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":653,"type":"anyOf","anyOf":[{"_internalId":650,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},"algolia":{"_internalId":694,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"The name of the index to use when performing a search"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"The unique ID used by Algolia to identify your application"},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"The Search-Only API key to use to connect to Algolia"},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Enable tracking of Algolia analytics events"},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},"index-fields":{"_internalId":690,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"Field that contains the URL of index entries"},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"Field that contains the title of index entries"},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Field that contains the text of index entries"},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Field that contains the section of index entries"}},"patternProperties":{},"closed":true},"params":{"_internalId":693,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"Additional parameters to pass when executing a search"}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"Use external Algolia search index"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Provide full text search for website"},"navbar":{"_internalId":750,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":749,"type":"object","description":"be an object","properties":{"title":{"_internalId":709,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified."},"documentation":"The navbar title. Uses the project title if none is specified."},"logo":{"_internalId":712,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Alternate text for the logo image."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"The navbar’s background color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"The navbar’s foreground color (named or hex color)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Include a search box in the navbar."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Always show the navbar (keeping it pinned)."},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"collapse-below":{"_internalId":729,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"left":{"_internalId":735,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":734,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"List of items for the left side of the navbar."},"right":{"_internalId":741,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":740,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"List of items for the right side of the navbar."},"toggle-position":{"_internalId":746,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"Top navigation options"},"sidebar":{"_internalId":821,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":820,"type":"anyOf","anyOf":[{"_internalId":818,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The identifier for this sidebar."},"title":{"_internalId":767,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The sidebar title. Uses the project title if none is specified."},"logo":{"_internalId":770,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Alternate text for the logo image."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Include a search control in the sidebar."},"tools":{"_internalId":782,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":781,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of sidebar tools"},"contents":{"_internalId":785,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"List of items for the sidebar"},"style":{"_internalId":788,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The style of sidebar (docked or\nfloating)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s background color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"alignment":{"_internalId":801,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"header":{"_internalId":811,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":810,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place above sidebar content (text or file path)"},"footer":{"_internalId":817,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":816,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":819,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":818,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The identifier for this sidebar."},"title":{"_internalId":767,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The sidebar title. Uses the project title if none is specified."},"logo":{"_internalId":770,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Alternate text for the logo image."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Include a search control in the sidebar."},"tools":{"_internalId":782,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":781,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of sidebar tools"},"contents":{"_internalId":785,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"List of items for the sidebar"},"style":{"_internalId":788,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The style of sidebar (docked or\nfloating)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s background color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"alignment":{"_internalId":801,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"header":{"_internalId":811,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":810,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place above sidebar content (text or file path)"},"footer":{"_internalId":817,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":816,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"Side navigation options"},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Markdown to insert below each page’s body."},"margin-header":{"_internalId":831,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":830,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"Markdown to place above margin content (text or file path)"},"margin-footer":{"_internalId":837,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":836,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"Markdown to place below margin content (text or file path)"},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"Provide next and previous article links in footer"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"Provide a ‘back to top’ navigation button"},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"page-footer":{"_internalId":851,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":850,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"Shared page footer"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"},"comments":{"_internalId":860,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":868,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":867,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Publish open graph metadata"},"twitter-card":{"_internalId":876,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":875,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"Publish twitter card metadata"},"other-links":{"_internalId":881,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"A list of other links to appear below the TOC."},"code-links":{"_internalId":891,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":890,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"A list of code links to appear with this document."},"drafts":{"_internalId":899,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":898,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"A list of input documents that should be treated as drafts"},"draft-mode":{"_internalId":904,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"How to handle drafts that are encountered."},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Book subtitle"},"author":{"_internalId":924,"type":"anyOf","anyOf":[{"_internalId":922,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":920,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Author or authors of the book"},{"_internalId":923,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":922,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":920,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Author or authors of the book"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string","tags":{"description":"Book publication date"},"documentation":"Book publication date"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Format string for dates in the book"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Book abstract"},"chapters":{"_internalId":937,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Book part and chapter files"},"appendices":{"_internalId":942,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"Book appendix files"},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"Book references file"},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"Cover image (used in HTML and ePub formats)"},"cover-image-alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for cover image (used in HTML format)"},"documentation":"Alternative text for cover image (used in HTML format)"},"sharing":{"_internalId":957,"type":"anyOf","anyOf":[{"_internalId":955,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},{"_internalId":956,"type":"array","description":"be an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","items":{"_internalId":955,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"}}],"description":"be at least one of: one of: `twitter`, `facebook`, `linkedin`, an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","tags":{"complete-from":["anyOf",0]}},"downloads":{"_internalId":964,"type":"anyOf","anyOf":[{"_internalId":962,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},{"_internalId":963,"type":"array","description":"be an array of values, where each element must be one of: `pdf`, `epub`, `docx`","items":{"_internalId":962,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"}}],"description":"be at least one of: one of: `pdf`, `epub`, `docx`, an array of values, where each element must be one of: `pdf`, `epub`, `docx`","tags":{"complete-from":["anyOf",0]}},"tools":{"_internalId":970,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":969,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Custom tools for navbar or sidebar"},"documentation":"Custom tools for navbar or sidebar"},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"The Digital Object Identifier for this book."}},"patternProperties":{},"closed":true,"$id":"book-schema"},"chapter-item":{"_internalId":992,"type":"anyOf","anyOf":[{"_internalId":980,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},{"_internalId":991,"type":"object","description":"be an object","properties":{"part":{"type":"string","description":"be a string","tags":{"description":"Part title or path to input file"},"documentation":"Part title or path to input file"},"chapters":{"_internalId":990,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":989,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Path to chapter input file"},"documentation":"Path to chapter input file"}},"patternProperties":{},"required":["part"]}],"description":"be at least one of: navigation-item, an object","$id":"chapter-item"},"chapter-list":{"_internalId":998,"type":"array","description":"be an array of values, where each element must be chapter-item","items":{"_internalId":997,"type":"ref","$ref":"chapter-item","description":"be chapter-item"},"$id":"chapter-list"},"other-links":{"_internalId":1014,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1013,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text for the link."},"documentation":"The text for the link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The href for the link."},"icon":{"type":"string","description":"be a string","tags":{"description":"The bootstrap icon name for the link."},"documentation":"The bootstrap icon name for the link."},"rel":{"type":"string","description":"be a string","tags":{"description":"The rel attribute value for the link."},"documentation":"The rel attribute value for the link."},"target":{"type":"string","description":"be a string","tags":{"description":"The target attribute value for the link."},"documentation":"The target attribute value for the link."}},"patternProperties":{},"required":["text","href"]},"$id":"other-links"},"crossref-labels-schema":{"type":"string","description":"be a string","completions":["alpha","arabic","roman"],"$id":"crossref-labels-schema"},"epub-contributor":{"_internalId":1034,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1033,"type":"anyOf","anyOf":[{"_internalId":1031,"type":"object","description":"be an object","properties":{"role":{"type":"string","description":"be a string","tags":{"description":{"short":"The role of this creator or contributor.","long":"The role of this creator or contributor using \n[MARC relators](https://loc.gov/marc/relators/relaterm.html). Human readable\ntranslations to commonly used relators (e.g. 'author', 'editor') will \nattempt to be automatically translated.\n"}},"documentation":"The role of this creator or contributor."},"file-as":{"type":"string","description":"be a string","tags":{"description":"An alternate version of the creator or contributor text used for alphabatizing."},"documentation":"An alternate version of the creator or contributor text used for\nalphabatizing."},"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the creator or contributor (for example, creator name)."},"documentation":"The text describing the creator or contributor (for example, creator\nname)."}},"patternProperties":{},"closed":true},{"_internalId":1032,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1031,"type":"object","description":"be an object","properties":{"role":{"type":"string","description":"be a string","tags":{"description":{"short":"The role of this creator or contributor.","long":"The role of this creator or contributor using \n[MARC relators](https://loc.gov/marc/relators/relaterm.html). Human readable\ntranslations to commonly used relators (e.g. 'author', 'editor') will \nattempt to be automatically translated.\n"}},"documentation":"The role of this creator or contributor."},"file-as":{"type":"string","description":"be a string","tags":{"description":"An alternate version of the creator or contributor text used for alphabatizing."},"documentation":"An alternate version of the creator or contributor text used for\nalphabatizing."},"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the creator or contributor (for example, creator name)."},"documentation":"The text describing the creator or contributor (for example, creator\nname)."}},"patternProperties":{},"closed":true}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: a string, at least one of: an object, an array of values, where each element must be an object","$id":"epub-contributor"},"format-language":{"_internalId":1161,"type":"object","description":"be a format language description object","properties":{"toc-title-document":{"type":"string","description":"be a string"},"toc-title-website":{"type":"string","description":"be a string"},"related-formats-title":{"type":"string","description":"be a string"},"related-notebooks-title":{"type":"string","description":"be a string"},"callout-tip-title":{"type":"string","description":"be a string"},"callout-note-title":{"type":"string","description":"be a string"},"callout-warning-title":{"type":"string","description":"be a string"},"callout-important-title":{"type":"string","description":"be a string"},"callout-caution-title":{"type":"string","description":"be a string"},"section-title-abstract":{"type":"string","description":"be a string"},"section-title-footnotes":{"type":"string","description":"be a string"},"section-title-appendices":{"type":"string","description":"be a string"},"code-summary":{"type":"string","description":"be a string"},"code-tools-menu-caption":{"type":"string","description":"be a string"},"code-tools-show-all-code":{"type":"string","description":"be a string"},"code-tools-hide-all-code":{"type":"string","description":"be a string"},"code-tools-view-source":{"type":"string","description":"be a string"},"code-tools-source-code":{"type":"string","description":"be a string"},"search-no-results-text":{"type":"string","description":"be a string"},"copy-button-tooltip":{"type":"string","description":"be a string"},"copy-button-tooltip-success":{"type":"string","description":"be a string"},"repo-action-links-edit":{"type":"string","description":"be a string"},"repo-action-links-source":{"type":"string","description":"be a string"},"repo-action-links-issue":{"type":"string","description":"be a string"},"search-matching-documents-text":{"type":"string","description":"be a string"},"search-copy-link-title":{"type":"string","description":"be a string"},"search-hide-matches-text":{"type":"string","description":"be a string"},"search-more-match-text":{"type":"string","description":"be a string"},"search-more-matches-text":{"type":"string","description":"be a string"},"search-clear-button-title":{"type":"string","description":"be a string"},"search-text-placeholder":{"type":"string","description":"be a string"},"search-detached-cancel-button-title":{"type":"string","description":"be a string"},"search-submit-button-title":{"type":"string","description":"be a string"},"crossref-fig-title":{"type":"string","description":"be a string"},"crossref-tbl-title":{"type":"string","description":"be a string"},"crossref-lst-title":{"type":"string","description":"be a string"},"crossref-thm-title":{"type":"string","description":"be a string"},"crossref-lem-title":{"type":"string","description":"be a string"},"crossref-cor-title":{"type":"string","description":"be a string"},"crossref-prp-title":{"type":"string","description":"be a string"},"crossref-cnj-title":{"type":"string","description":"be a string"},"crossref-def-title":{"type":"string","description":"be a string"},"crossref-exm-title":{"type":"string","description":"be a string"},"crossref-exr-title":{"type":"string","description":"be a string"},"crossref-fig-prefix":{"type":"string","description":"be a string"},"crossref-tbl-prefix":{"type":"string","description":"be a string"},"crossref-lst-prefix":{"type":"string","description":"be a string"},"crossref-ch-prefix":{"type":"string","description":"be a string"},"crossref-apx-prefix":{"type":"string","description":"be a string"},"crossref-sec-prefix":{"type":"string","description":"be a string"},"crossref-eq-prefix":{"type":"string","description":"be a string"},"crossref-thm-prefix":{"type":"string","description":"be a string"},"crossref-lem-prefix":{"type":"string","description":"be a string"},"crossref-cor-prefix":{"type":"string","description":"be a string"},"crossref-prp-prefix":{"type":"string","description":"be a string"},"crossref-cnj-prefix":{"type":"string","description":"be a string"},"crossref-def-prefix":{"type":"string","description":"be a string"},"crossref-exm-prefix":{"type":"string","description":"be a string"},"crossref-exr-prefix":{"type":"string","description":"be a string"},"crossref-lof-title":{"type":"string","description":"be a string"},"crossref-lot-title":{"type":"string","description":"be a string"},"crossref-lol-title":{"type":"string","description":"be a string"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention toc-title-document,toc-title-website,related-formats-title,related-notebooks-title,callout-tip-title,callout-note-title,callout-warning-title,callout-important-title,callout-caution-title,section-title-abstract,section-title-footnotes,section-title-appendices,code-summary,code-tools-menu-caption,code-tools-show-all-code,code-tools-hide-all-code,code-tools-view-source,code-tools-source-code,search-no-results-text,copy-button-tooltip,copy-button-tooltip-success,repo-action-links-edit,repo-action-links-source,repo-action-links-issue,search-matching-documents-text,search-copy-link-title,search-hide-matches-text,search-more-match-text,search-more-matches-text,search-clear-button-title,search-text-placeholder,search-detached-cancel-button-title,search-submit-button-title,crossref-fig-title,crossref-tbl-title,crossref-lst-title,crossref-thm-title,crossref-lem-title,crossref-cor-title,crossref-prp-title,crossref-cnj-title,crossref-def-title,crossref-exm-title,crossref-exr-title,crossref-fig-prefix,crossref-tbl-prefix,crossref-lst-prefix,crossref-ch-prefix,crossref-apx-prefix,crossref-sec-prefix,crossref-eq-prefix,crossref-thm-prefix,crossref-lem-prefix,crossref-cor-prefix,crossref-prp-prefix,crossref-cnj-prefix,crossref-def-prefix,crossref-exm-prefix,crossref-exr-prefix,crossref-lof-title,crossref-lot-title,crossref-lol-title","type":"string","pattern":"(?!(^toc_title_document$|^tocTitleDocument$|^toc_title_website$|^tocTitleWebsite$|^related_formats_title$|^relatedFormatsTitle$|^related_notebooks_title$|^relatedNotebooksTitle$|^callout_tip_title$|^calloutTipTitle$|^callout_note_title$|^calloutNoteTitle$|^callout_warning_title$|^calloutWarningTitle$|^callout_important_title$|^calloutImportantTitle$|^callout_caution_title$|^calloutCautionTitle$|^section_title_abstract$|^sectionTitleAbstract$|^section_title_footnotes$|^sectionTitleFootnotes$|^section_title_appendices$|^sectionTitleAppendices$|^code_summary$|^codeSummary$|^code_tools_menu_caption$|^codeToolsMenuCaption$|^code_tools_show_all_code$|^codeToolsShowAllCode$|^code_tools_hide_all_code$|^codeToolsHideAllCode$|^code_tools_view_source$|^codeToolsViewSource$|^code_tools_source_code$|^codeToolsSourceCode$|^search_no_results_text$|^searchNoResultsText$|^copy_button_tooltip$|^copyButtonTooltip$|^copy_button_tooltip_success$|^copyButtonTooltipSuccess$|^repo_action_links_edit$|^repoActionLinksEdit$|^repo_action_links_source$|^repoActionLinksSource$|^repo_action_links_issue$|^repoActionLinksIssue$|^search_matching_documents_text$|^searchMatchingDocumentsText$|^search_copy_link_title$|^searchCopyLinkTitle$|^search_hide_matches_text$|^searchHideMatchesText$|^search_more_match_text$|^searchMoreMatchText$|^search_more_matches_text$|^searchMoreMatchesText$|^search_clear_button_title$|^searchClearButtonTitle$|^search_text_placeholder$|^searchTextPlaceholder$|^search_detached_cancel_button_title$|^searchDetachedCancelButtonTitle$|^search_submit_button_title$|^searchSubmitButtonTitle$|^crossref_fig_title$|^crossrefFigTitle$|^crossref_tbl_title$|^crossrefTblTitle$|^crossref_lst_title$|^crossrefLstTitle$|^crossref_thm_title$|^crossrefThmTitle$|^crossref_lem_title$|^crossrefLemTitle$|^crossref_cor_title$|^crossrefCorTitle$|^crossref_prp_title$|^crossrefPrpTitle$|^crossref_cnj_title$|^crossrefCnjTitle$|^crossref_def_title$|^crossrefDefTitle$|^crossref_exm_title$|^crossrefExmTitle$|^crossref_exr_title$|^crossrefExrTitle$|^crossref_fig_prefix$|^crossrefFigPrefix$|^crossref_tbl_prefix$|^crossrefTblPrefix$|^crossref_lst_prefix$|^crossrefLstPrefix$|^crossref_ch_prefix$|^crossrefChPrefix$|^crossref_apx_prefix$|^crossrefApxPrefix$|^crossref_sec_prefix$|^crossrefSecPrefix$|^crossref_eq_prefix$|^crossrefEqPrefix$|^crossref_thm_prefix$|^crossrefThmPrefix$|^crossref_lem_prefix$|^crossrefLemPrefix$|^crossref_cor_prefix$|^crossrefCorPrefix$|^crossref_prp_prefix$|^crossrefPrpPrefix$|^crossref_cnj_prefix$|^crossrefCnjPrefix$|^crossref_def_prefix$|^crossrefDefPrefix$|^crossref_exm_prefix$|^crossrefExmPrefix$|^crossref_exr_prefix$|^crossrefExrPrefix$|^crossref_lof_title$|^crossrefLofTitle$|^crossref_lot_title$|^crossrefLotTitle$|^crossref_lol_title$|^crossrefLolTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"format-language"},"website-about":{"_internalId":1191,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":{"short":"The target id for the about page.","long":"The target id of this about page. When the about page is rendered, it will \nplace read the contents of a `div` with this id into the about template that you \nhave selected (and replace the contents with the rendered about content).\n\nIf no such `div` is defined on the page, a `div` with this id will be created \nand appended to the end of the page.\n"}},"documentation":"The target id for the about page."},"template":{"_internalId":1173,"type":"anyOf","anyOf":[{"_internalId":1170,"type":"enum","enum":["jolla","trestles","solana","marquee","broadside"],"description":"be one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`","completions":["jolla","trestles","solana","marquee","broadside"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`, a string","tags":{"description":{"short":"The template to use to layout this about page.","long":"The template to use to layout this about page. Choose from:\n\n- `jolla`\n- `trestles`\n- `solana`\n- `marquee`\n- `broadside`\n"}},"documentation":"The template to use to layout this about page."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to the main image on the about page.","long":"The path to the main image on the about page. If not specified, \nthe `image` provided for the document itself will be used.\n"}},"documentation":"The path to the main image on the about page."},"image-alt":{"type":"string","description":"be a string","tags":{"description":"The alt text for the main image on the about page."},"documentation":"The alt text for the main image on the about page."},"image-title":{"type":"string","description":"be a string","tags":{"description":"The title for the main image on the about page."},"documentation":"The title for the main image on the about page."},"image-width":{"type":"string","description":"be a string","tags":{"description":{"short":"A valid CSS width for the about page image.","long":"A valid CSS width for the about page image.\n"}},"documentation":"A valid CSS width for the about page image."},"image-shape":{"_internalId":1184,"type":"enum","enum":["rectangle","round","rounded"],"description":"be one of: `rectangle`, `round`, `rounded`","completions":["rectangle","round","rounded"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The shape of the image on the about page.","long":"The shape of the image on the about page.\n\n- `rectangle`\n- `round`\n- `rounded`\n"}},"documentation":"The shape of the image on the about page."},"links":{"_internalId":1190,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":1189,"type":"ref","$ref":"navigation-item","description":"be navigation-item"}}},"patternProperties":{},"required":["template"],"closed":true,"$id":"website-about"},"website-listing":{"_internalId":1346,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":{"short":"The id of this listing.","long":"The id of this listing. When the listing is rendered, it will \nplace the contents into a `div` with this id. If no such `div` is defined on the \npage, a `div` with this id will be created and appended to the end of the page.\n\nIf no `id` is provided for a listing, Quarto will synthesize one when rendering the page.\n"}},"documentation":"The id of this listing."},"type":{"_internalId":1198,"type":"enum","enum":["default","table","grid","custom"],"description":"be one of: `default`, `table`, `grid`, `custom`","completions":["default","table","grid","custom"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of listing to create.","long":"The type of listing to create. Choose one of:\n\n- `default`: A blog style list of items\n- `table`: A table of items\n- `grid`: A grid of item cards\n- `custom`: A custom template, provided by the `template` field\n"}},"documentation":"The type of listing to create."},"contents":{"_internalId":1210,"type":"anyOf","anyOf":[{"_internalId":1208,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1207,"type":"ref","$ref":"website-listing-contents-object","description":"be website-listing-contents-object"}],"description":"be at least one of: a string, website-listing-contents-object"},{"_internalId":1209,"type":"array","description":"be an array of values, where each element must be at least one of: a string, website-listing-contents-object","items":{"_internalId":1208,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1207,"type":"ref","$ref":"website-listing-contents-object","description":"be website-listing-contents-object"}],"description":"be at least one of: a string, website-listing-contents-object"}}],"description":"be at least one of: at least one of: a string, website-listing-contents-object, an array of values, where each element must be at least one of: a string, website-listing-contents-object","tags":{"complete-from":["anyOf",0],"description":"The files or path globs of Quarto documents or YAML files that should be included in the listing."},"documentation":"The files or path globs of Quarto documents or YAML files that should\nbe included in the listing."},"sort":{"_internalId":1221,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1220,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1219,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: a string, an array of values, where each element must be a string","tags":{"description":{"short":"Sort items in the listing by these fields.","long":"Sort items in the listing by these fields. The sort key is made up of a \nfield name followed by a direction `asc` or `desc`.\n\nFor example:\n`date asc`\n\nUse `sort:false` to use the unsorted original order of items.\n"}},"documentation":"Sort items in the listing by these fields."},"max-items":{"type":"number","description":"be a number","tags":{"description":"The maximum number of items to include in this listing."},"documentation":"The maximum number of items to include in this listing."},"page-size":{"type":"number","description":"be a number","tags":{"description":"The number of items to display on a page."},"documentation":"The number of items to display on a page."},"sort-ui":{"_internalId":1235,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1234,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: `true` or `false`, an array of values, where each element must be a string","tags":{"description":{"short":"Shows or hides the sorting control for the listing.","long":"Shows or hides the sorting control for the listing. To control the \nfields that will be displayed in the sorting control, provide a list\nof field names.\n"}},"documentation":"Shows or hides the sorting control for the listing."},"filter-ui":{"_internalId":1245,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1244,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: `true` or `false`, an array of values, where each element must be a string","tags":{"description":{"short":"Shows or hides the filtering control for the listing.","long":"Shows or hides the filtering control for the listing. To control the \nfields that will be used to filter the listing, provide a list\nof field names. By default all fields of the listing will be used\nwhen filtering.\n"}},"documentation":"Shows or hides the filtering control for the listing."},"categories":{"_internalId":1253,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1252,"type":"enum","enum":["numbered","unnumbered","cloud"],"description":"be one of: `numbered`, `unnumbered`, `cloud`","completions":["numbered","unnumbered","cloud"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `numbered`, `unnumbered`, `cloud`","tags":{"description":{"short":"Display item categories from this listing in the margin of the page.","long":"Display item categories from this listing in the margin of the page.\n\n - `numbered`: Category list with number of items\n - `unnumbered`: Category list\n - `cloud`: Word cloud style categories\n"}},"documentation":"Display item categories from this listing in the margin of the\npage."},"feed":{"_internalId":1282,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1281,"type":"object","description":"be an object","properties":{"items":{"type":"number","description":"be a number","tags":{"description":"The number of items to include in your feed. Defaults to 20.\n"},"documentation":"The number of items to include in your feed. Defaults to 20."},"type":{"_internalId":1264,"type":"enum","enum":["full","partial","metadata"],"description":"be one of: `full`, `partial`, `metadata`","completions":["full","partial","metadata"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Whether to include full or partial content in the feed.","long":"Whether to include full or partial content in the feed.\n\n- `full` (default): Include the complete content of the document in the feed.\n- `partial`: Include only the first paragraph of the document in the feed.\n- `metadata`: Use only the title, description, and other document metadata in the feed.\n"}},"documentation":"Whether to include full or partial content in the feed."},"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title for this feed.","long":"The title for this feed. Defaults to the site title provided the Quarto project.\n"}},"documentation":"The title for this feed."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to an image for this feed.","long":"The path to an image for this feed. If not specified, the image for the page the listing \nappears on will be used, otherwise an image will be used if specified for the site \nin the Quarto project.\n"}},"documentation":"The path to an image for this feed."},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"The description of this feed.","long":"The description of this feed. If not specified, the description for the page the \nlisting appears on will be used, otherwise the description \nof the site will be used if specified in the Quarto project.\n"}},"documentation":"The description of this feed."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the feed.","long":"The language of the feed. Omitted if not specified. \nSee [https://www.rssboard.org/rss-language-codes](https://www.rssboard.org/rss-language-codes)\nfor a list of valid language codes.\n"}},"documentation":"The language of the feed."},"categories":{"_internalId":1278,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"A list of categories for which to create separate RSS feeds containing only posts with that category"},"documentation":"A list of categories for which to create separate RSS feeds\ncontaining only posts with that category"},{"_internalId":1277,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"A list of categories for which to create separate RSS feeds containing only posts with that category"},"documentation":"A list of categories for which to create separate RSS feeds\ncontaining only posts with that category"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"xml-stylesheet":{"type":"string","description":"be a string","tags":{"description":"The path to an XML stylesheet (XSL file) used to style the RSS feed."},"documentation":"The path to an XML stylesheet (XSL file) used to style the RSS\nfeed."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Enables an RSS feed for the listing."},"documentation":"Enables an RSS feed for the listing."},"date-format":{"type":"string","description":"be a string","tags":{"description":{"short":"The date format to use when displaying dates (e.g. d-M-yyy).","long":"The date format to use when displaying dates (e.g. d-M-yyy). \nLearn more about supported date formatting values [here](https://quarto.org/docs/reference/dates.html).\n"}},"documentation":"The date format to use when displaying dates (e.g. d-M-yyy)."},"max-description-length":{"type":"number","description":"be a number","tags":{"description":{"short":"The maximum length (in characters) of the description displayed in the listing.","long":"The maximum length (in characters) of the description displayed in the listing.\nDefaults to 175.\n"}},"documentation":"The maximum length (in characters) of the description displayed in\nthe listing."},"image-placeholder":{"type":"string","description":"be a string","tags":{"description":"The default image to use if an item in the listing doesn't have an image."},"documentation":"The default image to use if an item in the listing doesn’t have an\nimage."},"image-lazy-loading":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"If false, images in the listing will be loaded immediately. If true, images will be loaded as they come into view."},"documentation":"If false, images in the listing will be loaded immediately. If true,\nimages will be loaded as they come into view."},"image-align":{"_internalId":1293,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"In `default` type listings, whether to place the image on the right or left side of the post content (`left` or `right`)."},"documentation":"In default type listings, whether to place the image on\nthe right or left side of the post content (left or\nright)."},"image-height":{"type":"string","description":"be a string","tags":{"description":{"short":"The height of the image being displayed.","long":"The height of the image being displayed (a CSS height string).\n\nThe width is automatically determined and the image will fill the rectangle without scaling (cropped to fill).\n"}},"documentation":"The height of the image being displayed."},"grid-columns":{"type":"number","description":"be a number","tags":{"description":{"short":"In `grid` type listings, the number of columns in the grid display.","long":"In grid type listings, the number of columns in the grid display.\nDefaults to 3.\n"}},"documentation":"In grid type listings, the number of columns in the grid\ndisplay."},"grid-item-border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `grid` type listings, whether to display a border around the item card.","long":"In grid type listings, whether to display a border around the item card. Defaults to `true`.\n"}},"documentation":"In grid type listings, whether to display a border\naround the item card."},"grid-item-align":{"_internalId":1302,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `grid` type listings, the alignment of the content within the card.","long":"In grid type listings, the alignment of the content within the card (`left` (default), `right`, or `center`).\n"}},"documentation":"In grid type listings, the alignment of the content\nwithin the card."},"table-striped":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `table` type listings, display the table rows with alternating background colors.","long":"In table type listings, display the table rows with alternating background colors.\nDefaults to `false`.\n"}},"documentation":"In table type listings, display the table rows with\nalternating background colors."},"table-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `table` type listings, highlight rows of the table when the user hovers the mouse over them.","long":"In table type listings, highlight rows of the table when the user hovers the mouse over them.\nDefaults to false.\n"}},"documentation":"In table type listings, highlight rows of the table when\nthe user hovers the mouse over them."},"template":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a custom listing template.","long":"The path to a custom listing template.\n"}},"documentation":"The path to a custom listing template."},"template-params":{"_internalId":1311,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Parameters that are passed to the custom template."},"documentation":"Parameters that are passed to the custom template."},"fields":{"_internalId":1317,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":{"short":"The list of fields to include in this listing","long":"The list of fields to include in this listing.\n"}},"documentation":"The list of fields to include in this listing"},"field-display-names":{"_internalId":1320,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":{"short":"A mapping of display names for listing fields.","long":"A mapping that provides display names for specific fields. For example, to display the title column as ‘Report’ in a table listing you would write:\n\n```yaml\nlisting:\n field-display-names:\n title: \"Report\"\n```\n"}},"documentation":"A mapping of display names for listing fields."},"field-types":{"_internalId":1323,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":{"short":"Provides the date type for the field of a listing item.","long":"Provides the date type for the field of a listing item. Unknown fields are treated\nas strings unless a type is provided. Valid types are `date`, `number`.\n"}},"documentation":"Provides the date type for the field of a listing item."},"field-links":{"_internalId":1328,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":{"short":"This list of fields to display as links in a table listing.","long":"The list of fields to display as hyperlinks to the source document \nwhen the listing type is a table. By default, only the `title` or \n`filename` is displayed as a link.\n"}},"documentation":"This list of fields to display as links in a table listing."},"field-required":{"_internalId":1333,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":{"short":"Fields that items in this listing must have populated.","long":"Fields that items in this listing must have populated.\nIf a listing is rendered and one more items in this listing \nis missing a required field, an error will occur and the render will.\n"}},"documentation":"Fields that items in this listing must have populated."},"include":{"_internalId":1339,"type":"anyOf","anyOf":[{"_internalId":1336,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"_internalId":1338,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1336,"type":"object","description":"be an object","properties":{},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0],"description":"Items with matching field values will be included in the listing."},"documentation":"Items with matching field values will be included in the listing."},"exclude":{"_internalId":1345,"type":"anyOf","anyOf":[{"_internalId":1342,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"_internalId":1344,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1342,"type":"object","description":"be an object","properties":{},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0],"description":"Items with matching field values will be excluded from the listing."},"documentation":"Items with matching field values will be excluded from the\nlisting."}},"patternProperties":{},"closed":true,"$id":"website-listing"},"website-listing-contents-object":{"_internalId":1361,"type":"object","description":"be an object","properties":{"author":{"_internalId":1354,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1353,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string"},"title":{"type":"string","description":"be a string"},"subtitle":{"type":"string","description":"be a string"}},"patternProperties":{},"$id":"website-listing-contents-object"},"csl-date":{"_internalId":1381,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1371,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":1370,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0]}},{"_internalId":1380,"type":"object","description":"be an object","properties":{"year":{"type":"number","description":"be a number","tags":{"description":"The year"},"documentation":"The year"},"month":{"type":"number","description":"be a number","tags":{"description":"The month"},"documentation":"The month"},"day":{"type":"number","description":"be a number","tags":{"description":"The day"},"documentation":"The day"}},"patternProperties":{}}],"description":"be at least one of: a string, at least one of: a number, an array of values, where each element must be a number, an object","$id":"csl-date"},"csl-person":{"_internalId":1401,"type":"anyOf","anyOf":[{"_internalId":1389,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1388,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},{"_internalId":1400,"type":"anyOf","anyOf":[{"_internalId":1398,"type":"object","description":"be an object","properties":{"family-name":{"type":"string","description":"be a string","tags":{"description":"The family name."},"documentation":"The family name."},"given-name":{"type":"string","description":"be a string","tags":{"description":"The given name."},"documentation":"The given name."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention family-name,given-name","type":"string","pattern":"(?!(^family_name$|^familyName$|^given_name$|^givenName$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":1399,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1398,"type":"object","description":"be an object","properties":{"family-name":{"type":"string","description":"be a string","tags":{"description":"The family name."},"documentation":"The family name."},"given-name":{"type":"string","description":"be a string","tags":{"description":"The given name."},"documentation":"The given name."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention family-name,given-name","type":"string","pattern":"(?!(^family_name$|^familyName$|^given_name$|^givenName$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: at least one of: a string, an array of values, where each element must be a string, at least one of: an object, an array of values, where each element must be an object","$id":"csl-person"},"csl-number":{"_internalId":1408,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","$id":"csl-number"},"csl-item-shared":{"_internalId":1706,"type":"object","description":"be an object","properties":{"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"A url to the abstract for this item."},"accessed":{"_internalId":1415,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Date the item has been accessed."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Archive storing the item"},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Collection the item is part of within an archive."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Geographic location of the archive."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"available-date":{"_internalId":1438,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Date the item was initially available"},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Call number (to locate the item in a library)."},"chair":{"_internalId":1443,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"chapter-number":{"_internalId":1446,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"citation-number":{"_internalId":1455,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor).","completions":[]},"collection-editor":{"_internalId":1458,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"collection-number":{"_internalId":1461,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"compiler":{"_internalId":1466,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"composer":{"_internalId":1469,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Composer (e.g. of a musical score)."},"container-author":{"_internalId":1472,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Title of the container holding the item."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Short/abbreviated form of container-title;","completions":[]},"contributor":{"_internalId":1479,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"curator":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"director":{"_internalId":1487,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Director (e.g. of a film)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1496,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"editor":{"_internalId":1499,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"The editor of the item."},"editorial-director":{"_internalId":1502,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"editor-translator":{"_internalId":1505,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Combined editor and translator of a work."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1512,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Date the event related to an item took place."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"executive-producer":{"_internalId":1519,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Executive producer of the item (e.g. of a television series)."},"first-reference-note-number":{"_internalId":1524,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"A url to the full text for this item."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Type, class, or subtype of the item"},"guest":{"_internalId":1531,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Guest (e.g. on a TV show or podcast)."},"host":{"_internalId":1534,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"id":{"_internalId":1541,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"A value which uniquely identifies this item."},"documentation":"A value which uniquely identifies this item."},"illustrator":{"_internalId":1544,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"interviewer":{"_internalId":1547,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"Interviewer (e.g. of an interview)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"International Standard Serial Number."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1562,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Issue number of the item or container holding the item"},"issued":{"_internalId":1565,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Date the item was issued/published."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Keyword(s) or tag(s) attached to the item."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The language of the item (used only for citation of the item)."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"The license information applicable to an item."},"locator":{"_internalId":1576,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"A cite-specific pinpointer within the item."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"narrator":{"_internalId":1581,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Narrator (e.g. of an audio book)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"number":{"_internalId":1586,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Number identifying the item (e.g. a report number)."},"number-of-pages":{"_internalId":1589,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Total number of pages of the cited item."},"number-of-volumes":{"_internalId":1592,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"organizer":{"_internalId":1595,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"original-author":{"_internalId":1598,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"The original creator of a work."},"original-date":{"_internalId":1601,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Issue date of the original version."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"page":{"_internalId":1610,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"page-first":{"_internalId":1613,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-last":{"_internalId":1616,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"part-number":{"_internalId":1619,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Title of the specific part of an item being cited."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"A url to the pdf for this item."},"performer":{"_internalId":1626,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"PubMed Central reference number."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"PubMed reference number."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1641,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Printing number of the item or container holding the item."},"producer":{"_internalId":1644,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"A public url for this item."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"The publisher of the item."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"The geographic location of the publisher."},"recipient":{"_internalId":1653,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Recipient (e.g. of a letter)."},"reviewed-author":{"_internalId":1656,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Author of the item reviewed by the current item."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Title of the item reviewed by the current item."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Scale of e.g. a map or model."},"script-writer":{"_internalId":1665,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"section":{"_internalId":1668,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"series-creator":{"_internalId":1671,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Creator of a series (e.g. of a television series)."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"submitted":{"_internalId":1678,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"supplement-number":{"_internalId":1681,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Short/abbreviated form oftitle.","completions":[]},"translator":{"_internalId":1686,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Translator"},"type":{"_internalId":1689,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"The type\nof the item."},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1698,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"volume":{"_internalId":1701,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Title of the volume of the item or container holding the item."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention abstract-url,accessed,annote,archive,archive-collection,archive_collection,archive-location,archive_location,archive-place,authority,available-date,call-number,chair,chapter-number,citation-key,citation-label,citation-number,collection-editor,collection-number,collection-title,compiler,composer,container-author,container-title,container-title-short,contributor,curator,dimensions,director,division,DOI,edition,editor,editorial-director,editor-translator,event,event-date,event-title,event-place,executive-producer,first-reference-note-number,fulltext-url,genre,guest,host,id,illustrator,interviewer,isbn,ISBN,issn,ISSN,issue,issued,jurisdiction,keyword,language,license,locator,medium,narrator,note,number,number-of-pages,number-of-volumes,organizer,original-author,original-date,original-publisher,original-publisher-place,original-title,page,page-first,page-last,part-number,part-title,pdf-url,performer,pmcid,PMCID,pmid,PMID,printing-number,producer,public-url,publisher,publisher-place,recipient,reviewed-author,reviewed-genre,reviewed-title,scale,script-writer,section,series-creator,source,status,submitted,supplement-number,title-short,translator,type,url,URL,version,volume,volume-title,year-suffix","type":"string","pattern":"(?!(^abstract_url$|^abstractUrl$|^archiveCollection$|^archiveCollection$|^archiveLocation$|^archiveLocation$|^archive_place$|^archivePlace$|^available_date$|^availableDate$|^call_number$|^callNumber$|^chapter_number$|^chapterNumber$|^citation_key$|^citationKey$|^citation_label$|^citationLabel$|^citation_number$|^citationNumber$|^collection_editor$|^collectionEditor$|^collection_number$|^collectionNumber$|^collection_title$|^collectionTitle$|^container_author$|^containerAuthor$|^container_title$|^containerTitle$|^container_title_short$|^containerTitleShort$|^doi$|^doi$|^editorial_director$|^editorialDirector$|^editor_translator$|^editorTranslator$|^event_date$|^eventDate$|^event_title$|^eventTitle$|^event_place$|^eventPlace$|^executive_producer$|^executiveProducer$|^first_reference_note_number$|^firstReferenceNoteNumber$|^fulltext_url$|^fulltextUrl$|^number_of_pages$|^numberOfPages$|^number_of_volumes$|^numberOfVolumes$|^original_author$|^originalAuthor$|^original_date$|^originalDate$|^original_publisher$|^originalPublisher$|^original_publisher_place$|^originalPublisherPlace$|^original_title$|^originalTitle$|^page_first$|^pageFirst$|^page_last$|^pageLast$|^part_number$|^partNumber$|^part_title$|^partTitle$|^pdf_url$|^pdfUrl$|^printing_number$|^printingNumber$|^public_url$|^publicUrl$|^publisher_place$|^publisherPlace$|^reviewed_author$|^reviewedAuthor$|^reviewed_genre$|^reviewedGenre$|^reviewed_title$|^reviewedTitle$|^script_writer$|^scriptWriter$|^series_creator$|^seriesCreator$|^supplement_number$|^supplementNumber$|^title_short$|^titleShort$|^volume_title$|^volumeTitle$|^year_suffix$|^yearSuffix$))","tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true},"$id":"csl-item-shared"},"csl-item":{"_internalId":1706,"type":"object","description":"be an object","properties":{"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"A url to the abstract for this item."},"accessed":{"_internalId":1415,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Date the item has been accessed."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Archive storing the item"},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Collection the item is part of within an archive."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Geographic location of the archive."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"available-date":{"_internalId":1438,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Date the item was initially available"},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Call number (to locate the item in a library)."},"chair":{"_internalId":1443,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"chapter-number":{"_internalId":1446,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"citation-number":{"_internalId":1455,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor).","completions":[]},"collection-editor":{"_internalId":1458,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"collection-number":{"_internalId":1461,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"compiler":{"_internalId":1466,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"composer":{"_internalId":1469,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Composer (e.g. of a musical score)."},"container-author":{"_internalId":1472,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Title of the container holding the item."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Short/abbreviated form of container-title;","completions":[]},"contributor":{"_internalId":1479,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"curator":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"director":{"_internalId":1487,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Director (e.g. of a film)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1496,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"editor":{"_internalId":1499,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"The editor of the item."},"editorial-director":{"_internalId":1502,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"editor-translator":{"_internalId":1505,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Combined editor and translator of a work."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1512,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Date the event related to an item took place."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"executive-producer":{"_internalId":1519,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Executive producer of the item (e.g. of a television series)."},"first-reference-note-number":{"_internalId":1524,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"A url to the full text for this item."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Type, class, or subtype of the item"},"guest":{"_internalId":1531,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Guest (e.g. on a TV show or podcast)."},"host":{"_internalId":1534,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"id":{"_internalId":1726,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"Citation identifier for the item (e.g. \"item1\"). Will be autogenerated if not provided."},"documentation":"Citation identifier for the item (e.g. “item1”). Will be\nautogenerated if not provided."},"illustrator":{"_internalId":1544,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"interviewer":{"_internalId":1547,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"Interviewer (e.g. of an interview)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"International Standard Serial Number."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1562,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Issue number of the item or container holding the item"},"issued":{"_internalId":1565,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Date the item was issued/published."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Keyword(s) or tag(s) attached to the item."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The language of the item (used only for citation of the item)."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"The license information applicable to an item."},"locator":{"_internalId":1576,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"A cite-specific pinpointer within the item."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"narrator":{"_internalId":1581,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Narrator (e.g. of an audio book)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"number":{"_internalId":1586,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Number identifying the item (e.g. a report number)."},"number-of-pages":{"_internalId":1589,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Total number of pages of the cited item."},"number-of-volumes":{"_internalId":1592,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"organizer":{"_internalId":1595,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"original-author":{"_internalId":1598,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"The original creator of a work."},"original-date":{"_internalId":1601,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Issue date of the original version."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"page":{"_internalId":1610,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"page-first":{"_internalId":1613,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-last":{"_internalId":1616,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"part-number":{"_internalId":1619,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Title of the specific part of an item being cited."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"A url to the pdf for this item."},"performer":{"_internalId":1626,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"PubMed Central reference number."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"PubMed reference number."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1641,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Printing number of the item or container holding the item."},"producer":{"_internalId":1644,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"A public url for this item."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"The publisher of the item."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"The geographic location of the publisher."},"recipient":{"_internalId":1653,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Recipient (e.g. of a letter)."},"reviewed-author":{"_internalId":1656,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Author of the item reviewed by the current item."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Title of the item reviewed by the current item."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Scale of e.g. a map or model."},"script-writer":{"_internalId":1665,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"section":{"_internalId":1668,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"series-creator":{"_internalId":1671,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Creator of a series (e.g. of a television series)."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"submitted":{"_internalId":1678,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"supplement-number":{"_internalId":1681,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Short/abbreviated form oftitle.","completions":[]},"translator":{"_internalId":1686,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Translator"},"type":{"_internalId":1689,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"The type\nof the item."},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1698,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"volume":{"_internalId":1701,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Title of the volume of the item or container holding the item."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"abstract":{"type":"string","description":"be a string","tags":{"description":"Abstract of the item (e.g. the abstract of a journal article)"},"documentation":"Abstract of the item (e.g. the abstract of a journal article)"},"author":{"_internalId":1713,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The author(s) of the item."},"documentation":"The author(s) of the item."},"doi":{"type":"string","description":"be a string","tags":{"description":"Digital Object Identifier (e.g. \"10.1128/AEM.02591-07\")"},"documentation":"Digital Object Identifier (e.g. “10.1128/AEM.02591-07”)"},"references":{"type":"string","description":"be a string","tags":{"description":{"short":"Resources related to the procedural history of a legal case or legislation.","long":"Resources related to the procedural history of a legal case or legislation;\n\nCan also be used to refer to the procedural history of other items (e.g. \n\"Conference canceled\" for a presentation accepted as a conference that was subsequently \ncanceled; details of a retraction or correction notice)\n"}},"documentation":"Resources related to the procedural history of a legal case or\nlegislation."},"title":{"type":"string","description":"be a string","tags":{"description":"The primary title of the item."},"documentation":"The primary title of the item."}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true},"$id":"csl-item"},"citation-item":{"_internalId":1706,"type":"object","description":"be an object","properties":{"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"A url to the abstract for this item."},"accessed":{"_internalId":1415,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Date the item has been accessed."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Archive storing the item"},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Collection the item is part of within an archive."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Geographic location of the archive."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"available-date":{"_internalId":1438,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Date the item was initially available"},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Call number (to locate the item in a library)."},"chair":{"_internalId":1443,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"chapter-number":{"_internalId":1446,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"citation-number":{"_internalId":1455,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor).","completions":[]},"collection-editor":{"_internalId":1458,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"collection-number":{"_internalId":1461,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"compiler":{"_internalId":1466,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"composer":{"_internalId":1469,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Composer (e.g. of a musical score)."},"container-author":{"_internalId":1472,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Title of the container holding the item."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Short/abbreviated form of container-title;","completions":[]},"contributor":{"_internalId":1479,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"curator":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"director":{"_internalId":1487,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Director (e.g. of a film)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1496,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"editor":{"_internalId":1499,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"The editor of the item."},"editorial-director":{"_internalId":1502,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"editor-translator":{"_internalId":1505,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Combined editor and translator of a work."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1512,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Date the event related to an item took place."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"executive-producer":{"_internalId":1519,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Executive producer of the item (e.g. of a television series)."},"first-reference-note-number":{"_internalId":1524,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"A url to the full text for this item."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Type, class, or subtype of the item"},"guest":{"_internalId":1531,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Guest (e.g. on a TV show or podcast)."},"host":{"_internalId":1534,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"id":{"_internalId":1726,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"Citation identifier for the item (e.g. \"item1\"). Will be autogenerated if not provided."},"documentation":"Citation identifier for the item (e.g. “item1”). Will be\nautogenerated if not provided."},"illustrator":{"_internalId":1544,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"interviewer":{"_internalId":1547,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"Interviewer (e.g. of an interview)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"International Standard Serial Number."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1562,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Issue number of the item or container holding the item"},"issued":{"_internalId":1565,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Date the item was issued/published."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Keyword(s) or tag(s) attached to the item."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The language of the item (used only for citation of the item)."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"The license information applicable to an item."},"locator":{"_internalId":1576,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"A cite-specific pinpointer within the item."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"narrator":{"_internalId":1581,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Narrator (e.g. of an audio book)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"number":{"_internalId":1586,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Number identifying the item (e.g. a report number)."},"number-of-pages":{"_internalId":1589,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Total number of pages of the cited item."},"number-of-volumes":{"_internalId":1592,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"organizer":{"_internalId":1595,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"original-author":{"_internalId":1598,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"The original creator of a work."},"original-date":{"_internalId":1601,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Issue date of the original version."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"page":{"_internalId":1610,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"page-first":{"_internalId":1613,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-last":{"_internalId":1616,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"part-number":{"_internalId":1619,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Title of the specific part of an item being cited."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"A url to the pdf for this item."},"performer":{"_internalId":1626,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"PubMed Central reference number."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"PubMed reference number."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1641,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Printing number of the item or container holding the item."},"producer":{"_internalId":1644,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"A public url for this item."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"The publisher of the item."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"The geographic location of the publisher."},"recipient":{"_internalId":1653,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Recipient (e.g. of a letter)."},"reviewed-author":{"_internalId":1656,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Author of the item reviewed by the current item."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Title of the item reviewed by the current item."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Scale of e.g. a map or model."},"script-writer":{"_internalId":1665,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"section":{"_internalId":1668,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"series-creator":{"_internalId":1671,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Creator of a series (e.g. of a television series)."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"submitted":{"_internalId":1678,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"supplement-number":{"_internalId":1681,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Short/abbreviated form oftitle.","completions":[]},"translator":{"_internalId":1686,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Translator"},"type":{"_internalId":1689,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"The type\nof the item."},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1698,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"volume":{"_internalId":1701,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Title of the volume of the item or container holding the item."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"abstract":{"type":"string","description":"be a string","tags":{"description":"Abstract of the item (e.g. the abstract of a journal article)"},"documentation":"Abstract of the item (e.g. the abstract of a journal article)"},"author":{"_internalId":1713,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The author(s) of the item."},"documentation":"The author(s) of the item."},"doi":{"type":"string","description":"be a string","tags":{"description":"Digital Object Identifier (e.g. \"10.1128/AEM.02591-07\")"},"documentation":"Digital Object Identifier (e.g. “10.1128/AEM.02591-07”)"},"references":{"type":"string","description":"be a string","tags":{"description":{"short":"Resources related to the procedural history of a legal case or legislation.","long":"Resources related to the procedural history of a legal case or legislation;\n\nCan also be used to refer to the procedural history of other items (e.g. \n\"Conference canceled\" for a presentation accepted as a conference that was subsequently \ncanceled; details of a retraction or correction notice)\n"}},"documentation":"Resources related to the procedural history of a legal case or\nlegislation."},"title":{"type":"string","description":"be a string","tags":{"description":"The primary title of the item."},"documentation":"The primary title of the item."},"article-id":{"_internalId":1747,"type":"anyOf","anyOf":[{"_internalId":1745,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1744,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier"},"documentation":"The type of identifier"},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The value for the identifier"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"},{"_internalId":1746,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":1745,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1744,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier"},"documentation":"The type of identifier"},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The value for the identifier"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"The unique identifier for this article."},"documentation":"The unique identifier for this article."},"elocation-id":{"type":"string","description":"be a string","tags":{"description":"Bibliographic identifier for a document that does not have traditional printed page numbers."},"documentation":"Bibliographic identifier for a document that does not have\ntraditional printed page numbers."},"eissn":{"type":"string","description":"be a string","tags":{"description":"Electronic International Standard Serial Number."},"documentation":"Electronic International Standard Serial Number."},"pissn":{"type":"string","description":"be a string","tags":{"description":"Print International Standard Serial Number."},"documentation":"Print International Standard Serial Number."},"art-access-id":{"type":"string","description":"be a string","tags":{"description":"Generic article accession identifier."},"documentation":"Generic article accession identifier."},"publisher-location":{"type":"string","description":"be a string","tags":{"description":"The location of the publisher of this item."},"documentation":"The location of the publisher of this item."},"subject":{"type":"string","description":"be a string","tags":{"description":"The name of a subject or topic describing the article."},"documentation":"The name of a subject or topic describing the article."},"categories":{"_internalId":1765,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"A list of subjects or topics describing the article."},"documentation":"A list of subjects or topics describing the article."},{"_internalId":1764,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"A list of subjects or topics describing the article."},"documentation":"A list of subjects or topics describing the article."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"container-id":{"_internalId":1781,"type":"anyOf","anyOf":[{"_internalId":1779,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1778,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier (e.g. `nlm-ta` or `pmc`)."},"documentation":"The type of identifier (e.g. nlm-ta or\npmc)."},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The value for the identifier"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"},{"_internalId":1780,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":1779,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1778,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier (e.g. `nlm-ta` or `pmc`)."},"documentation":"The type of identifier (e.g. nlm-ta or\npmc)."},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The value for the identifier"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":{"short":"External identifier of a publication or journal.","long":"External identifier, typically assigned to a journal by \na publisher, archive, or library to provide a unique identifier for \nthe journal or publication.\n"}},"documentation":"External identifier of a publication or journal."},"jats-type":{"type":"string","description":"be a string","tags":{"description":"The type used for the JATS `article` tag."},"documentation":"The type used for the JATS article tag."}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true},"$id":"citation-item"},"smart-include":{"_internalId":1799,"type":"anyOf","anyOf":[{"_internalId":1793,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"Textual content to add to includes"},"documentation":"Textual content to add to includes"}},"patternProperties":{},"required":["text"],"closed":true},{"_internalId":1798,"type":"object","description":"be an object","properties":{"file":{"type":"string","description":"be a string","tags":{"description":"Name of file with content to add to includes"},"documentation":"Name of file with content to add to includes"}},"patternProperties":{},"required":["file"],"closed":true}],"description":"be at least one of: an object, an object","$id":"smart-include"},"semver":{"_internalId":1802,"type":"string","pattern":"^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$","description":"be a string that satisfies regex \"^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$\"","$id":"semver","tags":{"description":"Version number according to Semantic Versioning"},"documentation":"Version number according to Semantic Versioning"},"quarto-date":{"_internalId":1814,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1813,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string"},"value":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["value"],"closed":true}],"description":"be at least one of: a string, an object","$id":"quarto-date"},"project-profile":{"_internalId":1834,"type":"object","description":"be an object","properties":{"default":{"_internalId":1824,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1823,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Default profile to apply if QUARTO_PROFILE is not defined.\n"},"documentation":"Default profile to apply if QUARTO_PROFILE is not defined."},"group":{"_internalId":1833,"type":"anyOf","anyOf":[{"_internalId":1831,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},{"_internalId":1832,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":1831,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}}],"description":"be at least one of: an array of values, where each element must be a string, an array of values, where each element must be an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Define a profile group for which at least one profile is always active.\n"},"documentation":"Define a profile group for which at least one profile is always\nactive."}},"patternProperties":{},"closed":true,"$id":"project-profile","tags":{"description":"Specify a default profile and profile groups"},"documentation":"Specify a default profile and profile groups"},"bad-parse-schema":{"_internalId":1842,"type":"object","description":"be an object","properties":{},"patternProperties":{},"propertyNames":{"_internalId":1841,"type":"string","pattern":"^[^\\s]+$","description":"be a string that satisfies regex \"^[^\\s]+$\""},"$id":"bad-parse-schema"},"quarto-dev-schema":{"_internalId":1891,"type":"object","description":"be an object","properties":{"_quarto":{"_internalId":1890,"type":"object","description":"be an object","properties":{"trace-filters":{"type":"string","description":"be a string"},"tests":{"_internalId":1889,"type":"object","description":"be an object","properties":{"run":{"_internalId":1888,"type":"object","description":"be an object","properties":{"ci":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Run tests on CI (true = run, false = skip)"},"documentation":"Run tests on CI (true = run, false = skip)"},"skip":{"_internalId":1863,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"description":"Skip test unconditionally (true = skip with default message, string = skip with custom message)"},"documentation":"Skip test unconditionally (true = skip with default message, string =\nskip with custom message)"},"os":{"_internalId":1875,"type":"anyOf","anyOf":[{"_internalId":1868,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true},{"_internalId":1874,"type":"array","description":"be an array of values, where each element must be one of: `linux`, `darwin`, `windows`","items":{"_internalId":1873,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `linux`, `darwin`, `windows`, an array of values, where each element must be one of: `linux`, `darwin`, `windows`","tags":{"description":"Run tests ONLY on these platforms (whitelist)"},"documentation":"Run tests ONLY on these platforms (whitelist)"},"not_os":{"_internalId":1887,"type":"anyOf","anyOf":[{"_internalId":1880,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true},{"_internalId":1886,"type":"array","description":"be an array of values, where each element must be one of: `linux`, `darwin`, `windows`","items":{"_internalId":1885,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `linux`, `darwin`, `windows`, an array of values, where each element must be one of: `linux`, `darwin`, `windows`","tags":{"description":"Don't run tests on these platforms (blacklist)"},"documentation":"Don’t run tests on these platforms (blacklist)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention ci,skip,os,not_os","type":"string","pattern":"(?!(^not-os$|^notOs$))","tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true,"description":"Control when tests should run"},"documentation":"Control when tests should run"}},"patternProperties":{}}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention trace-filters,tests","type":"string","pattern":"(?!(^trace_filters$|^traceFilters$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true,"hidden":true},"completions":[]}},"patternProperties":{},"$id":"quarto-dev-schema"},"notebook-view-schema":{"_internalId":1909,"type":"object","description":"be an object","properties":{"notebook":{"type":"string","description":"be a string","tags":{"description":"The path to the locally referenced notebook."},"documentation":"The path to the locally referenced notebook."},"title":{"_internalId":1904,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The title of the notebook when viewed."},"documentation":"The title of the notebook when viewed."},"url":{"type":"string","description":"be a string","tags":{"description":"The url to use when viewing this notebook."},"documentation":"The url to use when viewing this notebook."},"download-url":{"type":"string","description":"be a string","tags":{"description":"The url to use when downloading the notebook from the preview"},"documentation":"The url to use when downloading the notebook from the preview"}},"patternProperties":{},"required":["notebook"],"propertyNames":{"errorMessage":"property ${value} does not match case convention notebook,title,url,download-url","type":"string","pattern":"(?!(^download_url$|^downloadUrl$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"notebook-view-schema"},"code-links-schema":{"_internalId":1939,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1938,"type":"anyOf","anyOf":[{"_internalId":1936,"type":"anyOf","anyOf":[{"_internalId":1932,"type":"object","description":"be an object","properties":{"icon":{"type":"string","description":"be a string","tags":{"description":"The bootstrap icon for this code link."},"documentation":"The bootstrap icon for this code link."},"text":{"type":"string","description":"be a string","tags":{"description":"The text for this code link."},"documentation":"The text for this code link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for this code link."},"documentation":"The href for this code link."},"rel":{"type":"string","description":"be a string","tags":{"description":"The rel used in the `a` tag for this code link."},"documentation":"The rel used in the a tag for this code link."},"target":{"type":"string","description":"be a string","tags":{"description":"The target used in the `a` tag for this code link."},"documentation":"The target used in the a tag for this code link."}},"patternProperties":{}},{"_internalId":1935,"type":"enum","enum":["repo","binder","devcontainer"],"description":"be one of: `repo`, `binder`, `devcontainer`","completions":["repo","binder","devcontainer"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, one of: `repo`, `binder`, `devcontainer`"},{"_internalId":1937,"type":"array","description":"be an array of values, where each element must be at least one of: an object, one of: `repo`, `binder`, `devcontainer`","items":{"_internalId":1936,"type":"anyOf","anyOf":[{"_internalId":1932,"type":"object","description":"be an object","properties":{"icon":{"type":"string","description":"be a string","tags":{"description":"The bootstrap icon for this code link."},"documentation":"The bootstrap icon for this code link."},"text":{"type":"string","description":"be a string","tags":{"description":"The text for this code link."},"documentation":"The text for this code link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for this code link."},"documentation":"The href for this code link."},"rel":{"type":"string","description":"be a string","tags":{"description":"The rel used in the `a` tag for this code link."},"documentation":"The rel used in the a tag for this code link."},"target":{"type":"string","description":"be a string","tags":{"description":"The target used in the `a` tag for this code link."},"documentation":"The target used in the a tag for this code link."}},"patternProperties":{}},{"_internalId":1935,"type":"enum","enum":["repo","binder","devcontainer"],"description":"be one of: `repo`, `binder`, `devcontainer`","completions":["repo","binder","devcontainer"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, one of: `repo`, `binder`, `devcontainer`"}}],"description":"be at least one of: at least one of: an object, one of: `repo`, `binder`, `devcontainer`, an array of values, where each element must be at least one of: an object, one of: `repo`, `binder`, `devcontainer`","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: an object, one of: `repo`, `binder`, `devcontainer`, an array of values, where each element must be at least one of: an object, one of: `repo`, `binder`, `devcontainer`","$id":"code-links-schema"},"manuscript-schema":{"_internalId":1987,"type":"object","description":"be an object","properties":{"article":{"type":"string","description":"be a string","tags":{"description":"The input document that will serve as the root document for this manuscript"},"documentation":"The input document that will serve as the root document for this\nmanuscript"},"code-links":{"_internalId":1950,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema","tags":{"description":"Code links to display for this manuscript."},"documentation":"Code links to display for this manuscript."},"manuscript-url":{"type":"string","description":"be a string","tags":{"description":"The deployed url for this manuscript"},"documentation":"The deployed url for this manuscript"},"meca-bundle":{"_internalId":1959,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"description":"Whether to generate a MECA bundle for this manuscript"},"documentation":"Whether to generate a MECA bundle for this manuscript"},"notebooks":{"_internalId":1970,"type":"array","description":"be an array of values, where each element must be at least one of: a string, notebook-view-schema","items":{"_internalId":1969,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1968,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"}},"resources":{"_internalId":1978,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Additional file resources to be copied to output directory"},{"_internalId":1977,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Additional file resources to be copied to output directory"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"environment":{"_internalId":1986,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Files that specify the execution environment (e.g. renv.lock, requirements.text, etc...)"},"documentation":"Files that specify the execution environment (e.g. renv.lock,\nrequirements.text, etc…)"},{"_internalId":1985,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Files that specify the execution environment (e.g. renv.lock, requirements.text, etc...)"},"documentation":"Files that specify the execution environment (e.g. renv.lock,\nrequirements.text, etc…)"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true,"$id":"manuscript-schema"},"brand-meta":{"_internalId":2024,"type":"object","description":"be an object","properties":{"name":{"_internalId":2001,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2000,"type":"object","description":"be an object","properties":{"full":{"type":"string","description":"be a string","tags":{"description":"The full, official or legal name of the company or brand."},"documentation":"The full, official or legal name of the company or brand."},"short":{"type":"string","description":"be a string","tags":{"description":"The short, informal, or common name of the company or brand."},"documentation":"The short, informal, or common name of the company or brand."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The brand name."},"documentation":"The brand name."},"link":{"_internalId":2023,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2022,"type":"object","description":"be an object","properties":{"home":{"type":"string","description":"be a string","tags":{"description":"The brand's home page or website."},"documentation":"The brand’s home page or website."},"mastodon":{"type":"string","description":"be a string","tags":{"description":"The brand's Mastodon URL."},"documentation":"The brand’s Mastodon URL."},"bluesky":{"type":"string","description":"be a string","tags":{"description":"The brand's Bluesky URL."},"documentation":"The brand’s Bluesky URL."},"github":{"type":"string","description":"be a string","tags":{"description":"The brand's GitHub URL."},"documentation":"The brand’s GitHub URL."},"linkedin":{"type":"string","description":"be a string","tags":{"description":"The brand's LinkedIn URL."},"documentation":"The brand’s LinkedIn URL."},"twitter":{"type":"string","description":"be a string","tags":{"description":"The brand's Twitter URL."},"documentation":"The brand’s Twitter URL."},"facebook":{"type":"string","description":"be a string","tags":{"description":"The brand's Facebook URL."},"documentation":"The brand’s Facebook URL."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Important links for the brand, including social media links. If a single string, it is the brand's home page or website. Additional fields are allowed for internal use.\n"},"documentation":"Important links for the brand, including social media links. If a\nsingle string, it is the brand’s home page or website. Additional fields\nare allowed for internal use."}},"patternProperties":{},"$id":"brand-meta","tags":{"description":"Metadata for a brand, including the brand name and important links.\n"},"documentation":"Metadata for a brand, including the brand name and important\nlinks."},"brand-string-light-dark":{"_internalId":2040,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2039,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's light-colored logo or icon.\n"},"documentation":"A link or path to the brand’s light-colored logo or icon."},"dark":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's dark-colored logo or icon.\n"},"documentation":"A link or path to the brand’s dark-colored logo or icon."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-string-light-dark"},"brand-logo-explicit-resource":{"_internalId":2049,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"Alternative text for the logo, used for accessibility."}},"patternProperties":{},"required":["path"],"closed":true,"$id":"brand-logo-explicit-resource"},"brand-logo-resource":{"_internalId":2057,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2056,"type":"ref","$ref":"brand-logo-explicit-resource","description":"be brand-logo-explicit-resource"}],"description":"be at least one of: a string, brand-logo-explicit-resource","$id":"brand-logo-resource"},"brand-logo-single":{"_internalId":2082,"type":"object","description":"be an object","properties":{"images":{"_internalId":2069,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2068,"type":"ref","$ref":"brand-logo-resource","description":"be brand-logo-resource"},"tags":{"description":"A dictionary of named logo resources."},"documentation":"A dictionary of named logo resources."},"small":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's small-sized logo or icon.\n"},"documentation":"A link or path to the brand’s small-sized logo or icon."},"medium":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's medium-sized logo.\n"},"documentation":"A link or path to the brand’s medium-sized logo."},"large":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's large- or full-sized logo.\n"},"documentation":"A link or path to the brand’s large- or full-sized logo."}},"patternProperties":{},"closed":true,"$id":"brand-logo-single","tags":{"description":"Provide definitions and defaults for brand's logo in various formats and sizes.\n"},"documentation":"Provide definitions and defaults for brand’s logo in various formats\nand sizes."},"brand-logo-unified":{"_internalId":2110,"type":"object","description":"be an object","properties":{"images":{"_internalId":2094,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2093,"type":"ref","$ref":"brand-logo-resource","description":"be brand-logo-resource"},"tags":{"description":"A dictionary of named logo resources."},"documentation":"A dictionary of named logo resources."},"small":{"_internalId":2099,"type":"ref","$ref":"brand-string-light-dark","description":"be brand-string-light-dark","tags":{"description":"A link or path to the brand's small-sized logo or icon, or a link or path to both the light and dark versions.\n"},"documentation":"A link or path to the brand’s small-sized logo or icon, or a link or\npath to both the light and dark versions."},"medium":{"_internalId":2104,"type":"ref","$ref":"brand-string-light-dark","description":"be brand-string-light-dark","tags":{"description":"A link or path to the brand's medium-sized logo, or a link or path to both the light and dark versions.\n"},"documentation":"A link or path to the brand’s medium-sized logo, or a link or path to\nboth the light and dark versions."},"large":{"_internalId":2109,"type":"ref","$ref":"brand-string-light-dark","description":"be brand-string-light-dark","tags":{"description":"A link or path to the brand's large- or full-sized logo, or a link or path to both the light and dark versions.\n"},"documentation":"A link or path to the brand’s large- or full-sized logo, or a link or\npath to both the light and dark versions."}},"patternProperties":{},"closed":true,"$id":"brand-logo-unified","tags":{"description":"Provide definitions and defaults for brand's logo in various formats and sizes.\n"},"documentation":"Provide definitions and defaults for brand’s logo in various formats\nand sizes."},"brand-named-logo":{"_internalId":2113,"type":"enum","enum":["small","medium","large"],"description":"be one of: `small`, `medium`, `large`","completions":["small","medium","large"],"exhaustiveCompletions":true,"$id":"brand-named-logo","tags":{"description":"Names of customizeable logos"},"documentation":"Names of customizeable logos"},"logo-options":{"_internalId":2124,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path or brand.yml logo resource name.\n"},"documentation":"Path or brand.yml logo resource name."},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"Alternative text for the logo, used for accessibility."}},"patternProperties":{},"required":["path"],"$id":"logo-options"},"logo-specifier":{"_internalId":2134,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2133,"type":"ref","$ref":"logo-options","description":"be logo-options"}],"description":"be at least one of: a string, logo-options","$id":"logo-specifier"},"logo-options-path-optional":{"_internalId":2145,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path or brand.yml logo resource name.\n"},"documentation":"Path or brand.yml logo resource name."},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"Alternative text for the logo, used for accessibility."}},"patternProperties":{},"$id":"logo-options-path-optional"},"logo-specifier-path-optional":{"_internalId":2155,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2154,"type":"ref","$ref":"logo-options-path-optional","description":"be logo-options-path-optional"}],"description":"be at least one of: a string, logo-options-path-optional","$id":"logo-specifier-path-optional"},"logo-light-dark-specifier":{"_internalId":2177,"type":"anyOf","anyOf":[{"_internalId":2160,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":2163,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier"},{"_internalId":2176,"type":"object","description":"be an object","properties":{"light":{"_internalId":2170,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier","tags":{"description":"Specification of a light logo\n"},"documentation":"Specification of a light logo"},"dark":{"_internalId":2175,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier","tags":{"description":"Specification of a dark logo\n"},"documentation":"Specification of a dark logo"}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', logo-specifier, an object","$id":"logo-light-dark-specifier","tags":{"description":"Any of the ways a logo can be specified: string, object, or light/dark object of string or object. Use `false` to explicitly disable the logo.\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object. Use false to\nexplicitly disable the logo."},"logo-light-dark-specifier-path-optional":{"_internalId":2199,"type":"anyOf","anyOf":[{"_internalId":2182,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":2185,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional"},{"_internalId":2198,"type":"object","description":"be an object","properties":{"light":{"_internalId":2192,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional","tags":{"description":"Specification of a light logo\n"},"documentation":"Specification of a light logo"},"dark":{"_internalId":2197,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional","tags":{"description":"Specification of a dark logo\n"},"documentation":"Specification of a dark logo"}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', logo-specifier-path-optional, an object","$id":"logo-light-dark-specifier-path-optional","tags":{"description":"Any of the ways a logo can be specified: string, object, or light/dark object of string or object. Use `false` to explicitly disable the logo.\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object. Use false to\nexplicitly disable the logo."},"normalized-logo-light-dark-specifier":{"_internalId":2212,"type":"object","description":"be an object","properties":{"light":{"_internalId":2206,"type":"ref","$ref":"logo-options","description":"be logo-options","tags":{"description":"Options for a light logo\n"},"documentation":"Options for a light logo"},"dark":{"_internalId":2211,"type":"ref","$ref":"logo-options","description":"be logo-options","tags":{"description":"Options for a dark logo\n"},"documentation":"Options for a dark logo"}},"patternProperties":{},"closed":true,"$id":"normalized-logo-light-dark-specifier","tags":{"description":"Any of the ways a logo can be specified: string, object, or light/dark object of string or object\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object"},"brand-color-value":{"type":"string","description":"be a string","$id":"brand-color-value"},"brand-color-single":{"_internalId":2287,"type":"object","description":"be an object","properties":{"palette":{"_internalId":2226,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2225,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},"tags":{"description":"The brand's custom color palette. Any number of colors can be defined, each color having a custom name.\n"},"documentation":"The brand’s custom color palette. Any number of colors can be\ndefined, each color having a custom name."},"foreground":{"_internalId":2231,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The foreground color, used for text."},"documentation":"The foreground color, used for text."},"background":{"_internalId":2236,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The background color, used for the page background."},"documentation":"The background color, used for the page background."},"primary":{"_internalId":2241,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The primary accent color, i.e. the main theme color. Typically used for hyperlinks, active states, primary action buttons, etc.\n"},"documentation":"The primary accent color, i.e. the main theme color. Typically used\nfor hyperlinks, active states, primary action buttons, etc."},"secondary":{"_internalId":2246,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The secondary accent color. Typically used for lighter text or disabled states.\n"},"documentation":"The secondary accent color. Typically used for lighter text or\ndisabled states."},"tertiary":{"_internalId":2251,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The tertiary accent color. Typically an even lighter color, used for hover states, accents, and wells.\n"},"documentation":"The tertiary accent color. Typically an even lighter color, used for\nhover states, accents, and wells."},"success":{"_internalId":2256,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for positive or successful actions and information."},"documentation":"The color used for positive or successful actions and\ninformation."},"info":{"_internalId":2261,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for neutral or informational actions and information."},"documentation":"The color used for neutral or informational actions and\ninformation."},"warning":{"_internalId":2266,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for warning or cautionary actions and information."},"documentation":"The color used for warning or cautionary actions and information."},"danger":{"_internalId":2271,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for errors, dangerous actions, or negative information."},"documentation":"The color used for errors, dangerous actions, or negative\ninformation."},"light":{"_internalId":2276,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A bright color, used as a high-contrast foreground color on dark elements or low-contrast background color on light elements.\n"},"documentation":"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements."},"dark":{"_internalId":2281,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A dark color, used as a high-contrast foreground color on light elements or high-contrast background color on light elements.\n"},"documentation":"A dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements."},"link":{"_internalId":2286,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for hyperlinks. If not defined, the `primary` color is used.\n"},"documentation":"The color used for hyperlinks. If not defined, the\nprimary color is used."}},"patternProperties":{},"closed":true,"$id":"brand-color-single","tags":{"description":"The brand's custom color palette and theme.\n"},"documentation":"The brand’s custom color palette and theme."},"brand-color-light-dark":{"_internalId":2306,"type":"anyOf","anyOf":[{"_internalId":2292,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},{"_internalId":2305,"type":"object","description":"be an object","properties":{"light":{"_internalId":2299,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A link or path to the brand's light-colored logo or icon.\n"},"documentation":"A link or path to the brand’s light-colored logo or icon."},"dark":{"_internalId":2304,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A link or path to the brand's dark-colored logo or icon.\n"},"documentation":"A link or path to the brand’s dark-colored logo or icon."}},"patternProperties":{},"closed":true}],"description":"be at least one of: brand-color-value, an object","$id":"brand-color-light-dark"},"brand-color-unified":{"_internalId":2377,"type":"object","description":"be an object","properties":{"palette":{"_internalId":2316,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2315,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},"tags":{"description":"The brand's custom color palette. Any number of colors can be defined, each color having a custom name.\n"},"documentation":"The brand’s custom color palette. Any number of colors can be\ndefined, each color having a custom name."},"foreground":{"_internalId":2321,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The foreground color, used for text."},"documentation":"The foreground color, used for text."},"background":{"_internalId":2326,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The background color, used for the page background."},"documentation":"The background color, used for the page background."},"primary":{"_internalId":2331,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The primary accent color, i.e. the main theme color. Typically used for hyperlinks, active states, primary action buttons, etc.\n"},"documentation":"The primary accent color, i.e. the main theme color. Typically used\nfor hyperlinks, active states, primary action buttons, etc."},"secondary":{"_internalId":2336,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The secondary accent color. Typically used for lighter text or disabled states.\n"},"documentation":"The secondary accent color. Typically used for lighter text or\ndisabled states."},"tertiary":{"_internalId":2341,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The tertiary accent color. Typically an even lighter color, used for hover states, accents, and wells.\n"},"documentation":"The tertiary accent color. Typically an even lighter color, used for\nhover states, accents, and wells."},"success":{"_internalId":2346,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for positive or successful actions and information."},"documentation":"The color used for positive or successful actions and\ninformation."},"info":{"_internalId":2351,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for neutral or informational actions and information."},"documentation":"The color used for neutral or informational actions and\ninformation."},"warning":{"_internalId":2356,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for warning or cautionary actions and information."},"documentation":"The color used for warning or cautionary actions and information."},"danger":{"_internalId":2361,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for errors, dangerous actions, or negative information."},"documentation":"The color used for errors, dangerous actions, or negative\ninformation."},"light":{"_internalId":2366,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"A bright color, used as a high-contrast foreground color on dark elements or low-contrast background color on light elements.\n"},"documentation":"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements."},"dark":{"_internalId":2371,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"A dark color, used as a high-contrast foreground color on light elements or high-contrast background color on light elements.\n"},"documentation":"A dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements."},"link":{"_internalId":2376,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for hyperlinks. If not defined, the `primary` color is used.\n"},"documentation":"The color used for hyperlinks. If not defined, the\nprimary color is used."}},"patternProperties":{},"closed":true,"$id":"brand-color-unified","tags":{"description":"The brand's custom color palette and theme.\n"},"documentation":"The brand’s custom color palette and theme."},"brand-maybe-named-color":{"_internalId":2387,"type":"anyOf","anyOf":[{"_internalId":2382,"type":"ref","$ref":"brand-named-theme-color","description":"be brand-named-theme-color"},{"type":"string","description":"be a string"}],"description":"be at least one of: brand-named-theme-color, a string","$id":"brand-maybe-named-color","tags":{"description":"A color, which may be a named brand color.\n"},"documentation":"A color, which may be a named brand color."},"brand-maybe-named-color-light-dark":{"_internalId":2406,"type":"anyOf","anyOf":[{"_internalId":2392,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},{"_internalId":2405,"type":"object","description":"be an object","properties":{"light":{"_internalId":2399,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color","tags":{"description":"A link or path to the brand's light-colored logo or icon.\n"},"documentation":"A link or path to the brand’s light-colored logo or icon."},"dark":{"_internalId":2404,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color","tags":{"description":"A link or path to the brand's dark-colored logo or icon.\n"},"documentation":"A link or path to the brand’s dark-colored logo or icon."}},"patternProperties":{},"closed":true}],"description":"be at least one of: brand-maybe-named-color, an object","$id":"brand-maybe-named-color-light-dark"},"brand-named-theme-color":{"_internalId":2409,"type":"enum","enum":["foreground","background","primary","secondary","tertiary","success","info","warning","danger","light","dark","link"],"description":"be one of: `foreground`, `background`, `primary`, `secondary`, `tertiary`, `success`, `info`, `warning`, `danger`, `light`, `dark`, `link`","completions":["foreground","background","primary","secondary","tertiary","success","info","warning","danger","light","dark","link"],"exhaustiveCompletions":true,"$id":"brand-named-theme-color","tags":{"description":"A named brand color, taken either from `color.theme` or `color.palette` (in that order).\n"},"documentation":"A named brand color, taken either from color.theme or\ncolor.palette (in that order)."},"brand-typography-single":{"_internalId":2436,"type":"object","description":"be an object","properties":{"fonts":{"_internalId":2417,"type":"array","description":"be an array of values, where each element must be brand-font","items":{"_internalId":2416,"type":"ref","$ref":"brand-font","description":"be brand-font"},"tags":{"description":"Font files and definitions for the brand."},"documentation":"Font files and definitions for the brand."},"base":{"_internalId":2420,"type":"ref","$ref":"brand-typography-options-base","description":"be brand-typography-options-base","tags":{"description":"The base font settings for the brand. These are used as the default for all text.\n"},"documentation":"The base font settings for the brand. These are used as the default\nfor all text."},"headings":{"_internalId":2423,"type":"ref","$ref":"brand-typography-options-headings-single","description":"be brand-typography-options-headings-single","tags":{"description":"Settings for headings, or a string specifying the font family only."},"documentation":"Settings for headings, or a string specifying the font family\nonly."},"monospace":{"_internalId":2426,"type":"ref","$ref":"brand-typography-options-monospace-single","description":"be brand-typography-options-monospace-single","tags":{"description":"Settings for monospace text, or a string specifying the font family only."},"documentation":"Settings for monospace text, or a string specifying the font family\nonly."},"monospace-inline":{"_internalId":2429,"type":"ref","$ref":"brand-typography-options-monospace-inline-single","description":"be brand-typography-options-monospace-inline-single","tags":{"description":"Settings for inline code, or a string specifying the font family only."},"documentation":"Settings for inline code, or a string specifying the font family\nonly."},"monospace-block":{"_internalId":2432,"type":"ref","$ref":"brand-typography-options-monospace-block-single","description":"be brand-typography-options-monospace-block-single","tags":{"description":"Settings for code blocks, or a string specifying the font family only."},"documentation":"Settings for code blocks, or a string specifying the font family\nonly."},"link":{"_internalId":2435,"type":"ref","$ref":"brand-typography-options-link-single","description":"be brand-typography-options-link-single","tags":{"description":"Settings for links."},"documentation":"Settings for links."}},"patternProperties":{},"closed":true,"$id":"brand-typography-single","tags":{"description":"Typography definitions for the brand."},"documentation":"Typography definitions for the brand."},"brand-typography-unified":{"_internalId":2463,"type":"object","description":"be an object","properties":{"fonts":{"_internalId":2444,"type":"array","description":"be an array of values, where each element must be brand-font","items":{"_internalId":2443,"type":"ref","$ref":"brand-font","description":"be brand-font"},"tags":{"description":"Font files and definitions for the brand."},"documentation":"Font files and definitions for the brand."},"base":{"_internalId":2447,"type":"ref","$ref":"brand-typography-options-base","description":"be brand-typography-options-base","tags":{"description":"The base font settings for the brand. These are used as the default for all text.\n"},"documentation":"The base font settings for the brand. These are used as the default\nfor all text."},"headings":{"_internalId":2450,"type":"ref","$ref":"brand-typography-options-headings-unified","description":"be brand-typography-options-headings-unified","tags":{"description":"Settings for headings, or a string specifying the font family only."},"documentation":"Settings for headings, or a string specifying the font family\nonly."},"monospace":{"_internalId":2453,"type":"ref","$ref":"brand-typography-options-monospace-unified","description":"be brand-typography-options-monospace-unified","tags":{"description":"Settings for monospace text, or a string specifying the font family only."},"documentation":"Settings for monospace text, or a string specifying the font family\nonly."},"monospace-inline":{"_internalId":2456,"type":"ref","$ref":"brand-typography-options-monospace-inline-unified","description":"be brand-typography-options-monospace-inline-unified","tags":{"description":"Settings for inline code, or a string specifying the font family only."},"documentation":"Settings for inline code, or a string specifying the font family\nonly."},"monospace-block":{"_internalId":2459,"type":"ref","$ref":"brand-typography-options-monospace-block-unified","description":"be brand-typography-options-monospace-block-unified","tags":{"description":"Settings for code blocks, or a string specifying the font family only."},"documentation":"Settings for code blocks, or a string specifying the font family\nonly."},"link":{"_internalId":2462,"type":"ref","$ref":"brand-typography-options-link-unified","description":"be brand-typography-options-link-unified","tags":{"description":"Settings for links."},"documentation":"Settings for links."}},"patternProperties":{},"closed":true,"$id":"brand-typography-unified","tags":{"description":"Typography definitions for the brand."},"documentation":"Typography definitions for the brand."},"brand-typography-options-base":{"_internalId":2481,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2480,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2476,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"line-height":{"_internalId":2479,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-base","tags":{"description":"Base typographic options."},"documentation":"Base typographic options."},"brand-typography-options-headings-single":{"_internalId":2503,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2502,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"weight":{"_internalId":2492,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2495,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},"color":{"_internalId":2498,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"line-height":{"_internalId":2501,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-headings-single","tags":{"description":"Typographic options for headings."},"documentation":"Typographic options for headings."},"brand-typography-options-headings-unified":{"_internalId":2525,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2524,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"weight":{"_internalId":2514,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2517,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},"color":{"_internalId":2520,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"line-height":{"_internalId":2523,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-headings-unified","tags":{"description":"Typographic options for headings."},"documentation":"Typographic options for headings."},"brand-typography-options-monospace-single":{"_internalId":2546,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2545,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2538,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2541,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2544,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-single","tags":{"description":"Typographic options for monospace elements."},"documentation":"Typographic options for monospace elements."},"brand-typography-options-monospace-unified":{"_internalId":2567,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2566,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2559,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2562,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2565,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-unified","tags":{"description":"Typographic options for monospace elements."},"documentation":"Typographic options for monospace elements."},"brand-typography-options-monospace-inline-single":{"_internalId":2588,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2587,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2580,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2583,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2586,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-inline-single","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"Typographic options for inline monospace elements."},"brand-typography-options-monospace-inline-unified":{"_internalId":2609,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2608,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2601,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2604,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2607,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-inline-unified","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"Typographic options for inline monospace elements."},"line-height-number-string":{"_internalId":2616,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","$id":"line-height-number-string","tags":{"description":"Line height"},"documentation":"Line height"},"brand-typography-options-monospace-block-single":{"_internalId":2640,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2639,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2629,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2632,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2635,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"line-height":{"_internalId":2638,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-block-single","tags":{"description":"Typographic options for block monospace elements."},"documentation":"Typographic options for block monospace elements."},"brand-typography-options-monospace-block-unified":{"_internalId":2664,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2663,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2653,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2656,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2659,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"line-height":{"_internalId":2662,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-block-unified","tags":{"description":"Typographic options for block monospace elements."},"documentation":"Typographic options for block monospace elements."},"brand-typography-options-link-single":{"_internalId":2683,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2682,"type":"object","description":"be an object","properties":{"weight":{"_internalId":2673,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2676,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2679,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"decoration":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-link-single","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"Typographic options for inline monospace elements."},"brand-typography-options-link-unified":{"_internalId":2702,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2701,"type":"object","description":"be an object","properties":{"weight":{"_internalId":2692,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2695,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2698,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"decoration":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-link-unified","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"Typographic options for inline monospace elements."},"brand-named-typography-elements":{"_internalId":2705,"type":"enum","enum":["base","headings","monospace","monospace-inline","monospace-block","link"],"description":"be one of: `base`, `headings`, `monospace`, `monospace-inline`, `monospace-block`, `link`","completions":["base","headings","monospace","monospace-inline","monospace-block","link"],"exhaustiveCompletions":true,"$id":"brand-named-typography-elements","tags":{"description":"Names of customizeable typography elements"},"documentation":"Names of customizeable typography elements"},"brand-font":{"_internalId":2720,"type":"anyOf","anyOf":[{"_internalId":2710,"type":"ref","$ref":"brand-font-google","description":"be brand-font-google"},{"_internalId":2713,"type":"ref","$ref":"brand-font-bunny","description":"be brand-font-bunny"},{"_internalId":2716,"type":"ref","$ref":"brand-font-file","description":"be brand-font-file"},{"_internalId":2719,"type":"ref","$ref":"brand-font-system","description":"be brand-font-system"}],"description":"be at least one of: brand-font-google, brand-font-bunny, brand-font-file, brand-font-system","$id":"brand-font","tags":{"description":"Font files and definitions for the brand."},"documentation":"Font files and definitions for the brand."},"brand-font-weight":{"_internalId":2723,"type":"enum","enum":[100,200,300,400,500,600,700,800,900,"thin","extra-light","ultra-light","light","normal","regular","medium","semi-bold","demi-bold","bold","extra-bold","ultra-bold","black"],"description":"be one of: `100`, `200`, `300`, `400`, `500`, `600`, `700`, `800`, `900`, `thin`, `extra-light`, `ultra-light`, `light`, `normal`, `regular`, `medium`, `semi-bold`, `demi-bold`, `bold`, `extra-bold`, `ultra-bold`, `black`","completions":["100","200","300","400","500","600","700","800","900","thin","extra-light","ultra-light","light","normal","regular","medium","semi-bold","demi-bold","bold","extra-bold","ultra-bold","black"],"exhaustiveCompletions":true,"$id":"brand-font-weight","tags":{"description":"A font weight."},"documentation":"A font weight."},"brand-font-style":{"_internalId":2726,"type":"enum","enum":["normal","italic","oblique"],"description":"be one of: `normal`, `italic`, `oblique`","completions":["normal","italic","oblique"],"exhaustiveCompletions":true,"$id":"brand-font-style","tags":{"description":"A font style."},"documentation":"A font style."},"brand-font-common":{"_internalId":2752,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"weight":{"_internalId":2741,"type":"anyOf","anyOf":[{"_internalId":2739,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2740,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2739,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The font weights to include."},"style":{"_internalId":2748,"type":"anyOf","anyOf":[{"_internalId":2746,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2747,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2746,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The font styles to include."},"display":{"_internalId":2751,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."}},"patternProperties":{},"closed":true,"$id":"brand-font-common"},"brand-font-system":{"_internalId":2752,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"weight":{"_internalId":2741,"type":"anyOf","anyOf":[{"_internalId":2739,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2740,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2739,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The font weights to include."},"style":{"_internalId":2748,"type":"anyOf","anyOf":[{"_internalId":2746,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2747,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2746,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The font styles to include."},"display":{"_internalId":2751,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"source":{"_internalId":2757,"type":"enum","enum":["system"],"description":"be 'system'","completions":["system"],"exhaustiveCompletions":true}},"patternProperties":{},"closed":true,"required":["source"],"$id":"brand-font-system","tags":{"description":"A system font definition."},"documentation":"A system font definition."},"brand-font-google":{"_internalId":2752,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"weight":{"_internalId":2741,"type":"anyOf","anyOf":[{"_internalId":2739,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2740,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2739,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The font weights to include."},"style":{"_internalId":2748,"type":"anyOf","anyOf":[{"_internalId":2746,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2747,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2746,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The font styles to include."},"display":{"_internalId":2751,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"source":{"_internalId":2765,"type":"enum","enum":["google"],"description":"be 'google'","completions":["google"],"exhaustiveCompletions":true}},"patternProperties":{},"closed":true,"required":["source"],"$id":"brand-font-google","tags":{"description":"A font definition from Google Fonts."},"documentation":"A font definition from Google Fonts."},"brand-font-bunny":{"_internalId":2752,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"weight":{"_internalId":2741,"type":"anyOf","anyOf":[{"_internalId":2739,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2740,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2739,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The font weights to include."},"style":{"_internalId":2748,"type":"anyOf","anyOf":[{"_internalId":2746,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2747,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2746,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The font styles to include."},"display":{"_internalId":2751,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"source":{"_internalId":2773,"type":"enum","enum":["bunny"],"description":"be 'bunny'","completions":["bunny"],"exhaustiveCompletions":true}},"patternProperties":{},"closed":true,"required":["source"],"$id":"brand-font-bunny","tags":{"description":"A font definition from fonts.bunny.net."},"documentation":"A font definition from fonts.bunny.net."},"brand-font-file":{"_internalId":2809,"type":"object","description":"be an object","properties":{"source":{"_internalId":2781,"type":"enum","enum":["file"],"description":"be 'file'","completions":["file"],"exhaustiveCompletions":true},"family":{"type":"string","description":"be a string","tags":{"description":"The font family name."},"documentation":"The font family name."},"files":{"_internalId":2808,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":2807,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2806,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"The path to the font file. This can be a local path or a URL.\n"},"documentation":"The path to the font file. This can be a local path or a URL."},"weight":{"_internalId":2802,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2805,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}},"patternProperties":{},"required":["path"]}],"description":"be at least one of: a string, an object"},"tags":{"description":"The font files to include. These can be local or online. Local file paths should be relative to the `brand.yml` file. Online paths should be complete URLs.\n"},"documentation":"The font files to include. These can be local or online. Local file\npaths should be relative to the brand.yml file. Online\npaths should be complete URLs."}},"patternProperties":{},"required":["files","family","source"],"closed":true,"$id":"brand-font-file","tags":{"description":"A method for providing font files directly, either locally or from an online location."},"documentation":"A method for providing font files directly, either locally or from an\nonline location."},"brand-font-family":{"type":"string","description":"be a string","$id":"brand-font-family","tags":{"description":"A locally-installed font family name. When used, the end-user is responsible for ensuring that the font is installed on their system.\n"},"documentation":"A locally-installed font family name. When used, the end-user is\nresponsible for ensuring that the font is installed on their system."},"brand-single":{"_internalId":2831,"type":"object","description":"be an object","properties":{"meta":{"_internalId":2818,"type":"ref","$ref":"brand-meta","description":"be brand-meta"},"logo":{"_internalId":2821,"type":"ref","$ref":"brand-logo-single","description":"be brand-logo-single"},"color":{"_internalId":2824,"type":"ref","$ref":"brand-color-single","description":"be brand-color-single"},"typography":{"_internalId":2827,"type":"ref","$ref":"brand-typography-single","description":"be brand-typography-single"},"defaults":{"_internalId":2830,"type":"ref","$ref":"brand-defaults","description":"be brand-defaults"}},"patternProperties":{},"closed":true,"$id":"brand-single"},"brand-unified":{"_internalId":2849,"type":"object","description":"be an object","properties":{"meta":{"_internalId":2836,"type":"ref","$ref":"brand-meta","description":"be brand-meta"},"logo":{"_internalId":2839,"type":"ref","$ref":"brand-logo-unified","description":"be brand-logo-unified"},"color":{"_internalId":2842,"type":"ref","$ref":"brand-color-unified","description":"be brand-color-unified"},"typography":{"_internalId":2845,"type":"ref","$ref":"brand-typography-unified","description":"be brand-typography-unified"},"defaults":{"_internalId":2848,"type":"ref","$ref":"brand-defaults","description":"be brand-defaults"}},"patternProperties":{},"closed":true,"$id":"brand-unified"},"brand-path-only-light-dark":{"_internalId":2861,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2860,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string"},"dark":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-path-only-light-dark","tags":{"description":"A path to a brand.yml file, or an object with light and dark paths to brand.yml\n"},"documentation":"A path to a brand.yml file, or an object with light and dark paths to\nbrand.yml"},"brand-path-bool-light-dark":{"_internalId":2890,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":2886,"type":"object","description":"be an object","properties":{"light":{"_internalId":2877,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2876,"type":"ref","$ref":"brand-single","description":"be brand-single"}],"description":"be at least one of: a string, brand-single","tags":{"description":"The path to a light brand file or an inline light brand definition.\n"},"documentation":"The path to a light brand file or an inline light brand\ndefinition."},"dark":{"_internalId":2885,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2884,"type":"ref","$ref":"brand-single","description":"be brand-single"}],"description":"be at least one of: a string, brand-single","tags":{"description":"The path to a dark brand file or an inline dark brand definition.\n"},"documentation":"The path to a dark brand file or an inline dark brand definition."}},"patternProperties":{},"closed":true},{"_internalId":2889,"type":"ref","$ref":"brand-unified","description":"be brand-unified"}],"description":"be at least one of: a string, `true` or `false`, an object, brand-unified","$id":"brand-path-bool-light-dark","tags":{"description":"Branding information to use for this document. If a string, the path to a brand file.\nIf false, don't use branding on this document. If an object, an inline (unified) brand\ndefinition, or an object with light and dark brand paths or definitions.\n"},"documentation":"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline (unified) brand definition, or an object with light\nand dark brand paths or definitions."},"brand-defaults":{"_internalId":2900,"type":"object","description":"be an object","properties":{"bootstrap":{"_internalId":2895,"type":"ref","$ref":"brand-defaults-bootstrap","description":"be brand-defaults-bootstrap"},"quarto":{"_internalId":2898,"type":"object","description":"be an object","properties":{},"patternProperties":{}}},"patternProperties":{},"$id":"brand-defaults"},"brand-defaults-bootstrap":{"_internalId":2919,"type":"object","description":"be an object","properties":{"defaults":{"_internalId":2918,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2917,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, `true` or `false`, a number"}}},"patternProperties":{},"$id":"brand-defaults-bootstrap"},"marginalia-side-geometry":{"_internalId":2928,"type":"object","description":"be an object","properties":{"far":{"type":"string","description":"be a string","tags":{"description":"Distance from page edge to wideblock boundary."},"documentation":"Distance from page edge to wideblock boundary."},"width":{"type":"string","description":"be a string","tags":{"description":"Width of the margin note column."},"documentation":"Width of the margin note column."},"separation":{"type":"string","description":"be a string","tags":{"description":"Gap between margin column and body text."},"documentation":"Gap between margin column and body text."}},"patternProperties":{},"closed":true,"$id":"marginalia-side-geometry"},"quarto-resource-cell-attributes-label":{"type":"string","description":"be a string","documentation":"Unique label for code cell","tags":{"description":{"short":"Unique label for code cell","long":"Unique label for code cell. Used when other code needs to refer to the cell \n(e.g. for cross references `fig-samples` or `tbl-summary`)\n"}},"$id":"quarto-resource-cell-attributes-label"},"quarto-resource-cell-attributes-classes":{"type":"string","description":"be a string","documentation":"Classes to apply to cell container","tags":{"description":"Classes to apply to cell container"},"$id":"quarto-resource-cell-attributes-classes"},"quarto-resource-cell-attributes-renderings":{"_internalId":2937,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Array of rendering names, e.g. [light, dark]","tags":{"description":"Array of rendering names, e.g. `[light, dark]`"},"$id":"quarto-resource-cell-attributes-renderings"},"quarto-resource-cell-attributes-tags":{"_internalId":2942,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"engine":"jupyter","description":"Array of tags for notebook cell"},"documentation":"Array of tags for notebook cell","$id":"quarto-resource-cell-attributes-tags"},"quarto-resource-cell-attributes-id":{"type":"string","description":"be a string","tags":{"engine":"jupyter","description":{"short":"Notebook cell identifier","long":"Notebook cell identifier. Note that if there is no cell `id` then `label` \nwill be used as the cell `id` if it is present.\nSee \nfor additional details on cell ids.\n"}},"documentation":"Notebook cell identifier","$id":"quarto-resource-cell-attributes-id"},"quarto-resource-cell-attributes-export":{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true,"tags":{"engine":"jupyter","description":"nbconvert tag to export cell","hidden":true},"documentation":"nbconvert tag to export cell","$id":"quarto-resource-cell-attributes-export"},"quarto-resource-cell-cache-cache":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Whether to cache a code chunk.","long":"Whether to cache a code chunk. When evaluating\ncode chunks for the second time, the cached chunks are skipped (unless they\nhave been modified), but the objects created in these chunks are loaded from\npreviously saved databases (`.rdb` and `.rdx` files), and these files are\nsaved when a chunk is evaluated for the first time, or when cached files are\nnot found (e.g., you may have removed them by hand). Note that the filename\nconsists of the chunk label with an MD5 digest of the R code and chunk\noptions of the code chunk, which means any changes in the chunk will produce\na different MD5 digest, and hence invalidate the cache.\n"}},"documentation":"Whether to cache a code chunk.","$id":"quarto-resource-cell-cache-cache"},"quarto-resource-cell-cache-cache-path":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"A prefix to be used to generate the paths of cache files","hidden":true},"documentation":"A prefix to be used to generate the paths of cache files","$id":"quarto-resource-cell-cache-cache-path"},"quarto-resource-cell-cache-cache-vars":{"_internalId":2956,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2955,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":{"short":"Variable names to be saved in the cache database.","long":"Variable names to be saved in\nthe cache database. By default, all variables created in the current chunks\nare identified and saved, but you may want to manually specify the variables\nto be saved, because the automatic detection of variables may not be robust,\nor you may want to save only a subset of variables.\n"}},"documentation":"Variable names to be saved in the cache database.","$id":"quarto-resource-cell-cache-cache-vars"},"quarto-resource-cell-cache-cache-globals":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Variables names that are not created from the current chunk","long":"Variables names that are not created from the current chunk.\n\nThis option is mainly for `autodep: true` to work more precisely---a chunk\n`B` depends on chunk `A` when any of `B`'s global variables are `A`'s local \nvariables. In case the automatic detection of global variables in a chunk \nfails, you may manually specify the names of global variables via this option.\nIn addition, `cache-globals: false` means detecting all variables in a code\nchunk, no matter if they are global or local variables.\n"}},"documentation":"Variables names that are not created from the current chunk","$id":"quarto-resource-cell-cache-cache-globals"},"quarto-resource-cell-cache-cache-lazy":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Whether to `lazyLoad()` or directly `load()` objects","long":"Whether to `lazyLoad()` or directly `load()` objects. For very large objects, \nlazyloading may not work, so `cache-lazy: false` may be desirable (see\n[#572](https://github.com/yihui/knitr/issues/572)).\n"}},"documentation":"Whether to lazyLoad() or directly load()\nobjects","$id":"quarto-resource-cell-cache-cache-lazy"},"quarto-resource-cell-cache-cache-rebuild":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Force rebuild of cache for chunk"},"documentation":"Force rebuild of cache for chunk","$id":"quarto-resource-cell-cache-cache-rebuild"},"quarto-resource-cell-cache-cache-comments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Prevent comment changes from invalidating the cache for a chunk"},"documentation":"Prevent comment changes from invalidating the cache for a chunk","$id":"quarto-resource-cell-cache-cache-comments"},"quarto-resource-cell-cache-dependson":{"_internalId":2979,"type":"anyOf","anyOf":[{"_internalId":2972,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2971,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},{"_internalId":2978,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":2977,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: at least one of: a string, an array of values, where each element must be a string, at least one of: a number, an array of values, where each element must be a number","tags":{"engine":"knitr","description":"Explicitly specify cache dependencies for this chunk (one or more chunk labels)\n"},"documentation":"Explicitly specify cache dependencies for this chunk (one or more\nchunk labels)","$id":"quarto-resource-cell-cache-dependson"},"quarto-resource-cell-cache-autodep":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Detect cache dependencies automatically via usage of global variables"},"documentation":"Detect cache dependencies automatically via usage of global\nvariables","$id":"quarto-resource-cell-cache-autodep"},"quarto-resource-cell-card-title":{"type":"string","description":"be a string","tags":{"formats":["dashboard"],"description":{"short":"Title displayed in dashboard card header"}},"documentation":"Title displayed in dashboard card header","$id":"quarto-resource-cell-card-title"},"quarto-resource-cell-card-padding":{"_internalId":2990,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["dashboard"],"description":{"short":"Padding around dashboard card content (default `8px`)"}},"documentation":"Padding around dashboard card content (default 8px)","$id":"quarto-resource-cell-card-padding"},"quarto-resource-cell-card-expandable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":{"short":"Make dashboard card content expandable (default: `true`)"}},"documentation":"Make dashboard card content expandable (default:\ntrue)","$id":"quarto-resource-cell-card-expandable"},"quarto-resource-cell-card-width":{"_internalId":2999,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["dashboard"],"description":{"short":"Percentage or absolute pixel width for dashboard card (defaults to evenly spaced across row)"}},"documentation":"Percentage or absolute pixel width for dashboard card (defaults to\nevenly spaced across row)","$id":"quarto-resource-cell-card-width"},"quarto-resource-cell-card-height":{"_internalId":3006,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["dashboard"],"description":{"short":"Percentage or absolute pixel height for dashboard card (defaults to evenly spaced across column)"}},"documentation":"Percentage or absolute pixel height for dashboard card (defaults to\nevenly spaced across column)","$id":"quarto-resource-cell-card-height"},"quarto-resource-cell-card-context":{"type":"string","description":"be a string","tags":{"formats":["dashboard"],"engine":["jupyter"],"description":{"short":"Context to execute cell within."}},"documentation":"Context to execute cell within.","$id":"quarto-resource-cell-card-context"},"quarto-resource-cell-card-content":{"_internalId":3011,"type":"enum","enum":["valuebox","sidebar","toolbar","card-sidebar","card-toolbar"],"description":"be one of: `valuebox`, `sidebar`, `toolbar`, `card-sidebar`, `card-toolbar`","completions":["valuebox","sidebar","toolbar","card-sidebar","card-toolbar"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":{"short":"The type of dashboard element being produced by this code cell."}},"documentation":"The type of dashboard element being produced by this code cell.","$id":"quarto-resource-cell-card-content"},"quarto-resource-cell-card-color":{"_internalId":3019,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3018,"type":"enum","enum":["primary","secondary","success","info","warning","danger","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `info`, `warning`, `danger`, `light`, `dark`","completions":["primary","secondary","success","info","warning","danger","light","dark"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, one of: `primary`, `secondary`, `success`, `info`, `warning`, `danger`, `light`, `dark`","tags":{"formats":["dashboard"],"description":{"short":"For code cells that produce a valuebox, the color of the valuebox.s"}},"documentation":"For code cells that produce a valuebox, the color of the\nvaluebox.s","$id":"quarto-resource-cell-card-color"},"quarto-resource-cell-codeoutput-eval":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":{"short":"Evaluate code cells (if `false` just echos the code into output).","long":"Evaluate code cells (if `false` just echos the code into output).\n\n- `true` (default): evaluate code cell\n- `false`: don't evaluate code cell\n- `[...]`: A list of positive or negative numbers to selectively include or exclude expressions \n (explicit inclusion/exclusion of expressions is available only when using the knitr engine)\n"}},"documentation":"Evaluate code cells (if false just echos the code into\noutput).","$id":"quarto-resource-cell-codeoutput-eval"},"quarto-resource-cell-codeoutput-echo":{"_internalId":3029,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3028,"type":"enum","enum":["fenced"],"description":"be 'fenced'","completions":["fenced"],"exhaustiveCompletions":true}],"description":"be `true`, `false`, or `fenced`","tags":{"contexts":["document-execute"],"execute-only":true,"description":{"short":"Include cell source code in rendered output.","long":"Include cell source code in rendered output.\n\n- `true` (default in most formats): include source code in output\n- `false` (default in presentation formats like `beamer`, `revealjs`, and `pptx`): do not include source code in output\n- `fenced`: in addition to echoing, include the cell delimiter as part of the output.\n- `[...]`: A list of positive or negative line numbers to selectively include or exclude lines\n (explicit inclusion/excusion of lines is available only when using the knitr engine)\n"}},"documentation":"Include cell source code in rendered output.","$id":"quarto-resource-cell-codeoutput-echo"},"quarto-resource-cell-codeoutput-code-fold":{"_internalId":3037,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3036,"type":"enum","enum":["show"],"description":"be 'show'","completions":["show"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'show'","tags":{"contexts":["document-code"],"formats":["$html-all"],"description":{"short":"Collapse code into an HTML `
` tag so the user can display it on-demand.","long":"Collapse code into an HTML `
` tag so the user can display it on-demand.\n\n- `true`: collapse code\n- `false` (default): do not collapse code\n- `show`: use the `
` tag, but show the expanded code initially.\n"}},"documentation":"Collapse code into an HTML <details> tag so the\nuser can display it on-demand.","$id":"quarto-resource-cell-codeoutput-code-fold"},"quarto-resource-cell-codeoutput-code-summary":{"type":"string","description":"be a string","tags":{"contexts":["document-code"],"formats":["$html-all"],"description":"Summary text to use for code blocks collapsed using `code-fold`"},"documentation":"Summary text to use for code blocks collapsed using\ncode-fold","$id":"quarto-resource-cell-codeoutput-code-summary"},"quarto-resource-cell-codeoutput-code-overflow":{"_internalId":3042,"type":"enum","enum":["scroll","wrap"],"description":"be one of: `scroll`, `wrap`","completions":["scroll","wrap"],"exhaustiveCompletions":true,"tags":{"contexts":["document-code"],"formats":["$html-all"],"description":{"short":"Choose whether to `scroll` or `wrap` when code lines are too wide for their container.","long":"Choose how to handle code overflow, when code lines are too wide for their container. One of:\n\n- `scroll`\n- `wrap`\n"}},"documentation":"Choose whether to scroll or wrap when code\nlines are too wide for their container.","$id":"quarto-resource-cell-codeoutput-code-overflow"},"quarto-resource-cell-codeoutput-code-line-numbers":{"_internalId":3049,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be `true`, `false`, or a string specifying the lines to highlight","tags":{"doNotNarrowError":true,"contexts":["document-code"],"formats":["$html-all","ms","$pdf-all"],"description":{"short":"Include line numbers in code block output (`true` or `false`)","long":"Include line numbers in code block output (`true` or `false`).\n\nFor revealjs output only, you can also specify a string to highlight\nspecific lines (and/or animate between sets of highlighted lines).\n\n* Sets of lines are denoted with commas:\n * `3,4,5`\n * `1,10,12`\n* Ranges can be denoted with dashes and combined with commas:\n * `1-3,5` \n * `5-10,12,14`\n* Finally, animation steps are separated by `|`:\n * `1-3|1-3,5` first shows `1-3`, then `1-3,5`\n * `|5|5-10,12` first shows no numbering, then 5, then lines 5-10\n and 12\n"}},"documentation":"Include line numbers in code block output (true or\nfalse)","$id":"quarto-resource-cell-codeoutput-code-line-numbers"},"quarto-resource-cell-codeoutput-lst-label":{"type":"string","description":"be a string","documentation":"Unique label for code listing (used in cross references)","tags":{"description":"Unique label for code listing (used in cross references)"},"$id":"quarto-resource-cell-codeoutput-lst-label"},"quarto-resource-cell-codeoutput-lst-cap":{"type":"string","description":"be a string","documentation":"Caption for code listing","tags":{"description":"Caption for code listing"},"$id":"quarto-resource-cell-codeoutput-lst-cap"},"quarto-resource-cell-codeoutput-tidy":{"_internalId":3061,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3060,"type":"enum","enum":["styler","formatR"],"description":"be one of: `styler`, `formatR`","completions":["styler","formatR"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `styler`, `formatR`","tags":{"engine":"knitr","description":"Whether to reformat R code."},"documentation":"Whether to reformat R code.","$id":"quarto-resource-cell-codeoutput-tidy"},"quarto-resource-cell-codeoutput-tidy-opts":{"_internalId":3066,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"engine":"knitr","description":"List of options to pass to `tidy` handler"},"documentation":"List of options to pass to tidy handler","$id":"quarto-resource-cell-codeoutput-tidy-opts"},"quarto-resource-cell-codeoutput-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Collapse all the source and output blocks from one code chunk into a single block\n"},"documentation":"Collapse all the source and output blocks from one code chunk into a\nsingle block","$id":"quarto-resource-cell-codeoutput-collapse"},"quarto-resource-cell-codeoutput-prompt":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Whether to add the prompt characters in R code.","long":"Whether to add the prompt characters in R\ncode. See `prompt` and `continue` on the help page `?base::options`. Note\nthat adding prompts can make it difficult for readers to copy R code from\nthe output, so `prompt: false` may be a better choice. This option may not\nwork well when the `engine` is not `R`\n([#1274](https://github.com/yihui/knitr/issues/1274)).\n"}},"documentation":"Whether to add the prompt characters in R code.","$id":"quarto-resource-cell-codeoutput-prompt"},"quarto-resource-cell-codeoutput-highlight":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Whether to syntax highlight the source code","hidden":true},"documentation":"Whether to syntax highlight the source code","$id":"quarto-resource-cell-codeoutput-highlight"},"quarto-resource-cell-codeoutput-class-source":{"_internalId":3078,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3077,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for source code blocks"},"documentation":"Class name(s) for source code blocks","$id":"quarto-resource-cell-codeoutput-class-source"},"quarto-resource-cell-codeoutput-attr-source":{"_internalId":3084,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3083,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for source code blocks"},"documentation":"Attribute(s) for source code blocks","$id":"quarto-resource-cell-codeoutput-attr-source"},"quarto-resource-cell-figure-fig-width":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Default width for figures"},"documentation":"Default width for figures","$id":"quarto-resource-cell-figure-fig-width"},"quarto-resource-cell-figure-fig-height":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Default height for figures"},"documentation":"Default height for figures","$id":"quarto-resource-cell-figure-fig-height"},"quarto-resource-cell-figure-fig-cap":{"_internalId":3094,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3093,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Figure caption"},"documentation":"Figure caption","$id":"quarto-resource-cell-figure-fig-cap"},"quarto-resource-cell-figure-fig-subcap":{"_internalId":3106,"type":"anyOf","anyOf":[{"_internalId":3099,"type":"enum","enum":[true],"description":"be 'true'","completions":["true"],"exhaustiveCompletions":true},{"_internalId":3105,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3104,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: 'true', at least one of: a string, an array of values, where each element must be a string","documentation":"Figure subcaptions","tags":{"description":"Figure subcaptions"},"$id":"quarto-resource-cell-figure-fig-subcap"},"quarto-resource-cell-figure-fig-link":{"_internalId":3112,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3111,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Hyperlink target for the figure"},"documentation":"Hyperlink target for the figure","$id":"quarto-resource-cell-figure-fig-link"},"quarto-resource-cell-figure-fig-align":{"_internalId":3119,"type":"anyOf","anyOf":[{"_internalId":3117,"type":"enum","enum":["default","left","right","center"],"description":"be one of: `default`, `left`, `right`, `center`","completions":["default","left","right","center"],"exhaustiveCompletions":true},{"_internalId":3118,"type":"array","description":"be an array of values, where each element must be one of: `default`, `left`, `right`, `center`","items":{"_internalId":3117,"type":"enum","enum":["default","left","right","center"],"description":"be one of: `default`, `left`, `right`, `center`","completions":["default","left","right","center"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `default`, `left`, `right`, `center`, an array of values, where each element must be one of: `default`, `left`, `right`, `center`","tags":{"complete-from":["anyOf",0],"contexts":["document-figures"],"formats":["docx","rtf","$odt-all","$pdf-all","$html-all"],"description":"Figure horizontal alignment (`default`, `left`, `right`, or `center`)"},"documentation":"Figure horizontal alignment (default, left,\nright, or center)","$id":"quarto-resource-cell-figure-fig-align"},"quarto-resource-cell-figure-fig-alt":{"_internalId":3125,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3124,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":"Alternative text to be used in the `alt` attribute of HTML images.\n"},"documentation":"Alternative text to be used in the alt attribute of HTML\nimages.","$id":"quarto-resource-cell-figure-fig-alt"},"quarto-resource-cell-figure-fig-env":{"_internalId":3131,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3130,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"contexts":["document-figures"],"description":"LaTeX environment for figure output"},"documentation":"LaTeX environment for figure output","$id":"quarto-resource-cell-figure-fig-env"},"quarto-resource-cell-figure-fig-pos":{"_internalId":3143,"type":"anyOf","anyOf":[{"_internalId":3139,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3138,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},{"_internalId":3142,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true}],"description":"be at least one of: at least one of: a string, an array of values, where each element must be a string, 'false'","tags":{"formats":["$pdf-all"],"contexts":["document-figures"],"description":{"short":"LaTeX figure position arrangement to be used in `\\begin{figure}[]`.","long":"LaTeX figure position arrangement to be used in `\\begin{figure}[]`.\n\nComputational figure output that is accompanied by the code \nthat produced it is given a default value of `fig-pos=\"H\"` (so \nthat the code and figure are not inordinately separated).\n\nIf `fig-pos` is `false`, then we don't use any figure position\nspecifier, which is sometimes necessary with custom figure\nenvironments (such as `sidewaysfigure`).\n"}},"documentation":"LaTeX figure position arrangement to be used in\n\\begin{figure}[].","$id":"quarto-resource-cell-figure-fig-pos"},"quarto-resource-cell-figure-fig-scap":{"_internalId":3149,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3148,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"A short caption (only used in LaTeX output)","long":"A short caption (only used in LaTeX output). A short caption is inserted in `\\caption[]`, \nand usually displayed in the “List of Figures” of a PDF document.\n"}},"documentation":"A short caption (only used in LaTeX output)","$id":"quarto-resource-cell-figure-fig-scap"},"quarto-resource-cell-figure-fig-format":{"_internalId":3152,"type":"enum","enum":["retina","png","jpeg","svg","pdf"],"description":"be one of: `retina`, `png`, `jpeg`, `svg`, `pdf`","completions":["retina","png","jpeg","svg","pdf"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Default output format for figures (`retina`, `png`, `jpeg`, `svg`, or `pdf`)"},"documentation":"Default output format for figures (retina,\npng, jpeg, svg, or\npdf)","$id":"quarto-resource-cell-figure-fig-format"},"quarto-resource-cell-figure-fig-dpi":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Default DPI for figures"},"documentation":"Default DPI for figures","$id":"quarto-resource-cell-figure-fig-dpi"},"quarto-resource-cell-figure-fig-asp":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"The aspect ratio of the plot, i.e., the ratio of height/width. When `fig-asp` is specified, the height of a plot \n(the option `fig-height`) is calculated from `fig-width * fig-asp`.\n"},"documentation":"The aspect ratio of the plot, i.e., the ratio of height/width. When\nfig-asp is specified, the height of a plot (the option\nfig-height) is calculated from\nfig-width * fig-asp.","$id":"quarto-resource-cell-figure-fig-asp"},"quarto-resource-cell-figure-out-width":{"_internalId":3165,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"null","description":"be the null value","completions":[],"exhaustiveCompletions":true}],"description":"be at least one of: a string, the null value","tags":{"engine":"knitr","description":{"short":"Width of plot in the output document","long":"Width of the plot in the output document, which can be different from its physical `fig-width`,\ni.e., plots can be scaled in the output document.\nWhen used without a unit, the unit is assumed to be pixels. However, any of the following unit \nidentifiers can be used: px, cm, mm, in, inch and %, for example, `3in`, `8cm`, `300px` or `50%`.\n"}},"documentation":"Width of plot in the output document","$id":"quarto-resource-cell-figure-out-width"},"quarto-resource-cell-figure-out-height":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Height of plot in the output document","long":"Height of the plot in the output document, which can be different from its physical `fig-height`, \ni.e., plots can be scaled in the output document.\nDepending on the output format, this option can take special values.\nFor example, for LaTeX output, it can be `3in`, or `8cm`;\nfor HTML, it can be `300px`.\n"}},"documentation":"Height of plot in the output document","$id":"quarto-resource-cell-figure-out-height"},"quarto-resource-cell-figure-fig-keep":{"_internalId":3179,"type":"anyOf","anyOf":[{"_internalId":3172,"type":"enum","enum":["high","none","all","first","last"],"description":"be one of: `high`, `none`, `all`, `first`, `last`","completions":["high","none","all","first","last"],"exhaustiveCompletions":true},{"_internalId":3178,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":3177,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: one of: `high`, `none`, `all`, `first`, `last`, at least one of: a number, an array of values, where each element must be a number","tags":{"engine":"knitr","description":{"short":"How plots in chunks should be kept.","long":"How plots in chunks should be kept. Possible values are as follows:\n\n- `high`: Only keep high-level plots (merge low-level changes into\n high-level plots).\n- `none`: Discard all plots.\n- `all`: Keep all plots (low-level plot changes may produce new plots).\n- `first`: Only keep the first plot.\n- `last`: Only keep the last plot.\n- A numeric vector: In this case, the values are indices of (low-level) plots\n to keep.\n"}},"documentation":"How plots in chunks should be kept.","$id":"quarto-resource-cell-figure-fig-keep"},"quarto-resource-cell-figure-fig-show":{"_internalId":3182,"type":"enum","enum":["asis","hold","animate","hide"],"description":"be one of: `asis`, `hold`, `animate`, `hide`","completions":["asis","hold","animate","hide"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"How to show/arrange the plots","long":"How to show/arrange the plots. Possible values are as follows:\n\n- `asis`: Show plots exactly in places where they were generated (as if\n the code were run in an R terminal).\n- `hold`: Hold all plots and output them at the end of a code chunk.\n- `animate`: Concatenate all plots into an animation if there are multiple\n plots in a chunk.\n- `hide`: Generate plot files but hide them in the output document.\n"}},"documentation":"How to show/arrange the plots","$id":"quarto-resource-cell-figure-fig-show"},"quarto-resource-cell-figure-out-extra":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"Additional raw LaTeX or HTML options to be applied to figures"},"documentation":"Additional raw LaTeX or HTML options to be applied to figures","$id":"quarto-resource-cell-figure-out-extra"},"quarto-resource-cell-figure-external":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","formats":["$pdf-all"],"description":"Externalize tikz graphics (pre-compile to PDF)"},"documentation":"Externalize tikz graphics (pre-compile to PDF)","$id":"quarto-resource-cell-figure-external"},"quarto-resource-cell-figure-sanitize":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","formats":["$pdf-all"],"description":"sanitize tikz graphics (escape special LaTeX characters)."},"documentation":"sanitize tikz graphics (escape special LaTeX characters).","$id":"quarto-resource-cell-figure-sanitize"},"quarto-resource-cell-figure-interval":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Time interval (number of seconds) between animation frames."},"documentation":"Time interval (number of seconds) between animation frames.","$id":"quarto-resource-cell-figure-interval"},"quarto-resource-cell-figure-aniopts":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Extra options for animations","long":"Extra options for animations; see the documentation of the LaTeX [**animate**\npackage.](http://ctan.org/pkg/animate)\n"}},"documentation":"Extra options for animations","$id":"quarto-resource-cell-figure-aniopts"},"quarto-resource-cell-figure-animation-hook":{"type":"string","description":"be a string","completions":["ffmpeg","gifski"],"tags":{"engine":"knitr","description":{"short":"Hook function to create animations in HTML output","long":"Hook function to create animations in HTML output. \n\nThe default hook (`ffmpeg`) uses FFmpeg to convert images to a WebM video.\n\nAnother hook function is `gifski` based on the\n[**gifski**](https://cran.r-project.org/package=gifski) package to\ncreate GIF animations.\n"}},"documentation":"Hook function to create animations in HTML output","$id":"quarto-resource-cell-figure-animation-hook"},"quarto-resource-cell-include-child":{"_internalId":3200,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3199,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"One or more paths of child documents to be knitted and input into the main document."},"documentation":"One or more paths of child documents to be knitted and input into the\nmain document.","$id":"quarto-resource-cell-include-child"},"quarto-resource-cell-include-file":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"File containing code to execute for this chunk"},"documentation":"File containing code to execute for this chunk","$id":"quarto-resource-cell-include-file"},"quarto-resource-cell-include-code":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"String containing code to execute for this chunk"},"documentation":"String containing code to execute for this chunk","$id":"quarto-resource-cell-include-code"},"quarto-resource-cell-include-purl":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Include chunk when extracting code with `knitr::purl()`"},"documentation":"Include chunk when extracting code with\nknitr::purl()","$id":"quarto-resource-cell-include-purl"},"quarto-resource-cell-layout-layout":{"_internalId":3219,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3218,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a number","items":{"_internalId":3217,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}}],"description":"be at least one of: a string, an array of values, where each element must be an array of values, where each element must be a number","documentation":"2d-array of widths where the first dimension specifies columns and\nthe second rows.","tags":{"description":{"short":"2d-array of widths where the first dimension specifies columns and the second rows.","long":"2d-array of widths where the first dimension specifies columns and the second rows.\n\nFor example, to layout the first two output blocks side-by-side on the top with the third\nblock spanning the full width below, use `[[3,3], [1]]`.\n\nUse negative values to create margin. For example, to create space between the \noutput blocks in the top row of the previous example, use `[[3,-1, 3], [1]]`.\n"}},"$id":"quarto-resource-cell-layout-layout"},"quarto-resource-cell-layout-layout-ncol":{"type":"number","description":"be a number","documentation":"Layout output blocks into columns","tags":{"description":"Layout output blocks into columns"},"$id":"quarto-resource-cell-layout-layout-ncol"},"quarto-resource-cell-layout-layout-nrow":{"type":"number","description":"be a number","documentation":"Layout output blocks into rows","tags":{"description":"Layout output blocks into rows"},"$id":"quarto-resource-cell-layout-layout-nrow"},"quarto-resource-cell-layout-layout-align":{"_internalId":3226,"type":"enum","enum":["default","left","center","right"],"description":"be one of: `default`, `left`, `center`, `right`","completions":["default","left","center","right"],"exhaustiveCompletions":true,"documentation":"Horizontal alignment for layout content (default,\nleft, right, or center)","tags":{"description":"Horizontal alignment for layout content (`default`, `left`, `right`, or `center`)"},"$id":"quarto-resource-cell-layout-layout-align"},"quarto-resource-cell-layout-layout-valign":{"_internalId":3229,"type":"enum","enum":["default","top","center","bottom"],"description":"be one of: `default`, `top`, `center`, `bottom`","completions":["default","top","center","bottom"],"exhaustiveCompletions":true,"documentation":"Vertical alignment for layout content (default,\ntop, center, or bottom)","tags":{"description":"Vertical alignment for layout content (`default`, `top`, `center`, or `bottom`)"},"$id":"quarto-resource-cell-layout-layout-valign"},"quarto-resource-cell-pagelayout-column":{"_internalId":3232,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Page column for output","tags":{"description":{"short":"Page column for output","long":"[Page column](https://quarto.org/docs/authoring/article-layout.html) for output"}},"$id":"quarto-resource-cell-pagelayout-column"},"quarto-resource-cell-pagelayout-fig-column":{"_internalId":3235,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Page column for figure output","tags":{"description":{"short":"Page column for figure output","long":"[Page column](https://quarto.org/docs/authoring/article-layout.html) for figure output"}},"$id":"quarto-resource-cell-pagelayout-fig-column"},"quarto-resource-cell-pagelayout-tbl-column":{"_internalId":3238,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Page column for table output","tags":{"description":{"short":"Page column for table output","long":"[Page column](https://quarto.org/docs/authoring/article-layout.html) for table output"}},"$id":"quarto-resource-cell-pagelayout-tbl-column"},"quarto-resource-cell-pagelayout-cap-location":{"_internalId":3241,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"contexts":["document-layout"],"formats":["$html-files","$pdf-all","typst"],"description":"Where to place figure and table captions (`top`, `bottom`, or `margin`)"},"documentation":"Where to place figure and table captions (top,\nbottom, or margin)","$id":"quarto-resource-cell-pagelayout-cap-location"},"quarto-resource-cell-pagelayout-fig-cap-location":{"_internalId":3244,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"contexts":["document-layout","document-figures"],"formats":["$html-files","$pdf-all","typst"],"description":"Where to place figure captions (`top`, `bottom`, or `margin`)"},"documentation":"Where to place figure captions (top,\nbottom, or margin)","$id":"quarto-resource-cell-pagelayout-fig-cap-location"},"quarto-resource-cell-pagelayout-tbl-cap-location":{"_internalId":3247,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"contexts":["document-layout","document-tables"],"formats":["$html-files","$pdf-all","typst"],"description":"Where to place table captions (`top`, `bottom`, or `margin`)"},"documentation":"Where to place table captions (top, bottom,\nor margin)","$id":"quarto-resource-cell-pagelayout-tbl-cap-location"},"quarto-resource-cell-table-tbl-cap":{"_internalId":3253,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3252,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Table caption"},"documentation":"Table caption","$id":"quarto-resource-cell-table-tbl-cap"},"quarto-resource-cell-table-tbl-subcap":{"_internalId":3265,"type":"anyOf","anyOf":[{"_internalId":3258,"type":"enum","enum":[true],"description":"be 'true'","completions":["true"],"exhaustiveCompletions":true},{"_internalId":3264,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3263,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: 'true', at least one of: a string, an array of values, where each element must be a string","documentation":"Table subcaptions","tags":{"description":"Table subcaptions"},"$id":"quarto-resource-cell-table-tbl-subcap"},"quarto-resource-cell-table-tbl-colwidths":{"_internalId":3278,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3272,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"_internalId":3277,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: `true` or `false`, 'auto', an array of values, where each element must be a number","tags":{"contexts":["document-tables"],"engine":["knitr","jupyter"],"formats":["$pdf-all","$html-all"],"description":{"short":"Apply explicit table column widths","long":"Apply explicit table column widths for markdown grid tables and pipe\ntables that are more than `columns` characters wide (72 by default). \n\nSome formats (e.g. HTML) do an excellent job automatically sizing\ntable columns and so don't benefit much from column width specifications.\nOther formats (e.g. LaTeX) require table column sizes in order to \ncorrectly flow longer cell content (this is a major reason why tables \n> 72 columns wide are assigned explicit widths by Pandoc).\n\nThis can be specified as:\n\n- `auto`: Apply markdown table column widths except when there is a\n hyperlink in the table (which tends to throw off automatic\n calculation of column widths based on the markdown text width of cells).\n (`auto` is the default for HTML output formats)\n\n- `true`: Always apply markdown table widths (`true` is the default\n for all non-HTML formats)\n\n- `false`: Never apply markdown table widths.\n\n- An array of numbers (e.g. `[40, 30, 30]`): Array of explicit width percentages.\n"}},"documentation":"Apply explicit table column widths","$id":"quarto-resource-cell-table-tbl-colwidths"},"quarto-resource-cell-table-html-table-processing":{"_internalId":3281,"type":"enum","enum":["none"],"description":"be 'none'","completions":["none"],"exhaustiveCompletions":true,"documentation":"If none, do not process raw HTML table in cell output\nand leave it as-is","tags":{"description":"If `none`, do not process raw HTML table in cell output and leave it as-is"},"$id":"quarto-resource-cell-table-html-table-processing"},"quarto-resource-cell-textoutput-output":{"_internalId":3293,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3288,"type":"enum","enum":["asis"],"description":"be 'asis'","completions":["asis"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"},{"_internalId":3291,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, 'asis', a string, an object","tags":{"contexts":["document-execute"],"execute-only":true,"description":{"short":"Include the results of executing the code in the output (specify `asis` to\ntreat output as raw markdown with no enclosing containers).\n","long":"Include the results of executing the code in the output. Possible values:\n\n- `true`: Include results.\n- `false`: Do not include results.\n- `asis`: Treat output as raw markdown with no enclosing containers.\n"}},"documentation":"Include the results of executing the code in the output (specify\nasis to treat output as raw markdown with no enclosing\ncontainers).","$id":"quarto-resource-cell-textoutput-output"},"quarto-resource-cell-textoutput-warning":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":"Include warnings in rendered output."},"documentation":"Include warnings in rendered output.","$id":"quarto-resource-cell-textoutput-warning"},"quarto-resource-cell-textoutput-error":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":"Include errors in the output (note that this implies that errors executing code\nwill not halt processing of the document).\n"},"documentation":"Include errors in the output (note that this implies that errors\nexecuting code will not halt processing of the document).","$id":"quarto-resource-cell-textoutput-error"},"quarto-resource-cell-textoutput-include":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":"Catch all for preventing any output (code or results) from being included in output.\n"},"documentation":"Catch all for preventing any output (code or results) from being\nincluded in output.","$id":"quarto-resource-cell-textoutput-include"},"quarto-resource-cell-textoutput-panel":{"_internalId":3302,"type":"enum","enum":["tabset","input","sidebar","fill","center"],"description":"be one of: `tabset`, `input`, `sidebar`, `fill`, `center`","completions":["tabset","input","sidebar","fill","center"],"exhaustiveCompletions":true,"documentation":"Panel type for cell output (tabset, input,\nsidebar, fill, center)","tags":{"description":"Panel type for cell output (`tabset`, `input`, `sidebar`, `fill`, `center`)"},"$id":"quarto-resource-cell-textoutput-panel"},"quarto-resource-cell-textoutput-output-location":{"_internalId":3305,"type":"enum","enum":["default","fragment","slide","column","column-fragment"],"description":"be one of: `default`, `fragment`, `slide`, `column`, `column-fragment`","completions":["default","fragment","slide","column","column-fragment"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Location of output relative to the code that generated it (`default`, `fragment`, `slide`, `column`, or `column-location`)","long":"Location of output relative to the code that generated it. The possible values are as follows:\n\n- `default`: Normal flow of the slide after the code\n- `fragment`: In a fragment (not visible until you advance)\n- `slide`: On a new slide after the curent one\n- `column`: In an adjacent column \n- `column-fragment`: In an adjacent column (not visible until you advance)\n\nNote that this option is supported only for the `revealjs` format.\n"}},"documentation":"Location of output relative to the code that generated it\n(default, fragment, slide,\ncolumn, or column-location)","$id":"quarto-resource-cell-textoutput-output-location"},"quarto-resource-cell-textoutput-message":{"_internalId":3308,"type":"enum","enum":[true,false,"NA"],"description":"be one of: `true`, `false`, `NA`","completions":["true","false","NA"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Include messages in rendered output.","long":"Include messages in rendered output. Possible values are `true`, `false`, or `NA`. \nIf `true`, messages are included in the output. If `false`, messages are not included. \nIf `NA`, messages are not included in output but shown in the knitr log to console.\n"}},"documentation":"Include messages in rendered output.","$id":"quarto-resource-cell-textoutput-message"},"quarto-resource-cell-textoutput-results":{"_internalId":3311,"type":"enum","enum":["markup","asis","hold","hide",false],"description":"be one of: `markup`, `asis`, `hold`, `hide`, `false`","completions":["markup","asis","hold","hide","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"How to display text results","long":"How to display text results. Note that this option only applies to normal text output (not warnings,\nmessages, or errors). The possible values are as follows:\n\n- `markup`: Mark up text output with the appropriate environments\n depending on the output format. For example, if the text\n output is a character string `\"[1] 1 2 3\"`, the actual output that\n **knitr** produces will be:\n\n ```` md\n ```\n [1] 1 2 3\n ```\n ````\n\n In this case, `results: markup` means to put the text output in fenced\n code blocks (```` ``` ````).\n\n- `asis`: Write text output as-is, i.e., write the raw text results\n directly into the output document without any markups.\n\n ```` md\n ```{r}\n #| results: asis\n cat(\"I'm raw **Markdown** content.\\n\")\n ```\n ````\n\n- `hold`: Hold all pieces of text output in a chunk and flush them to the\n end of the chunk.\n\n- `hide` (or `false`): Hide text output.\n"}},"documentation":"How to display text results","$id":"quarto-resource-cell-textoutput-results"},"quarto-resource-cell-textoutput-comment":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Prefix to be added before each line of text output.","long":"Prefix to be added before each line of text output.\nBy default, the text output is commented out by `##`, so if\nreaders want to copy and run the source code from the output document, they\ncan select and copy everything from the chunk, since the text output is\nmasked in comments (and will be ignored when running the copied text). Set\n`comment: ''` to remove the default `##`.\n"}},"documentation":"Prefix to be added before each line of text output.","$id":"quarto-resource-cell-textoutput-comment"},"quarto-resource-cell-textoutput-class-output":{"_internalId":3319,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3318,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for text/console output"},"documentation":"Class name(s) for text/console output","$id":"quarto-resource-cell-textoutput-class-output"},"quarto-resource-cell-textoutput-attr-output":{"_internalId":3325,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3324,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for text/console output"},"documentation":"Attribute(s) for text/console output","$id":"quarto-resource-cell-textoutput-attr-output"},"quarto-resource-cell-textoutput-class-warning":{"_internalId":3331,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3330,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for warning output"},"documentation":"Class name(s) for warning output","$id":"quarto-resource-cell-textoutput-class-warning"},"quarto-resource-cell-textoutput-attr-warning":{"_internalId":3337,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3336,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for warning output"},"documentation":"Attribute(s) for warning output","$id":"quarto-resource-cell-textoutput-attr-warning"},"quarto-resource-cell-textoutput-class-message":{"_internalId":3343,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3342,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for message output"},"documentation":"Class name(s) for message output","$id":"quarto-resource-cell-textoutput-class-message"},"quarto-resource-cell-textoutput-attr-message":{"_internalId":3349,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3348,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for message output"},"documentation":"Attribute(s) for message output","$id":"quarto-resource-cell-textoutput-attr-message"},"quarto-resource-cell-textoutput-class-error":{"_internalId":3355,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3354,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for error output"},"documentation":"Class name(s) for error output","$id":"quarto-resource-cell-textoutput-class-error"},"quarto-resource-cell-textoutput-attr-error":{"_internalId":3361,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3360,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for error output"},"documentation":"Attribute(s) for error output","$id":"quarto-resource-cell-textoutput-attr-error"},"quarto-resource-document-about-about":{"_internalId":3370,"type":"anyOf","anyOf":[{"_internalId":3366,"type":"enum","enum":["jolla","trestles","solana","marquee","broadside"],"description":"be one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`","completions":["jolla","trestles","solana","marquee","broadside"],"exhaustiveCompletions":true},{"_internalId":3369,"type":"ref","$ref":"website-about","description":"be website-about"}],"description":"be at least one of: one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`, website-about","tags":{"formats":["$html-doc"],"description":{"short":"Specifies that the page is an 'about' page and which template to use when laying out the page.","long":"Specifies that the page is an 'about' page and which template to use when laying out the page.\n\nThe allowed values are either:\n\n- one of the possible template values (`jolla`, `trestles`, `solana`, `marquee`, or `broadside`))\n- an object describing the 'about' page in more detail. See [About Pages](https://quarto.org/docs/websites/website-about.html) for more.\n"}},"documentation":"Specifies that the page is an ‘about’ page and which template to use\nwhen laying out the page.","$id":"quarto-resource-document-about-about"},"quarto-resource-document-attributes-title":{"type":"string","description":"be a string","documentation":"Document title","tags":{"description":"Document title"},"$id":"quarto-resource-document-attributes-title"},"quarto-resource-document-attributes-subtitle":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$html-all","context","muse","odt","docx"],"description":"Identifies the subtitle of the document."},"documentation":"Identifies the subtitle of the document.","$id":"quarto-resource-document-attributes-subtitle"},"quarto-resource-document-attributes-date":{"_internalId":3377,"type":"ref","$ref":"date","description":"be date","documentation":"Document date","tags":{"description":"Document date"},"$id":"quarto-resource-document-attributes-date"},"quarto-resource-document-attributes-date-format":{"_internalId":3380,"type":"ref","$ref":"date-format","description":"be date-format","documentation":"Date format for the document","tags":{"description":"Date format for the document"},"$id":"quarto-resource-document-attributes-date-format"},"quarto-resource-document-attributes-date-modified":{"_internalId":3383,"type":"ref","$ref":"date","description":"be date","tags":{"formats":["$html-doc"],"description":"Document date modified"},"documentation":"Document date modified","$id":"quarto-resource-document-attributes-date-modified"},"quarto-resource-document-attributes-author":{"_internalId":3394,"type":"anyOf","anyOf":[{"_internalId":3392,"type":"anyOf","anyOf":[{"_internalId":3388,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":3393,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3392,"type":"anyOf","anyOf":[{"_internalId":3388,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"description":"Author or authors of the document"},"documentation":"Author or authors of the document","$id":"quarto-resource-document-attributes-author"},"quarto-resource-document-attributes-affiliation":{"_internalId":3405,"type":"anyOf","anyOf":[{"_internalId":3403,"type":"anyOf","anyOf":[{"_internalId":3399,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":3404,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3403,"type":"anyOf","anyOf":[{"_internalId":3399,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"formats":["$jats-all"],"description":{"short":"The list of organizations with which contributors are affiliated.","long":"The list of organizations with which contributors are\naffiliated. Each institution is added as an [``] element to\nthe author's contrib-group. See the Pandoc [JATS documentation](https://pandoc.org/jats.html) \nfor details on `affiliation` fields.\n"}},"documentation":"The list of organizations with which contributors are affiliated.","$id":"quarto-resource-document-attributes-affiliation"},"quarto-resource-document-attributes-copyright":{"_internalId":3406,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"formats":["$jats-all"],"description":{"short":"Licensing and copyright information.","long":"Licensing and copyright information. This information is\nrendered via the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/permissions.html) element.\nThe variables `type`, `link`, and `text` should always be used\ntogether. See the Pandoc [JATS documentation](https://pandoc.org/jats.html)\nfor details on `copyright` fields.\n"}},"documentation":"Licensing and copyright information.","$id":"quarto-resource-document-attributes-copyright"},"quarto-resource-document-attributes-article":{"_internalId":3408,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"formats":["$jats-all"],"description":{"short":"Information concerning the article that identifies or describes it.","long":"Information concerning the article that identifies or describes\nit. The key-value pairs within this map are typically used\nwithin the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/article-meta.html) element.\nSee the Pandoc [JATS documentation](https://pandoc.org/jats.html) for details on `article` fields.\n"}},"documentation":"Information concerning the article that identifies or describes\nit.","$id":"quarto-resource-document-attributes-article"},"quarto-resource-document-attributes-journal":{"_internalId":3410,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"formats":["$jats-all"],"description":{"short":"Information on the journal in which the article is published.","long":"Information on the journal in which the article is published.\nSee the Pandoc [JATS documentation](https://pandoc.org/jats.html) for details on `journal` fields.\n"}},"documentation":"Information on the journal in which the article is published.","$id":"quarto-resource-document-attributes-journal"},"quarto-resource-document-attributes-institute":{"_internalId":3422,"type":"anyOf","anyOf":[{"_internalId":3420,"type":"anyOf","anyOf":[{"_internalId":3416,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":3421,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3420,"type":"anyOf","anyOf":[{"_internalId":3416,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"formats":["$html-pres","beamer"],"description":"Author affiliations for the presentation."},"documentation":"Author affiliations for the presentation.","$id":"quarto-resource-document-attributes-institute"},"quarto-resource-document-attributes-abstract":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$html-doc","$epub-all","$asciidoc-all","$jats-all","context","ms","odt","docx"],"description":"Summary of document"},"documentation":"Summary of document","$id":"quarto-resource-document-attributes-abstract"},"quarto-resource-document-attributes-abstract-title":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","$epub-all","docx","typst"],"description":"Title used to label document abstract"},"documentation":"Title used to label document abstract","$id":"quarto-resource-document-attributes-abstract-title"},"quarto-resource-document-attributes-notes":{"type":"string","description":"be a string","tags":{"formats":["$jats-all"],"description":"Additional notes concerning the whole article. Added to the\narticle's frontmatter via the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/notes.html) element.\n"},"documentation":"Additional notes concerning the whole article. Added to the article’s\nfrontmatter via the <notes>\nelement.","$id":"quarto-resource-document-attributes-notes"},"quarto-resource-document-attributes-tags":{"_internalId":3433,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$jats-all"],"description":"List of keywords. Items are used as contents of the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/kwd.html) element; the elements are grouped in a [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/kwd-group.html) with the [`kwd-group-type`](https://jats.nlm.nih.gov/publishing/tag-library/1.2/attribute/kwd-group-type.html) value `author`."},"documentation":"List of keywords. Items are used as contents of the <kwd>\nelement; the elements are grouped in a <kwd-group>\nwith the kwd-group-type\nvalue author.","$id":"quarto-resource-document-attributes-tags"},"quarto-resource-document-attributes-doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Displays the document Digital Object Identifier in the header."},"documentation":"Displays the document Digital Object Identifier in the header.","$id":"quarto-resource-document-attributes-doi"},"quarto-resource-document-attributes-thanks":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","typst"],"description":"The contents of an acknowledgments footnote after the document title."},"documentation":"The contents of an acknowledgments footnote after the document\ntitle.","$id":"quarto-resource-document-attributes-thanks"},"quarto-resource-document-attributes-order":{"type":"number","description":"be a number","documentation":"Order for document when included in a website automatic sidebar\nmenu.","tags":{"description":"Order for document when included in a website automatic sidebar menu."},"$id":"quarto-resource-document-attributes-order"},"quarto-resource-document-citation-citation":{"_internalId":3447,"type":"anyOf","anyOf":[{"_internalId":3444,"type":"ref","$ref":"citation-item","description":"be citation-item"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: citation-item, `true` or `false`","documentation":"Citation information for the document itself.","tags":{"description":{"short":"Citation information for the document itself.","long":"Citation information for the document itself specified as [CSL](https://docs.citationstyles.org/en/stable/specification.html) \nYAML in the document front matter.\n\nFor more on supported options, see [Citation Metadata](https://quarto.org/docs/reference/metadata/citation.html).\n"}},"$id":"quarto-resource-document-citation-citation"},"quarto-resource-document-code-code-copy":{"_internalId":3455,"type":"anyOf","anyOf":[{"_internalId":3452,"type":"enum","enum":["hover"],"description":"be 'hover'","completions":["hover"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: 'hover', `true` or `false`","tags":{"formats":["$html-all"],"description":{"short":"Enable a code copy icon for code blocks.","long":"Enable a code copy icon for code blocks. \n\n- `true`: Always show the icon\n- `false`: Never show the icon\n- `hover` (default): Show the icon when the mouse hovers over the code block\n"}},"documentation":"Enable a code copy icon for code blocks.","$id":"quarto-resource-document-code-code-copy"},"quarto-resource-document-code-code-link":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","formats":["$html-files"],"description":{"short":"Enables hyper-linking of functions within code blocks \nto their online documentation.\n","long":"Enables hyper-linking of functions within code blocks \nto their online documentation.\n\nCode linking is currently implemented only for the knitr engine \n(via the [downlit](https://downlit.r-lib.org/) package). \nA limitation of downlit currently prevents code linking \nif `code-line-numbers` is also `true`.\n"}},"documentation":"Enables hyper-linking of functions within code blocks to their online\ndocumentation.","$id":"quarto-resource-document-code-code-link"},"quarto-resource-document-code-code-annotations":{"_internalId":3465,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3464,"type":"enum","enum":["hover","select","below","none"],"description":"be one of: `hover`, `select`, `below`, `none`","completions":["hover","select","below","none"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `hover`, `select`, `below`, `none`","documentation":"The style to use when displaying code annotations","tags":{"description":{"short":"The style to use when displaying code annotations","long":"The style to use when displaying code annotations. Set this value\nto false to hide code annotations.\n"}},"$id":"quarto-resource-document-code-code-annotations"},"quarto-resource-document-code-code-tools":{"_internalId":3484,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3483,"type":"object","description":"be an object","properties":{"source":{"_internalId":3478,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string"},"toggle":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},"caption":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["$html-doc"],"description":{"short":"Include a code tools menu (for hiding and showing code).","long":"Include a code tools menu (for hiding and showing code).\nUse `true` or `false` to enable or disable the standard code \ntools menu. Specify sub-properties `source`, `toggle`, and\n`caption` to customize the behavior and appearance of code tools.\n"}},"documentation":"Include a code tools menu (for hiding and showing code).","$id":"quarto-resource-document-code-code-tools"},"quarto-resource-document-code-code-block-border-left":{"_internalId":3491,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc","$pdf-all"],"description":{"short":"Show a thick left border on code blocks.","long":"Specifies to apply a left border on code blocks. Provide a hex color to specify that the border is\nenabled as well as the color of the border.\n"}},"documentation":"Show a thick left border on code blocks.","$id":"quarto-resource-document-code-code-block-border-left"},"quarto-resource-document-code-code-block-bg":{"_internalId":3498,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc","$pdf-all"],"description":{"short":"Show a background color for code blocks.","long":"Specifies to apply a background color on code blocks. Provide a hex color to specify that the background color is\nenabled as well as the color of the background.\n"}},"documentation":"Show a background color for code blocks.","$id":"quarto-resource-document-code-code-block-bg"},"quarto-resource-document-code-syntax-highlighting":{"_internalId":3510,"type":"anyOf","anyOf":[{"_internalId":3507,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string"},"dark":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true},{"type":"string","description":"be a string","completions":["a11y","arrow","atom-one","ayu","ayu-mirage","breeze","breezedark","dracula","espresso","github","gruvbox","haddock","idiomatic","kate","monochrome","monokai","none","nord","oblivion","printing","pygments","radical","solarized","tango","vim-dark","zenburn"]}],"description":"be at least one of: an object, a string","tags":{"formats":["$html-all","docx","ms","$pdf-all","typst"],"description":{"short":"Specifies the coloring style to be used in highlighted source code.","long":"Specifies the coloring style to be used in highlighted source code.\n\nValid values:\n\n- `none`: Disables syntax highlighting for code blocks.\n- `idiomatic`: Uses the format's native syntax highlighter\n (e.g., Typst's built-in highlighting, LaTeX `listings` package,\n or reveal.js highlight.js plugin).\n- A style name (e.g., `pygments`, `tango`, `github`): Uses\n Pandoc's skylighting with the specified theme.\n- A path to a `.theme` file: Uses a custom KDE syntax\n highlighting theme.\n\nFor adaptive light/dark themes, specify an object with `light`\nand `dark` properties pointing to theme files.\n"}},"documentation":"Specifies the coloring style to be used in highlighted source\ncode.","$id":"quarto-resource-document-code-syntax-highlighting"},"quarto-resource-document-code-highlight-style":{"_internalId":3522,"type":"anyOf","anyOf":[{"_internalId":3519,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string"},"dark":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string","tags":{"formats":["$html-all","docx","ms","$pdf-all","typst"],"description":{"short":"Deprecated: use `syntax-highlighting` instead.","long":"Deprecated: use `syntax-highlighting` instead.\n\nSpecifies the coloring style to be used in highlighted source code.\n"},"hidden":true},"documentation":"Deprecated: use syntax-highlighting instead.","$id":"quarto-resource-document-code-highlight-style"},"quarto-resource-document-code-syntax-definition":{"type":"string","description":"be a string","tags":{"formats":["$html-all","docx","ms","$pdf-all","typst"],"description":"KDE language syntax definition file (XML)","hidden":true},"documentation":"KDE language syntax definition file (XML)","$id":"quarto-resource-document-code-syntax-definition"},"quarto-resource-document-code-syntax-definitions":{"_internalId":3529,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$html-all","docx","ms","$pdf-all","typst"],"description":"KDE language syntax definition files (XML)"},"documentation":"KDE language syntax definition files (XML)","$id":"quarto-resource-document-code-syntax-definitions"},"quarto-resource-document-code-listings":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":{"short":"Use the listings package for LaTeX code blocks.","long":"Use the `listings` package for LaTeX code blocks. The package\ndoes not support multi-byte encoding for source code. To handle UTF-8\nyou would need to use a custom template. This issue is fully\ndocumented here: [Encoding issue with the listings package](https://en.wikibooks.org/wiki/LaTeX/Source_Code_Listings#Encoding_issue)\n"}},"documentation":"Use the listings package for LaTeX code blocks.","$id":"quarto-resource-document-code-listings"},"quarto-resource-document-code-indented-code-classes":{"_internalId":3536,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$html-all","docx","ms","$pdf-all"],"description":"Specify classes to use for all indented code blocks"},"documentation":"Specify classes to use for all indented code blocks","$id":"quarto-resource-document-code-indented-code-classes"},"quarto-resource-document-colors-fontcolor":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Sets the CSS `color` property."},"documentation":"Sets the CSS color property.","$id":"quarto-resource-document-colors-fontcolor"},"quarto-resource-document-colors-linkcolor":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all","typst"],"description":{"short":"Sets the color of hyperlinks in the document.","long":"For HTML output, sets the CSS `color` property on all links.\n\nFor LaTeX output, The color used for internal links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor),\nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n\nFor ConTeXt output, sets the color for both external links and links within the document.\n\nFor Typst output, sets the color of internal hyperlinks using Typst color syntax.\n"}},"documentation":"Sets the color of hyperlinks in the document.","$id":"quarto-resource-document-colors-linkcolor"},"quarto-resource-document-colors-monobackgroundcolor":{"type":"string","description":"be a string","tags":{"formats":["html","html4","html5","slidy","slideous","s5","dzslides"],"description":"Sets the CSS `background-color` property on code elements and adds extra padding."},"documentation":"Sets the CSS background-color property on code elements\nand adds extra padding.","$id":"quarto-resource-document-colors-monobackgroundcolor"},"quarto-resource-document-colors-backgroundcolor":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Sets the CSS `background-color` property on the html element.\n"},"documentation":"Sets the CSS background-color property on the html\nelement.","$id":"quarto-resource-document-colors-backgroundcolor"},"quarto-resource-document-colors-filecolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","typst"],"description":{"short":"The color used for external links.","long":"For LaTeX output, the color used for external links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor),\nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n\nFor Typst output, sets the color of external file links using Typst color syntax.\n"}},"documentation":"The color used for external links.","$id":"quarto-resource-document-colors-filecolor"},"quarto-resource-document-colors-citecolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","typst"],"description":{"short":"The color used for citation links.","long":"For LaTeX output, the color used for citation links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor),\nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n\nFor Typst output, sets the color of citation links using Typst color syntax.\n"}},"documentation":"The color used for citation links.","$id":"quarto-resource-document-colors-citecolor"},"quarto-resource-document-colors-urlcolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The color used for linked URLs using color options allowed by `xcolor`","long":"The color used for linked URLs using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"}},"documentation":"The color used for linked URLs using color options allowed by\nxcolor","$id":"quarto-resource-document-colors-urlcolor"},"quarto-resource-document-colors-toccolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The color used for links in the Table of Contents using color options allowed by `xcolor`","long":"The color used for links in the Table of Contents using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"}},"documentation":"The color used for links in the Table of Contents using color options\nallowed by xcolor","$id":"quarto-resource-document-colors-toccolor"},"quarto-resource-document-colors-colorlinks":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Add color to link text, automatically enabled if any of \n`linkcolor`, `filecolor`, `citecolor`, `urlcolor`, or `toccolor` are set.\n"},"documentation":"Add color to link text, automatically enabled if any of\nlinkcolor, filecolor, citecolor,\nurlcolor, or toccolor are set.","$id":"quarto-resource-document-colors-colorlinks"},"quarto-resource-document-colors-contrastcolor":{"type":"string","description":"be a string","tags":{"formats":["context"],"description":{"short":"Color for links to other content within the document.","long":"Color for links to other content within the document. \n\nSee [ConTeXt Color](https://wiki.contextgarden.net/Color) for additional information.\n"}},"documentation":"Color for links to other content within the document.","$id":"quarto-resource-document-colors-contrastcolor"},"quarto-resource-document-comments-comments":{"_internalId":3559,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration","tags":{"formats":["$html-files"],"description":"Configuration for document commenting."},"documentation":"Configuration for document commenting.","$id":"quarto-resource-document-comments-comments"},"quarto-resource-document-crossref-crossref":{"_internalId":3705,"type":"anyOf","anyOf":[{"_internalId":3564,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":3704,"type":"object","description":"be an object","properties":{"custom":{"_internalId":3592,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":3591,"type":"object","description":"be an object","properties":{"kind":{"_internalId":3573,"type":"enum","enum":["float"],"description":"be 'float'","completions":["float"],"exhaustiveCompletions":true,"tags":{"description":"The kind of cross reference (currently only \"float\" is supported)."},"documentation":"The kind of cross reference (currently only “float” is\nsupported)."},"reference-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used in rendered references when referencing this type."},"documentation":"The prefix used in rendered references when referencing this\ntype."},"caption-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used in rendered captions when referencing this type. If omitted, the field `reference-prefix` is used."},"documentation":"The prefix used in rendered captions when referencing this type. If\nomitted, the field reference-prefix is used."},"space-before-numbering":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"If false, use no space between crossref prefixes and numbering."},"documentation":"If false, use no space between crossref prefixes and numbering."},"key":{"type":"string","description":"be a string","tags":{"description":"The key used to prefix reference labels of this type, such as \"fig\", \"tbl\", \"lst\", etc."},"documentation":"The key used to prefix reference labels of this type, such as “fig”,\n“tbl”, “lst”, etc."},"latex-env":{"type":"string","description":"be a string","tags":{"description":"In LaTeX output, the name of the custom environment to be used."},"documentation":"In LaTeX output, the name of the custom environment to be used."},"latex-list-of-file-extension":{"type":"string","description":"be a string","tags":{"description":"In LaTeX output, the extension of the auxiliary file used by LaTeX to collect names to be used in the custom \"list of\" command. If omitted, a string with prefix `lo` and suffix with the value of `ref-type` is used."},"documentation":"In LaTeX output, the extension of the auxiliary file used by LaTeX to\ncollect names to be used in the custom “list of” command. If omitted, a\nstring with prefix lo and suffix with the value of\nref-type is used."},"latex-list-of-description":{"type":"string","description":"be a string","tags":{"description":"The description of the crossreferenceable object to be used in the title of the \"list of\" command. If omitted, the field `reference-prefix` is used."},"documentation":"The description of the crossreferenceable object to be used in the\ntitle of the “list of” command. If omitted, the field\nreference-prefix is used."},"caption-location":{"_internalId":3590,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"description":"The location of the caption relative to the crossreferenceable content."},"documentation":"The location of the caption relative to the crossreferenceable\ncontent."}},"patternProperties":{},"required":["kind","reference-prefix","key"],"closed":true,"tags":{"description":"A custom cross reference type. See [Custom](https://quarto.org/docs/reference/metadata/crossref.html#custom) for more details."},"documentation":"A custom cross reference type. See Custom\nfor more details."}},"chapters":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Use top level sections (H1) in this document as chapters."},"documentation":"Use top level sections (H1) in this document as chapters."},"title-delim":{"type":"string","description":"be a string","tags":{"description":"The delimiter used between the prefix and the caption."},"documentation":"The delimiter used between the prefix and the caption."},"fig-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for figure captions."},"documentation":"The title prefix used for figure captions."},"tbl-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for table captions."},"documentation":"The title prefix used for table captions."},"eq-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for equation captions."},"documentation":"The title prefix used for equation captions."},"lst-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for listing captions."},"documentation":"The title prefix used for listing captions."},"thm-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for theorem captions."},"documentation":"The title prefix used for theorem captions."},"lem-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for lemma captions."},"documentation":"The title prefix used for lemma captions."},"cor-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for corollary captions."},"documentation":"The title prefix used for corollary captions."},"prp-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for proposition captions."},"documentation":"The title prefix used for proposition captions."},"cnj-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for conjecture captions."},"documentation":"The title prefix used for conjecture captions."},"def-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for definition captions."},"documentation":"The title prefix used for definition captions."},"exm-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for example captions."},"documentation":"The title prefix used for example captions."},"exr-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for exercise captions."},"documentation":"The title prefix used for exercise captions."},"fig-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a figure."},"documentation":"The prefix used for an inline reference to a figure."},"tbl-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a table."},"documentation":"The prefix used for an inline reference to a table."},"eq-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to an equation."},"documentation":"The prefix used for an inline reference to an equation."},"sec-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a section."},"documentation":"The prefix used for an inline reference to a section."},"lst-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a listing."},"documentation":"The prefix used for an inline reference to a listing."},"thm-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a theorem."},"documentation":"The prefix used for an inline reference to a theorem."},"lem-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a lemma."},"documentation":"The prefix used for an inline reference to a lemma."},"cor-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a corollary."},"documentation":"The prefix used for an inline reference to a corollary."},"prp-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a proposition."},"documentation":"The prefix used for an inline reference to a proposition."},"cnj-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a conjecture."},"documentation":"The prefix used for an inline reference to a conjecture."},"def-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a definition."},"documentation":"The prefix used for an inline reference to a definition."},"exm-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to an example."},"documentation":"The prefix used for an inline reference to an example."},"exr-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to an exercise."},"documentation":"The prefix used for an inline reference to an exercise."},"fig-labels":{"_internalId":3649,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for figures."},"documentation":"The numbering scheme used for figures."},"tbl-labels":{"_internalId":3652,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for tables."},"documentation":"The numbering scheme used for tables."},"eq-labels":{"_internalId":3655,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for equations."},"documentation":"The numbering scheme used for equations."},"sec-labels":{"_internalId":3658,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for sections."},"documentation":"The numbering scheme used for sections."},"lst-labels":{"_internalId":3661,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for listings."},"documentation":"The numbering scheme used for listings."},"thm-labels":{"_internalId":3664,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for theorems."},"documentation":"The numbering scheme used for theorems."},"lem-labels":{"_internalId":3667,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for lemmas."},"documentation":"The numbering scheme used for lemmas."},"cor-labels":{"_internalId":3670,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for corollaries."},"documentation":"The numbering scheme used for corollaries."},"prp-labels":{"_internalId":3673,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for propositions."},"documentation":"The numbering scheme used for propositions."},"cnj-labels":{"_internalId":3676,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for conjectures."},"documentation":"The numbering scheme used for conjectures."},"def-labels":{"_internalId":3679,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for definitions."},"documentation":"The numbering scheme used for definitions."},"exm-labels":{"_internalId":3682,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for examples."},"documentation":"The numbering scheme used for examples."},"exr-labels":{"_internalId":3685,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for exercises."},"documentation":"The numbering scheme used for exercises."},"lof-title":{"type":"string","description":"be a string","tags":{"description":"The title used for the list of figures."},"documentation":"The title used for the list of figures."},"lot-title":{"type":"string","description":"be a string","tags":{"description":"The title used for the list of tables."},"documentation":"The title used for the list of tables."},"lol-title":{"type":"string","description":"be a string","tags":{"description":"The title used for the list of listings."},"documentation":"The title used for the list of listings."},"labels":{"_internalId":3694,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The number scheme used for references."},"documentation":"The number scheme used for references."},"subref-labels":{"_internalId":3697,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The number scheme used for sub references."},"documentation":"The number scheme used for sub references."},"ref-hyperlink":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether cross references should be hyper-linked."},"documentation":"Whether cross references should be hyper-linked."},"appendix-title":{"type":"string","description":"be a string","tags":{"description":"The title used for appendix."},"documentation":"The title used for appendix."},"appendix-delim":{"type":"string","description":"be a string","tags":{"description":"The delimiter beween appendix number and title."},"documentation":"The delimiter beween appendix number and title."}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', an object","documentation":"Configuration for cross-reference labels and prefixes.","tags":{"description":{"short":"Configuration for cross-reference labels and prefixes.","long":"Configuration for cross-reference labels and prefixes. See [Cross-Reference Options](https://quarto.org/docs/reference/metadata/crossref.html) for more details."}},"$id":"quarto-resource-document-crossref-crossref"},"quarto-resource-document-crossref-crossrefs-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables a hover popup for cross references that shows the item being referenced."},"documentation":"Enables a hover popup for cross references that shows the item being\nreferenced.","$id":"quarto-resource-document-crossref-crossrefs-hover"},"quarto-resource-document-dashboard-logo":{"_internalId":3710,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"formats":["dashboard"],"description":"Logo image(s) (placed on the left side of the navigation bar)"},"documentation":"Logo image(s) (placed on the left side of the navigation bar)","$id":"quarto-resource-document-dashboard-logo"},"quarto-resource-document-dashboard-orientation":{"_internalId":3713,"type":"enum","enum":["rows","columns"],"description":"be one of: `rows`, `columns`","completions":["rows","columns"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":"Default orientation for dashboard content (default `rows`)"},"documentation":"Default orientation for dashboard content (default\nrows)","$id":"quarto-resource-document-dashboard-orientation"},"quarto-resource-document-dashboard-scrolling":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":"Use scrolling rather than fill layout (default: `false`)"},"documentation":"Use scrolling rather than fill layout (default:\nfalse)","$id":"quarto-resource-document-dashboard-scrolling"},"quarto-resource-document-dashboard-expandable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":"Make card content expandable (default: `true`)"},"documentation":"Make card content expandable (default: true)","$id":"quarto-resource-document-dashboard-expandable"},"quarto-resource-document-dashboard-nav-buttons":{"_internalId":3743,"type":"anyOf","anyOf":[{"_internalId":3741,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3740,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string"},"href":{"type":"string","description":"be a string"},"icon":{"type":"string","description":"be a string"},"rel":{"type":"string","description":"be a string"},"target":{"type":"string","description":"be a string"},"title":{"type":"string","description":"be a string"},"aria-label":{"type":"string","description":"be a string"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention text,href,icon,rel,target,title,aria-label","type":"string","pattern":"(?!(^aria_label$|^ariaLabel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object"},{"_internalId":3742,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":3741,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3740,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string"},"href":{"type":"string","description":"be a string"},"icon":{"type":"string","description":"be a string"},"rel":{"type":"string","description":"be a string"},"target":{"type":"string","description":"be a string"},"title":{"type":"string","description":"be a string"},"aria-label":{"type":"string","description":"be a string"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention text,href,icon,rel,target,title,aria-label","type":"string","pattern":"(?!(^aria_label$|^ariaLabel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"formats":["dashboard"],"description":"Links to display on the dashboard navigation bar"},"documentation":"Links to display on the dashboard navigation bar","$id":"quarto-resource-document-dashboard-nav-buttons"},"quarto-resource-document-editor-editor":{"_internalId":3784,"type":"anyOf","anyOf":[{"_internalId":3748,"type":"enum","enum":["source","visual"],"description":"be one of: `source`, `visual`","completions":["source","visual"],"exhaustiveCompletions":true},{"_internalId":3783,"type":"object","description":"be an object","properties":{"mode":{"_internalId":3753,"type":"enum","enum":["source","visual"],"description":"be one of: `source`, `visual`","completions":["source","visual"],"exhaustiveCompletions":true,"tags":{"description":"Default editing mode for document"},"documentation":"Default editing mode for document"},"markdown":{"_internalId":3778,"type":"object","description":"be an object","properties":{"wrap":{"_internalId":3763,"type":"anyOf","anyOf":[{"_internalId":3760,"type":"enum","enum":["sentence","none"],"description":"be one of: `sentence`, `none`","completions":["sentence","none"],"exhaustiveCompletions":true},{"type":"number","description":"be a number"}],"description":"be at least one of: one of: `sentence`, `none`, a number","tags":{"description":"A column number (e.g. 72), `sentence`, or `none`"},"documentation":"A column number (e.g. 72), sentence, or\nnone"},"canonical":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Write standard visual editor markdown from source mode."},"documentation":"Write standard visual editor markdown from source mode."},"references":{"_internalId":3777,"type":"object","description":"be an object","properties":{"location":{"_internalId":3772,"type":"enum","enum":["block","section","document"],"description":"be one of: `block`, `section`, `document`","completions":["block","section","document"],"exhaustiveCompletions":true,"tags":{"description":"Location to write references (`block`, `section`, or `document`)"},"documentation":"Location to write references (block,\nsection, or document)"},"links":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Write markdown links as references rather than inline."},"documentation":"Write markdown links as references rather than inline."},"prefix":{"type":"string","description":"be a string","tags":{"description":"Unique prefix for references (`none` to prevent automatic prefixes)"},"documentation":"Unique prefix for references (none to prevent automatic\nprefixes)"}},"patternProperties":{},"tags":{"description":"Reference writing options for visual editor"},"documentation":"Reference writing options for visual editor"}},"patternProperties":{},"tags":{"description":"Markdown writing options for visual editor"},"documentation":"Markdown writing options for visual editor"},"render-on-save":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":["jupyter"],"description":"Automatically re-render for preview whenever document is saved (note that this requires a preview\nfor the saved document be already running). This option currently works only within VS Code.\n"},"documentation":"Automatically re-render for preview whenever document is saved (note\nthat this requires a preview for the saved document be already running).\nThis option currently works only within VS Code."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention mode,markdown,render-on-save","type":"string","pattern":"(?!(^render_on_save$|^renderOnSave$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true,"hidden":true},"completions":[]}],"description":"be at least one of: one of: `source`, `visual`, an object","documentation":"Visual editor configuration","tags":{"description":"Visual editor configuration"},"$id":"quarto-resource-document-editor-editor"},"quarto-resource-document-editor-editor_options":{"_internalId":3790,"type":"object","description":"be an object","properties":{"chunk_output_type":{"_internalId":3789,"type":"enum","enum":["inline","console"],"description":"be one of: `inline`, `console`","completions":["inline","console"],"exhaustiveCompletions":true,"tags":{"description":"Determines where chunk output is shown in the editor."},"documentation":"Determines where chunk output is shown in the editor."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention chunk_output_type","type":"string","pattern":"(?!(^chunk-output-type$|^chunkOutputType$))","tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true,"description":{"short":"Editor-specific options (used by RStudio and Positron).","long":"Editor-specific options that control IDE behavior for this document.\nThese options are used by RStudio and Positron to configure\nper-document editor settings.\n"}},"documentation":"Editor-specific options (used by RStudio and Positron).","$id":"quarto-resource-document-editor-editor_options"},"quarto-resource-document-editor-zotero":{"_internalId":3801,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3800,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3799,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: a string, an array of values, where each element must be a string","documentation":"Enable (true) or disable (false) Zotero for\na document. Alternatively, provide a list of one or more Zotero group\nlibraries to use with the document.","tags":{"description":"Enable (`true`) or disable (`false`) Zotero for a document. Alternatively, provide a list of one or\nmore Zotero group libraries to use with the document.\n"},"$id":"quarto-resource-document-editor-zotero"},"quarto-resource-document-epub-identifier":{"_internalId":3814,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3813,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The identifier value."},"documentation":"The identifier value."},"schema":{"_internalId":3812,"type":"enum","enum":["ISBN-10","GTIN-13","UPC","ISMN-10","DOI","LCCN","GTIN-14","ISBN-13","Legal deposit number","URN","OCLC","ISMN-13","ISBN-A","JP","OLCC"],"description":"be one of: `ISBN-10`, `GTIN-13`, `UPC`, `ISMN-10`, `DOI`, `LCCN`, `GTIN-14`, `ISBN-13`, `Legal deposit number`, `URN`, `OCLC`, `ISMN-13`, `ISBN-A`, `JP`, `OLCC`","completions":["ISBN-10","GTIN-13","UPC","ISMN-10","DOI","LCCN","GTIN-14","ISBN-13","Legal deposit number","URN","OCLC","ISMN-13","ISBN-A","JP","OLCC"],"exhaustiveCompletions":true,"tags":{"description":"The identifier schema (e.g. `DOI`, `ISBN-A`, etc.)"},"documentation":"The identifier schema (e.g. DOI, ISBN-A,\netc.)"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","tags":{"formats":["$epub-all"],"description":"The identifier for this publication."},"documentation":"The identifier for this publication.","$id":"quarto-resource-document-epub-identifier"},"quarto-resource-document-epub-creator":{"_internalId":3817,"type":"ref","$ref":"epub-contributor","description":"be epub-contributor","tags":{"formats":["$epub-all"],"description":"Creators of this publication."},"documentation":"Creators of this publication.","$id":"quarto-resource-document-epub-creator"},"quarto-resource-document-epub-contributor":{"_internalId":3820,"type":"ref","$ref":"epub-contributor","description":"be epub-contributor","tags":{"formats":["$epub-all"],"description":"Contributors to this publication."},"documentation":"Contributors to this publication.","$id":"quarto-resource-document-epub-contributor"},"quarto-resource-document-epub-type":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":{"short":"Text describing the specialized type of this publication.","long":"Text describing the specialized type of this publication.\n\nAn informative registry of specialized EPUB Publication \ntypes for use with this element is maintained in the \n[TypesRegistry](https://www.w3.org/publishing/epub32/epub-packages.html#bib-typesregistry), \nbut Authors may use any text string as a value.\n"}},"documentation":"Text describing the specialized type of this publication.","$id":"quarto-resource-document-epub-type"},"quarto-resource-document-epub-format":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the format of this publication."},"documentation":"Text describing the format of this publication.","$id":"quarto-resource-document-epub-format"},"quarto-resource-document-epub-relation":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the relation of this publication."},"documentation":"Text describing the relation of this publication.","$id":"quarto-resource-document-epub-relation"},"quarto-resource-document-epub-coverage":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the coverage of this publication."},"documentation":"Text describing the coverage of this publication.","$id":"quarto-resource-document-epub-coverage"},"quarto-resource-document-epub-rights":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the rights of this publication."},"documentation":"Text describing the rights of this publication.","$id":"quarto-resource-document-epub-rights"},"quarto-resource-document-epub-belongs-to-collection":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Identifies the name of a collection to which the EPUB Publication belongs."},"documentation":"Identifies the name of a collection to which the EPUB Publication\nbelongs.","$id":"quarto-resource-document-epub-belongs-to-collection"},"quarto-resource-document-epub-group-position":{"type":"number","description":"be a number","tags":{"formats":["$epub-all"],"description":"Indicates the numeric position in which this publication \nbelongs relative to other works belonging to the same \n`belongs-to-collection` field.\n"},"documentation":"Indicates the numeric position in which this publication belongs\nrelative to other works belonging to the same\nbelongs-to-collection field.","$id":"quarto-resource-document-epub-group-position"},"quarto-resource-document-epub-page-progression-direction":{"_internalId":3837,"type":"enum","enum":["ltr","rtl"],"description":"be one of: `ltr`, `rtl`","completions":["ltr","rtl"],"exhaustiveCompletions":true,"tags":{"formats":["$epub-all"],"description":"Sets the global direction in which content flows (`ltr` or `rtl`)"},"documentation":"Sets the global direction in which content flows (ltr or\nrtl)","$id":"quarto-resource-document-epub-page-progression-direction"},"quarto-resource-document-epub-ibooks":{"_internalId":3847,"type":"object","description":"be an object","properties":{"version":{"type":"string","description":"be a string","tags":{"description":"What is new in this version of the book."},"documentation":"What is new in this version of the book."},"specified-fonts":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this book provides embedded fonts in a flowing or fixed layout book."},"documentation":"Whether this book provides embedded fonts in a flowing or fixed\nlayout book."},"scroll-axis":{"_internalId":3846,"type":"enum","enum":["vertical","horizontal","default"],"description":"be one of: `vertical`, `horizontal`, `default`","completions":["vertical","horizontal","default"],"exhaustiveCompletions":true,"tags":{"description":"The scroll direction for this book (`vertical`, `horizontal`, or `default`)"},"documentation":"The scroll direction for this book (vertical,\nhorizontal, or default)"}},"patternProperties":{},"closed":true,"tags":{"formats":["$epub-all"],"description":"iBooks specific metadata options."},"documentation":"iBooks specific metadata options.","$id":"quarto-resource-document-epub-ibooks"},"quarto-resource-document-epub-epub-metadata":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":{"short":"Look in the specified XML file for metadata for the EPUB.\nThe file should contain a series of [Dublin Core elements](https://www.dublincore.org/specifications/dublin-core/dces/).\n","long":"Look in the specified XML file for metadata for the EPUB.\nThe file should contain a series of [Dublin Core elements](https://www.dublincore.org/specifications/dublin-core/dces/).\nFor example:\n\n```xml\nCreative Commons\nes-AR\n```\n\nBy default, pandoc will include the following metadata elements:\n`` (from the document title), `` (from the\ndocument authors), `` (from the document date, which should\nbe in [ISO 8601 format]), `` (from the `lang`\nvariable, or, if is not set, the locale), and `` (a randomly generated UUID). Any of these may be\noverridden by elements in the metadata file.\n\nNote: if the source document is Markdown, a YAML metadata block\nin the document can be used instead.\n"}},"documentation":"Look in the specified XML file for metadata for the EPUB. The file\nshould contain a series of Dublin\nCore elements.","$id":"quarto-resource-document-epub-epub-metadata"},"quarto-resource-document-epub-epub-subdirectory":{"_internalId":3856,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, the null value","tags":{"formats":["$epub-all"],"description":"Specify the subdirectory in the OCF container that is to hold the\nEPUB-specific contents. The default is `EPUB`. To put the EPUB \ncontents in the top level, use an empty string.\n"},"documentation":"Specify the subdirectory in the OCF container that is to hold the\nEPUB-specific contents. The default is EPUB. To put the\nEPUB contents in the top level, use an empty string.","$id":"quarto-resource-document-epub-epub-subdirectory"},"quarto-resource-document-epub-epub-fonts":{"_internalId":3861,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$epub-all"],"description":{"short":"Embed the specified fonts in the EPUB","long":"Embed the specified fonts in the EPUB. Wildcards can also be used: for example,\n`DejaVuSans-*.ttf`. To use the embedded fonts, you will need to add declarations\nlike the following to your CSS:\n\n```css\n@font-face {\n font-family: DejaVuSans;\n font-style: normal;\n font-weight: normal;\n src:url(\"DejaVuSans-Regular.ttf\");\n}\n```\n"}},"documentation":"Embed the specified fonts in the EPUB","$id":"quarto-resource-document-epub-epub-fonts"},"quarto-resource-document-epub-epub-chapter-level":{"type":"number","description":"be a number","tags":{"formats":["$epub-all"],"description":{"short":"Specify the heading level at which to split the EPUB into separate\nchapter files.\n","long":"Specify the heading level at which to split the EPUB into separate\nchapter files. The default is to split into chapters at level-1\nheadings. This option only affects the internal composition of the\nEPUB, not the way chapters and sections are displayed to users. Some\nreaders may be slow if the chapter files are too large, so for large\ndocuments with few level-1 headings, one might want to use a chapter\nlevel of 2 or 3.\n"}},"documentation":"Specify the heading level at which to split the EPUB into separate\nchapter files.","$id":"quarto-resource-document-epub-epub-chapter-level"},"quarto-resource-document-epub-epub-cover-image":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Use the specified image as the EPUB cover. It is recommended\nthat the image be less than 1000px in width and height.\n"},"documentation":"Use the specified image as the EPUB cover. It is recommended that the\nimage be less than 1000px in width and height.","$id":"quarto-resource-document-epub-epub-cover-image"},"quarto-resource-document-epub-epub-title-page":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$epub-all"],"description":"If false, disables the generation of a title page."},"documentation":"If false, disables the generation of a title page.","$id":"quarto-resource-document-epub-epub-title-page"},"quarto-resource-document-execute-engine":{"type":"string","description":"be a string","completions":["jupyter","knitr","julia"],"documentation":"Engine used for executable code blocks.","tags":{"description":"Engine used for executable code blocks."},"$id":"quarto-resource-document-execute-engine"},"quarto-resource-document-execute-jupyter":{"_internalId":3888,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"},{"_internalId":3887,"type":"object","description":"be an object","properties":{"kernelspec":{"_internalId":3886,"type":"object","description":"be an object","properties":{"display_name":{"type":"string","description":"be a string","tags":{"description":"The name to display in the UI."},"documentation":"The name to display in the UI."},"language":{"type":"string","description":"be a string","tags":{"description":"The name of the language the kernel implements."},"documentation":"The name of the language the kernel implements."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of the kernel."},"documentation":"The name of the kernel."}},"patternProperties":{},"required":["display_name","language","name"],"propertyNames":{"errorMessage":"property ${value} does not match case convention display_name,language,name","type":"string","pattern":"(?!(^display-name$|^displayName$))","tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}}},"patternProperties":{},"completions":[],"tags":{"hidden":true}}],"description":"be at least one of: `true` or `false`, a string, an object","documentation":"Configures the Jupyter engine.","tags":{"description":"Configures the Jupyter engine."},"$id":"quarto-resource-document-execute-jupyter"},"quarto-resource-document-execute-julia":{"_internalId":3905,"type":"object","description":"be an object","properties":{"exeflags":{"_internalId":3897,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Arguments to pass to the Julia worker process."},"documentation":"Arguments to pass to the Julia worker process."},"env":{"_internalId":3904,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Environment variables to pass to the Julia worker process."},"documentation":"Environment variables to pass to the Julia worker process."}},"patternProperties":{},"documentation":"Configures the Julia engine.","tags":{"description":"Configures the Julia engine."},"$id":"quarto-resource-document-execute-julia"},"quarto-resource-document-execute-knitr":{"_internalId":3919,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3918,"type":"object","description":"be an object","properties":{"opts_knit":{"_internalId":3914,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Knit options."},"documentation":"Knit options."},"opts_chunk":{"_internalId":3917,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Knitr chunk options."},"documentation":"Knitr chunk options."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","documentation":"Set Knitr options.","tags":{"description":"Set Knitr options."},"$id":"quarto-resource-document-execute-knitr"},"quarto-resource-document-execute-cache":{"_internalId":3927,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3926,"type":"enum","enum":["refresh"],"description":"be 'refresh'","completions":["refresh"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'refresh'","tags":{"execute-only":true,"description":{"short":"Cache results of computations.","long":"Cache results of computations (using the [knitr cache](https://yihui.org/knitr/demo/cache/) \nfor R documents, and [Jupyter Cache](https://jupyter-cache.readthedocs.io/en/latest/) \nfor Jupyter documents).\n\nNote that cache invalidation is triggered by changes in chunk source code \n(or other cache attributes you've defined). \n\n- `true`: Cache results\n- `false`: Do not cache results\n- `refresh`: Force a refresh of the cache even if has not been otherwise invalidated.\n"}},"documentation":"Cache results of computations.","$id":"quarto-resource-document-execute-cache"},"quarto-resource-document-execute-freeze":{"_internalId":3935,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3934,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'auto'","tags":{"execute-only":true,"description":{"short":"Re-use previous computational output when rendering","long":"Control the re-use of previous computational output when rendering.\n\n- `true`: Never recompute previously generated computational output during a global project render\n- `false` (default): Recompute previously generated computational output\n- `auto`: Re-compute previously generated computational output only in case their source file changes\n"}},"documentation":"Re-use previous computational output when rendering","$id":"quarto-resource-document-execute-freeze"},"quarto-resource-document-execute-server":{"_internalId":3959,"type":"anyOf","anyOf":[{"_internalId":3940,"type":"enum","enum":["shiny"],"description":"be 'shiny'","completions":["shiny"],"exhaustiveCompletions":true},{"_internalId":3958,"type":"object","description":"be an object","properties":{"type":{"_internalId":3945,"type":"enum","enum":["shiny"],"description":"be 'shiny'","completions":["shiny"],"exhaustiveCompletions":true,"tags":{"description":"Type of server to run behind the document (e.g. `shiny`)"},"documentation":"Type of server to run behind the document\n(e.g. shiny)"},"ojs-export":{"_internalId":3951,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3950,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"OJS variables to export to server."},"documentation":"OJS variables to export to server."},"ojs-import":{"_internalId":3957,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3956,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Server reactive values to import into OJS."},"documentation":"Server reactive values to import into OJS."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,ojs-export,ojs-import","type":"string","pattern":"(?!(^ojs_export$|^ojsExport$|^ojs_import$|^ojsImport$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: 'shiny', an object","documentation":"Document server","tags":{"description":"Document server","hidden":true},"$id":"quarto-resource-document-execute-server"},"quarto-resource-document-execute-daemon":{"_internalId":3966,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a number, `true` or `false`","documentation":"Run Jupyter kernels within a peristent daemon (to mitigate kernel\nstartup time).","tags":{"description":{"short":"Run Jupyter kernels within a peristent daemon (to mitigate kernel startup time).","long":"Run Jupyter kernels within a peristent daemon (to mitigate kernel startup time).\nBy default a daemon with a timeout of 300 seconds will be used. Set `daemon`\nto another timeout value or to `false` to disable it altogether.\n"},"hidden":true},"$id":"quarto-resource-document-execute-daemon"},"quarto-resource-document-execute-daemon-restart":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Restart any running Jupyter daemon before rendering.","tags":{"description":"Restart any running Jupyter daemon before rendering.","hidden":true},"$id":"quarto-resource-document-execute-daemon-restart"},"quarto-resource-document-execute-enabled":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Enable code cell execution.","tags":{"description":"Enable code cell execution.","hidden":true},"$id":"quarto-resource-document-execute-enabled"},"quarto-resource-document-execute-ipynb":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Execute code cell execution in Jupyter notebooks.","tags":{"description":"Execute code cell execution in Jupyter notebooks.","hidden":true},"$id":"quarto-resource-document-execute-ipynb"},"quarto-resource-document-execute-debug":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Show code-execution related debug information.","tags":{"description":"Show code-execution related debug information.","hidden":true},"$id":"quarto-resource-document-execute-debug"},"quarto-resource-document-figures-fig-width":{"type":"number","description":"be a number","documentation":"Default width for figures generated by Matplotlib or R graphics","tags":{"description":{"short":"Default width for figures generated by Matplotlib or R graphics","long":"Default width for figures generated by Matplotlib or R graphics.\n\nNote that with the Jupyter engine, this option has no effect when\nprovided at the cell level; it can only be provided with\ndocument or project metadata.\n"}},"$id":"quarto-resource-document-figures-fig-width"},"quarto-resource-document-figures-fig-height":{"type":"number","description":"be a number","documentation":"Default height for figures generated by Matplotlib or R graphics","tags":{"description":{"short":"Default height for figures generated by Matplotlib or R graphics","long":"Default height for figures generated by Matplotlib or R graphics.\n\nNote that with the Jupyter engine, this option has no effect when\nprovided at the cell level; it can only be provided with\ndocument or project metadata.\n"}},"$id":"quarto-resource-document-figures-fig-height"},"quarto-resource-document-figures-fig-format":{"_internalId":3981,"type":"enum","enum":["retina","png","jpeg","svg","pdf"],"description":"be one of: `retina`, `png`, `jpeg`, `svg`, `pdf`","completions":["retina","png","jpeg","svg","pdf"],"exhaustiveCompletions":true,"documentation":"Default format for figures generated by Matplotlib or R graphics\n(retina, png, jpeg,\nsvg, or pdf)","tags":{"description":"Default format for figures generated by Matplotlib or R graphics (`retina`, `png`, `jpeg`, `svg`, or `pdf`)"},"$id":"quarto-resource-document-figures-fig-format"},"quarto-resource-document-figures-fig-dpi":{"type":"number","description":"be a number","documentation":"Default DPI for figures generated by Matplotlib or R graphics","tags":{"description":{"short":"Default DPI for figures generated by Matplotlib or R graphics","long":"Default DPI for figures generated by Matplotlib or R graphics.\n\nNote that with the Jupyter engine, this option has no effect when\nprovided at the cell level; it can only be provided with\ndocument or project metadata.\n"}},"$id":"quarto-resource-document-figures-fig-dpi"},"quarto-resource-document-figures-fig-asp":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":{"short":"The aspect ratio of the plot, i.e., the ratio of height/width.\n","long":"The aspect ratio of the plot, i.e., the ratio of height/width. When `fig-asp` is specified,\nthe height of a plot (the option `fig-height`) is calculated from `fig-width * fig-asp`.\n\nThe `fig-asp` option is only available within the knitr engine.\n"}},"documentation":"The aspect ratio of the plot, i.e., the ratio of height/width.","$id":"quarto-resource-document-figures-fig-asp"},"quarto-resource-document-figures-fig-responsive":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-all"],"description":"Whether to make images in this document responsive."},"documentation":"Whether to make images in this document responsive.","$id":"quarto-resource-document-figures-fig-responsive"},"quarto-resource-document-fonts-mainfont":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all","typst"],"description":{"short":"Sets the main font for the document.","long":"For HTML output, sets the CSS `font-family` on the HTML element.\n\nFor LaTeX output, the main font family for use with `xelatex` or \n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package. \n\nFor ConTeXt output, the main font family. Use the name of any \nsystem font. See [ConTeXt Fonts](https://wiki.contextgarden.net/Fonts) for more\ninformation.\n"}},"documentation":"Sets the main font for the document.","$id":"quarto-resource-document-fonts-mainfont"},"quarto-resource-document-fonts-monofont":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all"],"description":{"short":"Sets the font used for when displaying code.","long":"For HTML output, sets the CSS font-family property on code elements.\n\nFor PowerPoint output, sets the font used for code.\n\nFor LaTeX output, the monospace font family for use with `xelatex` or \n`lualatex`: take the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package. \n\nFor ConTeXt output, the monspace font family. Use the name of any \nsystem font. See [ConTeXt Fonts](https://wiki.contextgarden.net/Fonts) for more\ninformation.\n"}},"documentation":"Sets the font used for when displaying code.","$id":"quarto-resource-document-fonts-monofont"},"quarto-resource-document-fonts-codefont":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":{"short":"Sets the font used for code in Typst output.","long":"For Typst output, sets the font used for displaying code. Takes\nthe name of any font available to Typst (system fonts or fonts in\ndirectories specified by `font-paths`).\n"}},"documentation":"Sets the font used for code in Typst output.","$id":"quarto-resource-document-fonts-codefont"},"quarto-resource-document-fonts-fontsize":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all","typst"],"description":{"short":"Sets the main font size for the document.","long":"For HTML output, sets the base CSS `font-size` property.\n\nFor LaTeX and ConTeXt output, sets the font size for the document body text.\n"}},"documentation":"Sets the main font size for the document.","$id":"quarto-resource-document-fonts-fontsize"},"quarto-resource-document-fonts-fontenc":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"Allows font encoding to be specified through `fontenc` package.","long":"Allows font encoding to be specified through [`fontenc`](https://www.ctan.org/pkg/fontenc) package.\n\nSee [LaTeX Font Encodings Guide](https://ctan.org/pkg/encguide) for addition information on font encoding.\n"}},"documentation":"Allows font encoding to be specified through fontenc\npackage.","$id":"quarto-resource-document-fonts-fontenc"},"quarto-resource-document-fonts-fontfamily":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","ms"],"description":{"short":"Font package to use when compiling a PDF with the `pdflatex` `pdf-engine`.","long":"Font package to use when compiling a PDf with the `pdflatex` `pdf-engine`. \n\nSee [The LaTeX Font Catalogue](https://tug.org/FontCatalogue/) for a \nsummary of font options available.\n\nFor groff (`ms`) files, the font family for example, `T` or `P`.\n"}},"documentation":"Font package to use when compiling a PDF with the\npdflatex pdf-engine.","$id":"quarto-resource-document-fonts-fontfamily"},"quarto-resource-document-fonts-fontfamilyoptions":{"_internalId":4005,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4004,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Options for the package used as `fontfamily`.","long":"Options for the package used as `fontfamily`.\n\nFor example, to use the Libertine font with proportional lowercase\n(old-style) figures through the [`libertinus`](https://ctan.org/pkg/libertinus) package:\n\n```yaml\nfontfamily: libertinus\nfontfamilyoptions:\n - osf\n - p\n```\n"}},"documentation":"Options for the package used as fontfamily.","$id":"quarto-resource-document-fonts-fontfamilyoptions"},"quarto-resource-document-fonts-sansfont":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The sans serif font family for use with `xelatex` or `lualatex`.","long":"The sans serif font family for use with `xelatex` or \n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package.\n"}},"documentation":"The sans serif font family for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-sansfont"},"quarto-resource-document-fonts-mathfont":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","typst"],"description":{"short":"The math font family for use with `xelatex`, `lualatex`, or Typst.","long":"For LaTeX output, the math font family for use with `xelatex` or\n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package.\n\nFor Typst output, sets the font used for mathematical content.\n"}},"documentation":"The math font family for use with xelatex,\nlualatex, or Typst.","$id":"quarto-resource-document-fonts-mathfont"},"quarto-resource-document-fonts-CJKmainfont":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The CJK main font family for use with `xelatex` or `lualatex`.","long":"The CJK main font family for use with `xelatex` or \n`lualatex` using the [`xecjk`](https://ctan.org/pkg/xecjk) package.\n"}},"documentation":"The CJK main font family for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-CJKmainfont"},"quarto-resource-document-fonts-mainfontoptions":{"_internalId":4017,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4016,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The main font options for use with `xelatex` or `lualatex`.","long":"The main font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n\nFor example, to use the [TeX Gyre](http://www.gust.org.pl/projects/e-foundry/tex-gyre) \nversion of Palatino with lowercase figures:\n\n```yaml\nmainfont: TeX Gyre Pagella\nmainfontoptions:\n - Numbers=Lowercase\n - Numbers=Proportional \n```\n"}},"documentation":"The main font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-mainfontoptions"},"quarto-resource-document-fonts-sansfontoptions":{"_internalId":4023,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4022,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The sans serif font options for use with `xelatex` or `lualatex`.","long":"The sans serif font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"The sans serif font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-sansfontoptions"},"quarto-resource-document-fonts-monofontoptions":{"_internalId":4029,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4028,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The monospace font options for use with `xelatex` or `lualatex`.","long":"The monospace font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"The monospace font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-monofontoptions"},"quarto-resource-document-fonts-mathfontoptions":{"_internalId":4035,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4034,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The math font options for use with `xelatex` or `lualatex`.","long":"The math font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"The math font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-mathfontoptions"},"quarto-resource-document-fonts-font-paths":{"_internalId":4041,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4040,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["typst"],"description":{"short":"Adds additional directories to search for fonts when compiling with Typst.","long":"Locally, Typst uses installed system fonts. In addition, some custom path \ncan be specified to add directories that should be scanned for fonts.\nSetting this configuration will take precedence over any path set in TYPST_FONT_PATHS environment variable.\n"}},"documentation":"Adds additional directories to search for fonts when compiling with\nTypst.","$id":"quarto-resource-document-fonts-font-paths"},"quarto-resource-document-fonts-CJKoptions":{"_internalId":4047,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4046,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The CJK font options for use with `xelatex` or `lualatex`.","long":"The CJK font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"The CJK font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-CJKoptions"},"quarto-resource-document-fonts-microtypeoptions":{"_internalId":4053,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4052,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Options to pass to the microtype package.","long":"Options to pass to the [microtype](https://ctan.org/pkg/microtype) package."}},"documentation":"Options to pass to the microtype package.","$id":"quarto-resource-document-fonts-microtypeoptions"},"quarto-resource-document-fonts-pointsize":{"type":"string","description":"be a string","tags":{"formats":["ms"],"description":"The point size, for example, `10p`."},"documentation":"The point size, for example, 10p.","$id":"quarto-resource-document-fonts-pointsize"},"quarto-resource-document-fonts-lineheight":{"type":"string","description":"be a string","tags":{"formats":["ms"],"description":"The line height, for example, `12p`."},"documentation":"The line height, for example, 12p.","$id":"quarto-resource-document-fonts-lineheight"},"quarto-resource-document-fonts-linestretch":{"_internalId":4064,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["$html-doc","context","$pdf-all","typst"],"description":{"short":"Sets the line height or spacing for text in the document.","long":"For HTML output sets the CSS `line-height` property on the html\nelement, which is preferred to be unitless.\n\nFor LaTeX output, adjusts line spacing using the\n[setspace](https://ctan.org/pkg/setspace) package, e.g. 1.25, 1.5.\n\nFor Typst output, adjusts the spacing between lines of text.\n"}},"documentation":"Sets the line height or spacing for text in the document.","$id":"quarto-resource-document-fonts-linestretch"},"quarto-resource-document-fonts-interlinespace":{"_internalId":4070,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4069,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":"Adjusts line spacing using the `\\setupinterlinespace` command."},"documentation":"Adjusts line spacing using the \\setupinterlinespace\ncommand.","$id":"quarto-resource-document-fonts-interlinespace"},"quarto-resource-document-fonts-linkstyle":{"type":"string","description":"be a string","completions":["normal","bold","slanted","boldslanted","type","cap","small"],"tags":{"formats":["context"],"description":"The typeface style for links in the document."},"documentation":"The typeface style for links in the document.","$id":"quarto-resource-document-fonts-linkstyle"},"quarto-resource-document-fonts-whitespace":{"type":"string","description":"be a string","tags":{"formats":["context"],"description":{"short":"Set the spacing between paragraphs, for example `none`, `small.","long":"Set the spacing between paragraphs, for example `none`, `small` \nusing the [`setupwhitespace`](https://wiki.contextgarden.net/Command/setupwhitespace) \ncommand.\n"}},"documentation":"Set the spacing between paragraphs, for example none,\n`small.","$id":"quarto-resource-document-fonts-whitespace"},"quarto-resource-document-footnotes-footnotes-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables a hover popup for footnotes that shows the footnote contents."},"documentation":"Enables a hover popup for footnotes that shows the footnote\ncontents.","$id":"quarto-resource-document-footnotes-footnotes-hover"},"quarto-resource-document-footnotes-links-as-notes":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Causes links to be printed as footnotes."},"documentation":"Causes links to be printed as footnotes.","$id":"quarto-resource-document-footnotes-links-as-notes"},"quarto-resource-document-footnotes-reference-location":{"_internalId":4081,"type":"enum","enum":["block","section","margin","document"],"description":"be one of: `block`, `section`, `margin`, `document`","completions":["block","section","margin","document"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all","muse","$html-files","pdf","typst"],"description":{"short":"Location for footnotes and references\n","long":"Specify location for footnotes. Also controls the location of references, if `reference-links` is set.\n\n- `block`: Place at end of current top-level block\n- `section`: Place at end of current section\n- `margin`: Place at the margin\n- `document`: Place at end of document\n"}},"documentation":"Location for footnotes and references","$id":"quarto-resource-document-footnotes-reference-location"},"quarto-resource-document-formatting-indenting":{"_internalId":4087,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","completions":["yes","no","none","small","medium","big","first","next","odd","even","normal"]},{"_internalId":4086,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","completions":["yes","no","none","small","medium","big","first","next","odd","even","normal"]}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Set the indentation of paragraphs with one or more options.","long":"Set the indentation of paragraphs with one or more options.\n\nSee [ConTeXt Indentation](https://wiki.contextgarden.net/Indentation) for additional information.\n"}},"documentation":"Set the indentation of paragraphs with one or more options.","$id":"quarto-resource-document-formatting-indenting"},"quarto-resource-document-formatting-adjusting":{"_internalId":4090,"type":"enum","enum":["l","r","c","b"],"description":"be one of: `l`, `r`, `c`, `b`","completions":["l","r","c","b"],"exhaustiveCompletions":true,"tags":{"formats":["man"],"description":"Adjusts text to the left, right, center, or both margins (`l`, `r`, `c`, or `b`)."},"documentation":"Adjusts text to the left, right, center, or both margins\n(l, r, c, or b).","$id":"quarto-resource-document-formatting-adjusting"},"quarto-resource-document-formatting-hyphenate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["man"],"description":{"short":"Whether to hyphenate text at line breaks even in words that do not contain hyphens.","long":"Whether to hyphenate text at line breaks even in words that do not contain \nhyphens if it is necessary to do so to lay out words on a line without excessive spacing\n"}},"documentation":"Whether to hyphenate text at line breaks even in words that do not\ncontain hyphens.","$id":"quarto-resource-document-formatting-hyphenate"},"quarto-resource-document-formatting-list-tables":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["rst"],"description":"If true, tables are formatted as RST list tables."},"documentation":"If true, tables are formatted as RST list tables.","$id":"quarto-resource-document-formatting-list-tables"},"quarto-resource-document-formatting-split-level":{"type":"number","description":"be a number","tags":{"formats":["$epub-all","chunkedhtml"],"description":{"short":"Specify the heading level at which to split the EPUB into separate\nchapter files.\n","long":"Specify the heading level at which to split the EPUB into separate\nchapter files. The default is to split into chapters at level-1\nheadings. This option only affects the internal composition of the\nEPUB, not the way chapters and sections are displayed to users. Some\nreaders may be slow if the chapter files are too large, so for large\ndocuments with few level-1 headings, one might want to use a chapter\nlevel of 2 or 3.\n"}},"documentation":"Specify the heading level at which to split the EPUB into separate\nchapter files.","$id":"quarto-resource-document-formatting-split-level"},"quarto-resource-document-funding-funding":{"_internalId":4199,"type":"anyOf","anyOf":[{"_internalId":4197,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4196,"type":"object","description":"be an object","properties":{"statement":{"type":"string","description":"be a string","tags":{"description":"Displayable prose statement that describes the funding for the research on which a work was based."},"documentation":"Displayable prose statement that describes the funding for the\nresearch on which a work was based."},"open-access":{"type":"string","description":"be a string","tags":{"description":"Open access provisions that apply to a work or the funding information that provided the open access provisions."},"documentation":"Open access provisions that apply to a work or the funding\ninformation that provided the open access provisions."},"awards":{"_internalId":4195,"type":"anyOf","anyOf":[{"_internalId":4193,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"Unique identifier assigned to an award, contract, or grant."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The name of this award"},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"The description for this award."},"source":{"_internalId":4134,"type":"anyOf","anyOf":[{"_internalId":4132,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4133,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4132,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"recipient":{"_internalId":4163,"type":"anyOf","anyOf":[{"_internalId":4161,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4145,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4150,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4160,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4159,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4157,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4162,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4161,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4145,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4150,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4160,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4159,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4157,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."},"investigator":{"_internalId":4192,"type":"anyOf","anyOf":[{"_internalId":4190,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4174,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4179,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4189,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4188,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4186,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4191,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4190,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4174,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4179,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4189,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4188,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4186,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{}},{"_internalId":4194,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":4193,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"Unique identifier assigned to an award, contract, or grant."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The name of this award"},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"The description for this award."},"source":{"_internalId":4134,"type":"anyOf","anyOf":[{"_internalId":4132,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4133,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4132,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"recipient":{"_internalId":4163,"type":"anyOf","anyOf":[{"_internalId":4161,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4145,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4150,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4160,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4159,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4157,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4162,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4161,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4145,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4150,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4160,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4159,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4157,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."},"investigator":{"_internalId":4192,"type":"anyOf","anyOf":[{"_internalId":4190,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4174,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4179,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4189,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4188,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4186,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4191,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4190,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4174,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4179,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4189,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4188,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4186,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4198,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4197,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4196,"type":"object","description":"be an object","properties":{"statement":{"type":"string","description":"be a string","tags":{"description":"Displayable prose statement that describes the funding for the research on which a work was based."},"documentation":"Displayable prose statement that describes the funding for the\nresearch on which a work was based."},"open-access":{"type":"string","description":"be a string","tags":{"description":"Open access provisions that apply to a work or the funding information that provided the open access provisions."},"documentation":"Open access provisions that apply to a work or the funding\ninformation that provided the open access provisions."},"awards":{"_internalId":4195,"type":"anyOf","anyOf":[{"_internalId":4193,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"Unique identifier assigned to an award, contract, or grant."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The name of this award"},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"The description for this award."},"source":{"_internalId":4134,"type":"anyOf","anyOf":[{"_internalId":4132,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4133,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4132,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"recipient":{"_internalId":4163,"type":"anyOf","anyOf":[{"_internalId":4161,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4145,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4150,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4160,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4159,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4157,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4162,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4161,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4145,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4150,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4160,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4159,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4157,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."},"investigator":{"_internalId":4192,"type":"anyOf","anyOf":[{"_internalId":4190,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4174,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4179,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4189,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4188,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4186,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4191,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4190,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4174,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4179,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4189,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4188,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4186,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{}},{"_internalId":4194,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":4193,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"Unique identifier assigned to an award, contract, or grant."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The name of this award"},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"The description for this award."},"source":{"_internalId":4134,"type":"anyOf","anyOf":[{"_internalId":4132,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4133,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4132,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4131,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The text describing the source of the funding."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"Abbreviation for country where source of grant is located."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"Agency or organization that funded the research on which a work was\nbased."},"recipient":{"_internalId":4163,"type":"anyOf","anyOf":[{"_internalId":4161,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4145,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4150,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4160,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4159,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4157,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4162,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4161,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4145,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4150,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"The name of an individual that was the recipient of the funding."}},"patternProperties":{},"closed":true},{"_internalId":4160,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4159,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4157,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"The institution that was the recipient of the funding."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."},"investigator":{"_internalId":4192,"type":"anyOf","anyOf":[{"_internalId":4190,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4174,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4179,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4189,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4188,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4186,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4191,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4190,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4174,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"The id of an author or affiliation in the document metadata."}},"patternProperties":{},"closed":true},{"_internalId":4179,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true},{"_internalId":4189,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4188,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4186,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"Individual(s) responsible for the intellectual content of the work\nreported in the document."}},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Information about the funding of the research reported in the article \n(for example, grants, contracts, sponsors) and any open access fees for the article itself\n"},"documentation":"Information about the funding of the research reported in the article\n(for example, grants, contracts, sponsors) and any open access fees for\nthe article itself","$id":"quarto-resource-document-funding-funding"},"quarto-resource-document-hidden-to":{"type":"string","description":"be a string","documentation":"Format to write to (e.g. html)","tags":{"description":{"short":"Format to write to (e.g. html)","long":"Format to write to. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. gfm+footnotes)\n"},"hidden":true},"$id":"quarto-resource-document-hidden-to"},"quarto-resource-document-hidden-writer":{"type":"string","description":"be a string","documentation":"Format to write to (e.g. html)","tags":{"description":{"short":"Format to write to (e.g. html)","long":"Format to write to. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. gfm+footnotes)\n"},"hidden":true},"$id":"quarto-resource-document-hidden-writer"},"quarto-resource-document-hidden-input-file":{"type":"string","description":"be a string","documentation":"Input file to read from","tags":{"description":"Input file to read from","hidden":true},"$id":"quarto-resource-document-hidden-input-file"},"quarto-resource-document-hidden-input-files":{"_internalId":4208,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Input files to read from","tags":{"description":"Input files to read from","hidden":true},"$id":"quarto-resource-document-hidden-input-files"},"quarto-resource-document-hidden-defaults":{"_internalId":4213,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Include options from the specified defaults files","tags":{"description":"Include options from the specified defaults files","hidden":true},"$id":"quarto-resource-document-hidden-defaults"},"quarto-resource-document-hidden-variables":{"_internalId":4214,"type":"object","description":"be an object","properties":{},"patternProperties":{},"documentation":"Pandoc metadata variables","tags":{"description":"Pandoc metadata variables","hidden":true},"$id":"quarto-resource-document-hidden-variables"},"quarto-resource-document-hidden-metadata":{"_internalId":4216,"type":"object","description":"be an object","properties":{},"patternProperties":{},"documentation":"Pandoc metadata variables","tags":{"description":"Pandoc metadata variables","hidden":true},"$id":"quarto-resource-document-hidden-metadata"},"quarto-resource-document-hidden-request-headers":{"_internalId":4220,"type":"ref","$ref":"pandoc-format-request-headers","description":"be pandoc-format-request-headers","documentation":"Headers to include with HTTP requests by Pandoc","tags":{"description":"Headers to include with HTTP requests by Pandoc","hidden":true},"$id":"quarto-resource-document-hidden-request-headers"},"quarto-resource-document-hidden-trace":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Display trace debug output.","tags":{"description":"Display trace debug output."},"$id":"quarto-resource-document-hidden-trace"},"quarto-resource-document-hidden-fail-if-warnings":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Exit with error status if there are any warnings.","tags":{"description":"Exit with error status if there are any warnings."},"$id":"quarto-resource-document-hidden-fail-if-warnings"},"quarto-resource-document-hidden-dump-args":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Print information about command-line arguments to stdout,\nthen exit.","tags":{"description":"Print information about command-line arguments to *stdout*, then exit.","hidden":true},"$id":"quarto-resource-document-hidden-dump-args"},"quarto-resource-document-hidden-ignore-args":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Ignore command-line arguments (for use in wrapper scripts).","tags":{"description":"Ignore command-line arguments (for use in wrapper scripts).","hidden":true},"$id":"quarto-resource-document-hidden-ignore-args"},"quarto-resource-document-hidden-file-scope":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Parse each file individually before combining for multifile\ndocuments.","tags":{"description":"Parse each file individually before combining for multifile documents.","hidden":true},"$id":"quarto-resource-document-hidden-file-scope"},"quarto-resource-document-hidden-data-dir":{"type":"string","description":"be a string","documentation":"Specify the user data directory to search for pandoc data files.","tags":{"description":"Specify the user data directory to search for pandoc data files.","hidden":true},"$id":"quarto-resource-document-hidden-data-dir"},"quarto-resource-document-hidden-verbosity":{"_internalId":4235,"type":"enum","enum":["ERROR","WARNING","INFO"],"description":"be one of: `ERROR`, `WARNING`, `INFO`","completions":["ERROR","WARNING","INFO"],"exhaustiveCompletions":true,"documentation":"Level of program output (INFO, ERROR, or\nWARNING)","tags":{"description":"Level of program output (`INFO`, `ERROR`, or `WARNING`)","hidden":true},"$id":"quarto-resource-document-hidden-verbosity"},"quarto-resource-document-hidden-log-file":{"type":"string","description":"be a string","documentation":"Write log messages in machine-readable JSON format to FILE.","tags":{"description":"Write log messages in machine-readable JSON format to FILE.","hidden":true},"$id":"quarto-resource-document-hidden-log-file"},"quarto-resource-document-hidden-track-changes":{"_internalId":4240,"type":"enum","enum":["accept","reject","all"],"description":"be one of: `accept`, `reject`, `all`","completions":["accept","reject","all"],"exhaustiveCompletions":true,"tags":{"formats":["docx"],"description":{"short":"Specify what to do with insertions, deletions, and comments produced by \nthe MS Word “Track Changes” feature.\n","long":"Specify what to do with insertions, deletions, and comments\nproduced by the MS Word \"Track Changes\" feature. \n\n- `accept` (default): Process all insertions and deletions.\n- `reject`: Ignore them.\n- `all`: Include all insertions, deletions, and comments, wrapped\n in spans with `insertion`, `deletion`, `comment-start`, and\n `comment-end` classes, respectively. The author and time of\n change is included. \n\nNotes:\n\n- Both `accept` and `reject` ignore comments.\n\n- `all` is useful for scripting: only\n accepting changes from a certain reviewer, say, or before a\n certain date. If a paragraph is inserted or deleted,\n `track-changes: all` produces a span with the class\n `paragraph-insertion`/`paragraph-deletion` before the\n affected paragraph break. \n\n- This option only affects the docx reader.\n"},"hidden":true},"documentation":"Specify what to do with insertions, deletions, and comments produced\nby the MS Word “Track Changes” feature.","$id":"quarto-resource-document-hidden-track-changes"},"quarto-resource-document-hidden-keep-source":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Embed the input file source code in the generated HTML","long":"Embed the input file source code in the generated HTML. A hidden div with \nclass `quarto-embedded-source-code` will be added to the document. This\noption is not normally used directly but rather in the implementation\nof the `code-tools` option.\n"},"hidden":true},"documentation":"Embed the input file source code in the generated HTML","$id":"quarto-resource-document-hidden-keep-source"},"quarto-resource-document-hidden-keep-hidden":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Keep hidden source code and output (marked with class `.hidden`)","hidden":true},"documentation":"Keep hidden source code and output (marked with class\n.hidden)","$id":"quarto-resource-document-hidden-keep-hidden"},"quarto-resource-document-hidden-prefer-html":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all"],"description":{"short":"Generate HTML output (if necessary) even when targeting markdown.","long":"Generate HTML output (if necessary) even when targeting markdown. Enables the \nembedding of more sophisticated output (e.g. Jupyter widgets) in markdown.\n"},"hidden":true},"documentation":"Generate HTML output (if necessary) even when targeting markdown.","$id":"quarto-resource-document-hidden-prefer-html"},"quarto-resource-document-hidden-output-divs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Indicates that computational output should not be written within\ndivs. This is necessary for some formats (e.g. pptx) to\nproperly layout figures.","tags":{"description":"Indicates that computational output should not be written within divs. \nThis is necessary for some formats (e.g. `pptx`) to properly layout\nfigures.\n","hidden":true},"$id":"quarto-resource-document-hidden-output-divs"},"quarto-resource-document-hidden-merge-includes":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Disable merging of string based and file based includes (some\nformats, specifically ePub, do not correctly handle this merging)","tags":{"description":"Disable merging of string based and file based includes (some formats, \nspecifically ePub, do not correctly handle this merging)\n","hidden":true},"$id":"quarto-resource-document-hidden-merge-includes"},"quarto-resource-document-includes-header-includes":{"_internalId":4256,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4255,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Content to include at the end of the document header.","hidden":true},"documentation":"Content to include at the end of the document header.","$id":"quarto-resource-document-includes-header-includes"},"quarto-resource-document-includes-include-before":{"_internalId":4262,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4261,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Content to include at the beginning of the document body (e.g. after the `` tag in HTML, or the `\\begin{document}` command in LaTeX).","hidden":true},"documentation":"Content to include at the beginning of the document body (e.g. after\nthe <body> tag in HTML, or the\n\\begin{document} command in LaTeX).","$id":"quarto-resource-document-includes-include-before"},"quarto-resource-document-includes-include-after":{"_internalId":4268,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4267,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Content to include at the end of the document body (before the `` tag in HTML, or the `\\end{document}` command in LaTeX).","hidden":true},"documentation":"Content to include at the end of the document body (before the\n</body> tag in HTML, or the\n\\end{document} command in LaTeX).","$id":"quarto-resource-document-includes-include-after"},"quarto-resource-document-includes-include-before-body":{"_internalId":4280,"type":"anyOf","anyOf":[{"_internalId":4278,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4277,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4279,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4278,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4277,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"}}],"description":"be at least one of: at least one of: a string, smart-include, an array of values, where each element must be at least one of: a string, smart-include","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Include contents at the beginning of the document body\n(e.g. after the `` tag in HTML, or the `\\begin{document}` command\nin LaTeX).\n\nA string value or an object with key \"file\" indicates a filename whose contents are to be included\n\nAn object with key \"text\" indicates textual content to be included\n"},"documentation":"Include contents at the beginning of the document body (e.g. after\nthe <body> tag in HTML, or the\n\\begin{document} command in LaTeX).\nA string value or an object with key “file” indicates a filename\nwhose contents are to be included\nAn object with key “text” indicates textual content to be\nincluded","$id":"quarto-resource-document-includes-include-before-body"},"quarto-resource-document-includes-include-after-body":{"_internalId":4292,"type":"anyOf","anyOf":[{"_internalId":4290,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4289,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4291,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4290,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4289,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"}}],"description":"be at least one of: at least one of: a string, smart-include, an array of values, where each element must be at least one of: a string, smart-include","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Include content at the end of the document body immediately after the markdown content. While it will be included before the closing `` tag in HTML and the `\\end{document}` command in LaTeX, this option refers to the end of the markdown content.\n\nA string value or an object with key \"file\" indicates a filename whose contents are to be included\n\nAn object with key \"text\" indicates textual content to be included\n"},"documentation":"Include content at the end of the document body immediately after the\nmarkdown content. While it will be included before the closing\n</body> tag in HTML and the\n\\end{document} command in LaTeX, this option refers to the\nend of the markdown content.\nA string value or an object with key “file” indicates a filename\nwhose contents are to be included\nAn object with key “text” indicates textual content to be\nincluded","$id":"quarto-resource-document-includes-include-after-body"},"quarto-resource-document-includes-include-in-header":{"_internalId":4304,"type":"anyOf","anyOf":[{"_internalId":4302,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4301,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4303,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4302,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4301,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"}}],"description":"be at least one of: at least one of: a string, smart-include, an array of values, where each element must be at least one of: a string, smart-include","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Include contents at the end of the header. This can\nbe used, for example, to include special CSS or JavaScript in HTML\ndocuments.\n\nA string value or an object with key \"file\" indicates a filename whose contents are to be included\n\nAn object with key \"text\" indicates textual content to be included\n"},"documentation":"Include contents at the end of the header. This can be used, for\nexample, to include special CSS or JavaScript in HTML documents.\nA string value or an object with key “file” indicates a filename\nwhose contents are to be included\nAn object with key “text” indicates textual content to be\nincluded","$id":"quarto-resource-document-includes-include-in-header"},"quarto-resource-document-includes-resources":{"_internalId":4310,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4309,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":"Path (or glob) to files to publish with this document."},"documentation":"Path (or glob) to files to publish with this document.","$id":"quarto-resource-document-includes-resources"},"quarto-resource-document-includes-headertext":{"_internalId":4316,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4315,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Text to be in a running header.","long":"Text to be in a running header.\n\nProvide a single option or up to four options for different placements\n(odd page inner, odd page outer, even page innner, even page outer).\n"}},"documentation":"Text to be in a running header.","$id":"quarto-resource-document-includes-headertext"},"quarto-resource-document-includes-footertext":{"_internalId":4322,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4321,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Text to be in a running footer.","long":"Text to be in a running footer.\n\nProvide a single option or up to four options for different placements\n(odd page inner, odd page outer, even page innner, even page outer).\n\nSee [ConTeXt Headers and Footers](https://wiki.contextgarden.net/Headers_and_Footers) for more information.\n"}},"documentation":"Text to be in a running footer.","$id":"quarto-resource-document-includes-footertext"},"quarto-resource-document-includes-includesource":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["context"],"description":"Whether to include all source documents as file attachments in the PDF file."},"documentation":"Whether to include all source documents as file attachments in the\nPDF file.","$id":"quarto-resource-document-includes-includesource"},"quarto-resource-document-includes-footer":{"type":"string","description":"be a string","tags":{"formats":["man"],"description":"The footer for man pages."},"documentation":"The footer for man pages.","$id":"quarto-resource-document-includes-footer"},"quarto-resource-document-includes-header":{"type":"string","description":"be a string","tags":{"formats":["man"],"description":"The header for man pages."},"documentation":"The header for man pages.","$id":"quarto-resource-document-includes-header"},"quarto-resource-document-includes-metadata-file":{"type":"string","description":"be a string","documentation":"Include file with YAML metadata","tags":{"description":{"short":"Include file with YAML metadata","long":"Read metadata from the supplied YAML (or JSON) file. This\noption can be used with every input format, but string scalars\nin the YAML file will always be parsed as Markdown. Generally,\nthe input will be handled the same as in YAML metadata blocks.\nMetadata values specified inside the document, or by using `-M`,\noverwrite values specified with this option.\n"},"hidden":true},"$id":"quarto-resource-document-includes-metadata-file"},"quarto-resource-document-includes-metadata-files":{"_internalId":4335,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Include files with YAML metadata","tags":{"description":{"short":"Include files with YAML metadata","long":"Read metadata from the supplied YAML (or JSON) files. This\noption can be used with every input format, but string scalars\nin the YAML file will always be parsed as Markdown. Generally,\nthe input will be handled the same as in YAML metadata blocks.\nValues in files specified later in the list will be preferred\nover those specified earlier. Metadata values specified inside\nthe document, or by using `-M`, overwrite values specified with\nthis option.\n"}},"$id":"quarto-resource-document-includes-metadata-files"},"quarto-resource-document-language-lang":{"type":"string","description":"be a string","documentation":"Identifies the main language of the document (e.g. en or\nen-GB).","tags":{"description":{"short":"Identifies the main language of the document (e.g. `en` or `en-GB`).","long":"Identifies the main language of the document using IETF language tags \n(following the [BCP 47](https://www.rfc-editor.org/info/bcp47) standard), \nsuch as `en` or `en-GB`. The [Language subtag lookup](https://r12a.github.io/app-subtags/) \ntool can look up or verify these tags. \n\nThis affects most formats, and controls hyphenation \nin PDF output when using LaTeX (through [`babel`](https://ctan.org/pkg/babel) \nand [`polyglossia`](https://ctan.org/pkg/polyglossia)) or ConTeXt.\n"}},"$id":"quarto-resource-document-language-lang"},"quarto-resource-document-language-language":{"_internalId":4344,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4342,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","documentation":"YAML file containing custom language translations","tags":{"description":"YAML file containing custom language translations"},"$id":"quarto-resource-document-language-language"},"quarto-resource-document-language-shorthands":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":{"short":"Enable babel language-specific shorthands in LaTeX output.","long":"Enable babel language-specific shorthands in LaTeX output. When `true`,\nbabel's language shortcuts are enabled (e.g., French `<<`/`>>` for guillemets,\nGerman `\"` shortcuts, proper spacing around French punctuation).\n\nDefault is `false` because language shorthands can interfere with code blocks\nand other content. Only enable if you need specific typographic features\nfor your language.\n"}},"documentation":"Enable babel language-specific shorthands in LaTeX output.","$id":"quarto-resource-document-language-shorthands"},"quarto-resource-document-language-dir":{"_internalId":4349,"type":"enum","enum":["rtl","ltr"],"description":"be one of: `rtl`, `ltr`","completions":["rtl","ltr"],"exhaustiveCompletions":true,"documentation":"The base script direction for the document (rtl or\nltr).","tags":{"description":{"short":"The base script direction for the document (`rtl` or `ltr`).","long":"The base script direction for the document (`rtl` or `ltr`).\n\nFor bidirectional documents, native pandoc `span`s and\n`div`s with the `dir` attribute can\nbe used to override the base direction in some output\nformats. This may not always be necessary if the final\nrenderer (e.g. the browser, when generating HTML) supports\nthe [Unicode Bidirectional Algorithm].\n\nWhen using LaTeX for bidirectional documents, only the\n`xelatex` engine is fully supported (use\n`--pdf-engine=xelatex`).\n"}},"$id":"quarto-resource-document-language-dir"},"quarto-resource-document-latexmk-latex-auto-mk":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":{"short":"Use Quarto's built-in PDF rendering wrapper","long":"Use Quarto's built-in PDF rendering wrapper (includes support \nfor automatically installing missing LaTeX packages)\n"}},"documentation":"Use Quarto’s built-in PDF rendering wrapper","$id":"quarto-resource-document-latexmk-latex-auto-mk"},"quarto-resource-document-latexmk-latex-auto-install":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Enable/disable automatic LaTeX package installation"},"documentation":"Enable/disable automatic LaTeX package installation","$id":"quarto-resource-document-latexmk-latex-auto-install"},"quarto-resource-document-latexmk-latex-min-runs":{"type":"number","description":"be a number","tags":{"formats":["pdf","beamer"],"description":"Minimum number of compilation passes."},"documentation":"Minimum number of compilation passes.","$id":"quarto-resource-document-latexmk-latex-min-runs"},"quarto-resource-document-latexmk-latex-max-runs":{"type":"number","description":"be a number","tags":{"formats":["pdf","beamer"],"description":"Maximum number of compilation passes."},"documentation":"Maximum number of compilation passes.","$id":"quarto-resource-document-latexmk-latex-max-runs"},"quarto-resource-document-latexmk-latex-clean":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Clean intermediates after compilation."},"documentation":"Clean intermediates after compilation.","$id":"quarto-resource-document-latexmk-latex-clean"},"quarto-resource-document-latexmk-latex-makeindex":{"type":"string","description":"be a string","tags":{"formats":["pdf","beamer"],"description":"Program to use for `makeindex`."},"documentation":"Program to use for makeindex.","$id":"quarto-resource-document-latexmk-latex-makeindex"},"quarto-resource-document-latexmk-latex-makeindex-opts":{"_internalId":4366,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["pdf","beamer"],"description":"Array of command line options for `makeindex`."},"documentation":"Array of command line options for makeindex.","$id":"quarto-resource-document-latexmk-latex-makeindex-opts"},"quarto-resource-document-latexmk-latex-tlmgr-opts":{"_internalId":4371,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["pdf","beamer"],"description":"Array of command line options for `tlmgr`."},"documentation":"Array of command line options for tlmgr.","$id":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"quarto-resource-document-latexmk-latex-output-dir":{"type":"string","description":"be a string","tags":{"formats":["pdf","beamer"],"description":"Output directory for intermediates and PDF."},"documentation":"Output directory for intermediates and PDF.","$id":"quarto-resource-document-latexmk-latex-output-dir"},"quarto-resource-document-latexmk-latex-tinytex":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Set to `false` to prevent an installation of TinyTex from being used to compile PDF documents."},"documentation":"Set to false to prevent an installation of TinyTex from\nbeing used to compile PDF documents.","$id":"quarto-resource-document-latexmk-latex-tinytex"},"quarto-resource-document-latexmk-latex-input-paths":{"_internalId":4380,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["pdf","beamer"],"description":"Array of paths LaTeX should search for inputs."},"documentation":"Array of paths LaTeX should search for inputs.","$id":"quarto-resource-document-latexmk-latex-input-paths"},"quarto-resource-document-layout-documentclass":{"type":"string","description":"be a string","completions":["scrartcl","scrbook","scrreprt","scrlttr2","article","book","report","memoir"],"tags":{"formats":["$pdf-all"],"description":"The document class."},"documentation":"The document class.","$id":"quarto-resource-document-layout-documentclass"},"quarto-resource-document-layout-classoption":{"_internalId":4388,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4387,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-files","$pdf-all"],"description":{"short":"Options for the document class,","long":"For LaTeX/PDF output, the options set for the document\nclass.\n\nFor HTML output using KaTeX, you can render display\nmath equations flush left using `classoption: fleqn`\n"}},"documentation":"Options for the document class,","$id":"quarto-resource-document-layout-classoption"},"quarto-resource-document-layout-pagestyle":{"type":"string","description":"be a string","completions":["plain","empty","headings"],"tags":{"formats":["$pdf-all"],"description":"Control the `\\pagestyle{}` for the document."},"documentation":"Control the \\pagestyle{} for the document.","$id":"quarto-resource-document-layout-pagestyle"},"quarto-resource-document-layout-papersize":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","typst"],"description":"The paper size for the document.\n"},"documentation":"The paper size for the document.","$id":"quarto-resource-document-layout-papersize"},"quarto-resource-document-layout-brand-mode":{"_internalId":4395,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"formats":["typst","revealjs"],"description":"The brand mode to use for rendering the document, `light` or `dark`.\n"},"documentation":"The brand mode to use for rendering the document, light\nor dark.","$id":"quarto-resource-document-layout-brand-mode"},"quarto-resource-document-layout-layout":{"_internalId":4401,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4400,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"The options for margins and text layout for this document.","long":"The options for margins and text layout for this document.\n\nSee [ConTeXt Layout](https://wiki.contextgarden.net/Layout) for additional information.\n"}},"documentation":"The options for margins and text layout for this document.","$id":"quarto-resource-document-layout-layout"},"quarto-resource-document-layout-page-layout":{"_internalId":4404,"type":"enum","enum":["article","full","custom"],"description":"be one of: `article`, `full`, `custom`","completions":["article","full","custom"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"The page layout to use for this document (`article`, `full`, or `custom`)"},"documentation":"The page layout to use for this document (article,\nfull, or custom)","$id":"quarto-resource-document-layout-page-layout"},"quarto-resource-document-layout-page-width":{"type":"number","description":"be a number","tags":{"formats":["docx","$odt-all"],"description":{"short":"Target page width for output (used to compute columns widths for `layout` divs)\n","long":"Target body page width for output (used to compute columns widths for `layout` divs).\nDefaults to 6.5 inches, which corresponds to default letter page settings in \ndocx and odt (8.5 inches with 1 inch for each margins).\n"}},"documentation":"Target page width for output (used to compute columns widths for\nlayout divs)","$id":"quarto-resource-document-layout-page-width"},"quarto-resource-document-layout-grid":{"_internalId":4420,"type":"object","description":"be an object","properties":{"content-mode":{"_internalId":4411,"type":"enum","enum":["auto","standard","full","slim"],"description":"be one of: `auto`, `standard`, `full`, `slim`","completions":["auto","standard","full","slim"],"exhaustiveCompletions":true,"tags":{"description":"Defines whether to use the standard, slim, or full content grid or to automatically select the most appropriate content grid."},"documentation":"Defines whether to use the standard, slim, or full content grid or to\nautomatically select the most appropriate content grid."},"sidebar-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the sidebar (left) column in an HTML page."},"documentation":"The base width of the sidebar (left) column in an HTML page."},"margin-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the margin (right) column. For Typst, this controls the width of the margin note column."},"documentation":"The base width of the margin (right) column. For Typst, this controls\nthe width of the margin note column."},"body-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the body (center) column. For Typst, this is computed as the remainder after other columns."},"documentation":"The base width of the body (center) column. For Typst, this is\ncomputed as the remainder after other columns."},"gutter-width":{"type":"string","description":"be a string","tags":{"description":"The width of the gutter that appears between columns. For Typst, this is the gap between the text column and margin notes."},"documentation":"The width of the gutter that appears between columns. For Typst, this\nis the gap between the text column and margin notes."}},"patternProperties":{},"closed":true,"tags":{"formats":["$html-doc","typst"],"description":{"short":"Properties of the grid system used to layout Quarto HTML and Typst pages."}},"documentation":"Properties of the grid system used to layout Quarto HTML and Typst\npages.","$id":"quarto-resource-document-layout-grid"},"quarto-resource-document-layout-appendix-style":{"_internalId":4426,"type":"anyOf","anyOf":[{"_internalId":4425,"type":"enum","enum":["default","plain","none"],"description":"be one of: `default`, `plain`, `none`","completions":["default","plain","none"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `default`, `plain`, `none`","tags":{"formats":["$html-doc"],"description":{"short":"The layout of the appendix for this document (`none`, `plain`, or `default`)","long":"The layout of the appendix for this document (`none`, `plain`, or `default`).\n\nTo completely disable any styling of the appendix, choose the appendix style `none`. For minimal styling, choose `plain.`\n"}},"documentation":"The layout of the appendix for this document (none,\nplain, or default)","$id":"quarto-resource-document-layout-appendix-style"},"quarto-resource-document-layout-appendix-cite-as":{"_internalId":4438,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4437,"type":"anyOf","anyOf":[{"_internalId":4435,"type":"enum","enum":["display","bibtex"],"description":"be one of: `display`, `bibtex`","completions":["display","bibtex"],"exhaustiveCompletions":true},{"_internalId":4436,"type":"array","description":"be an array of values, where each element must be one of: `display`, `bibtex`","items":{"_internalId":4435,"type":"enum","enum":["display","bibtex"],"description":"be one of: `display`, `bibtex`","completions":["display","bibtex"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `display`, `bibtex`, an array of values, where each element must be one of: `display`, `bibtex`","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: one of: `display`, `bibtex`, an array of values, where each element must be one of: `display`, `bibtex`","tags":{"formats":["$html-doc"],"description":{"short":"Controls the formats which are provided in the citation section of the appendix (`false`, `display`, or `bibtex`).","long":"Controls the formats which are provided in the citation section of the appendix.\n\nUse `false` to disable the display of the 'cite as' appendix. Pass one or more of `display` or `bibtex` to enable that\nformat in 'cite as' appendix.\n"}},"documentation":"Controls the formats which are provided in the citation section of\nthe appendix (false, display, or\nbibtex).","$id":"quarto-resource-document-layout-appendix-cite-as"},"quarto-resource-document-layout-title-block-style":{"_internalId":4444,"type":"anyOf","anyOf":[{"_internalId":4443,"type":"enum","enum":["default","plain","manuscript","none"],"description":"be one of: `default`, `plain`, `manuscript`, `none`","completions":["default","plain","manuscript","none"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `default`, `plain`, `manuscript`, `none`","tags":{"formats":["$html-doc"],"description":{"short":"The layout of the title block for this document (`none`, `plain`, or `default`).","long":"The layout of the title block for this document (`none`, `plain`, or `default`).\n\nTo completely disable any styling of the title block, choose the style `none`. For minimal styling, choose `plain.`\n"}},"documentation":"The layout of the title block for this document (none,\nplain, or default).","$id":"quarto-resource-document-layout-title-block-style"},"quarto-resource-document-layout-title-block-banner":{"_internalId":4451,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc"],"description":{"short":"Apply a banner style treatment to the title block.","long":"Applies a banner style treatment for the title block. You may specify one of the following values:\n\n`true`\n: Will enable the banner style display and automatically select a background color based upon the theme.\n\n``\n: If you provide a CSS color value, the banner will be enabled and the background color set to the provided CSS color.\n\n``\n: If you provide the path to a file, the banner will be enabled and the background image will be set to the file path.\n\nSee `title-block-banner-color` if you'd like to control the color of the title block banner text.\n"}},"documentation":"Apply a banner style treatment to the title block.","$id":"quarto-resource-document-layout-title-block-banner"},"quarto-resource-document-layout-title-block-banner-color":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":{"short":"Sets the color of text elements in a banner style title block.","long":"Sets the color of text elements in a banner style title block. Use one of the following values:\n\n`body` | `body-bg`\n: Will set the text color to the body text color or body background color, respectively.\n\n``\n: If you provide a CSS color value, the text color will be set to the provided CSS color.\n"}},"documentation":"Sets the color of text elements in a banner style title block.","$id":"quarto-resource-document-layout-title-block-banner-color"},"quarto-resource-document-layout-title-block-categories":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Enables or disables the display of categories in the title block."}},"documentation":"Enables or disables the display of categories in the title block.","$id":"quarto-resource-document-layout-title-block-categories"},"quarto-resource-document-layout-max-width":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Adds a css `max-width` to the body Element."},"documentation":"Adds a css max-width to the body Element.","$id":"quarto-resource-document-layout-max-width"},"quarto-resource-document-layout-margin-left":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the left margin of the document.","long":"For HTML output, sets the `margin-left` property on the Body element.\n\nFor LaTeX output, sets the left margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the left margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the left page margin.\n"}},"documentation":"Sets the left margin of the document.","$id":"quarto-resource-document-layout-margin-left"},"quarto-resource-document-layout-margin-right":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the right margin of the document.","long":"For HTML output, sets the `margin-right` property on the Body element.\n\nFor LaTeX output, sets the right margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the right margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the right page margin.\n"}},"documentation":"Sets the right margin of the document.","$id":"quarto-resource-document-layout-margin-right"},"quarto-resource-document-layout-margin-top":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the top margin of the document.","long":"For HTML output, sets the `margin-top` property on the Body element.\n\nFor LaTeX output, sets the top margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the top margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the top page margin.\n"}},"documentation":"Sets the top margin of the document.","$id":"quarto-resource-document-layout-margin-top"},"quarto-resource-document-layout-margin-bottom":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the bottom margin of the document.","long":"For HTML output, sets the `margin-bottom` property on the Body element.\n\nFor LaTeX output, sets the bottom margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the bottom margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the bottom page margin.\n"}},"documentation":"Sets the bottom margin of the document.","$id":"quarto-resource-document-layout-margin-bottom"},"quarto-resource-document-layout-margin":{"_internalId":4485,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":4484,"type":"object","description":"be an object","properties":{"x":{"type":"string","description":"be a string","tags":{"description":"Horizontal margin (e.g. 1.5in)"},"documentation":"Horizontal margin (e.g. 1.5in)"},"y":{"type":"string","description":"be a string","tags":{"description":"Vertical margin (e.g. 1.5in)"},"documentation":"Vertical margin (e.g. 1.5in)"},"top":{"type":"string","description":"be a string","tags":{"description":"Top margin (e.g. 1.5in)"},"documentation":"Top margin (e.g. 1.5in)"},"bottom":{"type":"string","description":"be a string","tags":{"description":"Bottom margin (e.g. 1.5in)"},"documentation":"Bottom margin (e.g. 1.5in)"},"left":{"type":"string","description":"be a string","tags":{"description":"Left margin (e.g. 1.5in)"},"documentation":"Left margin (e.g. 1.5in)"},"right":{"type":"string","description":"be a string","tags":{"description":"Right margin (e.g. 1.5in)"},"documentation":"Right margin (e.g. 1.5in)"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a number, an object","tags":{"formats":["revealjs","typst"],"description":{"short":"Margin settings for Reveal.js or Typst output.","long":"For `revealjs`, the factor of the display size that should remain empty around the content (e.g. 0.1).\n\nFor `typst`, a dictionary specifying page margins. Use `x` and `y` for symmetric\nhorizontal/vertical margins, or `top`, `bottom`, `left`, `right` for\nindividual sides. Values should include units (e.g. `1.5in`, `2cm`).\n"}},"documentation":"Margin settings for Reveal.js or Typst output.","$id":"quarto-resource-document-layout-margin"},"quarto-resource-document-layout-geometry":{"_internalId":4491,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4490,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Options for the geometry package.","long":"Options for the [geometry](https://ctan.org/pkg/geometry) package. For example:\n\n```yaml\ngeometry:\n - top=30mm\n - left=20mm\n - heightrounded\n```\n"}},"documentation":"Options for the geometry package.","$id":"quarto-resource-document-layout-geometry"},"quarto-resource-document-layout-hyperrefoptions":{"_internalId":4497,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4496,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Additional non-color options for the hyperref package.","long":"Options for the [hyperref](https://ctan.org/pkg/hyperref) package. For example:\n\n```yaml\nhyperrefoptions:\n - linktoc=all\n - pdfwindowui\n - pdfpagemode=FullScreen \n```\n\nTo customize link colors, please see the [Quarto PDF reference](https://quarto.org/docs/reference/formats/pdf.html#colors).\n"}},"documentation":"Additional non-color options for the hyperref package.","$id":"quarto-resource-document-layout-hyperrefoptions"},"quarto-resource-document-layout-indent":{"_internalId":4504,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["$pdf-all","ms"],"description":{"short":"Whether to use document class settings for indentation.","long":"Whether to use document class settings for indentation. If the document \nclass settings are not used, the default LaTeX template removes indentation \nand adds space between paragraphs\n\nFor groff (`ms`) documents, the paragraph indent, for example, `2m`.\n"}},"documentation":"Whether to use document class settings for indentation.","$id":"quarto-resource-document-layout-indent"},"quarto-resource-document-layout-block-headings":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":{"short":"Make `\\paragraph` and `\\subparagraph` free-standing rather than run-in.","long":"Make `\\paragraph` and `\\subparagraph` (fourth- and\nfifth-level headings, or fifth- and sixth-level with book\nclasses) free-standing rather than run-in; requires further\nformatting to distinguish from `\\subsubsection` (third- or\nfourth-level headings). Instead of using this option,\n[KOMA-Script](https://ctan.org/pkg/koma-script) can adjust headings \nmore extensively:\n\n```yaml\nheader-includes: |\n \\RedeclareSectionCommand[\n beforeskip=-10pt plus -2pt minus -1pt,\n afterskip=1sp plus -1sp minus 1sp,\n font=\\normalfont\\itshape]{paragraph}\n \\RedeclareSectionCommand[\n beforeskip=-10pt plus -2pt minus -1pt,\n afterskip=1sp plus -1sp minus 1sp,\n font=\\normalfont\\scshape,\n indent=0pt]{subparagraph}\n```\n"}},"documentation":"Make \\paragraph and \\subparagraph\nfree-standing rather than run-in.","$id":"quarto-resource-document-layout-block-headings"},"quarto-resource-document-library-revealjs-url":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Directory containing reveal.js files."},"documentation":"Directory containing reveal.js files.","$id":"quarto-resource-document-library-revealjs-url"},"quarto-resource-document-library-s5-url":{"type":"string","description":"be a string","tags":{"formats":["s5"],"description":"The base url for s5 presentations."},"documentation":"The base url for s5 presentations.","$id":"quarto-resource-document-library-s5-url"},"quarto-resource-document-library-slidy-url":{"type":"string","description":"be a string","tags":{"formats":["slidy"],"description":"The base url for Slidy presentations."},"documentation":"The base url for Slidy presentations.","$id":"quarto-resource-document-library-slidy-url"},"quarto-resource-document-library-slideous-url":{"type":"string","description":"be a string","tags":{"formats":["slideous"],"description":"The base url for Slideous presentations."},"documentation":"The base url for Slideous presentations.","$id":"quarto-resource-document-library-slideous-url"},"quarto-resource-document-lightbox-lightbox":{"_internalId":4544,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4521,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"_internalId":4543,"type":"object","description":"be an object","properties":{"match":{"_internalId":4528,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Set this to `auto` if you'd like any image to be given lightbox treatment.","long":"Set this to `auto` if you'd like any image to be given lightbox treatment. If you omit this, only images with the class `lightbox` will be given the lightbox treatment.\n"}},"documentation":"Set this to auto if you’d like any image to be given\nlightbox treatment."},"effect":{"_internalId":4533,"type":"enum","enum":["fade","zoom","none"],"description":"be one of: `fade`, `zoom`, `none`","completions":["fade","zoom","none"],"exhaustiveCompletions":true,"tags":{"description":"The effect that should be used when opening and closing the lightbox. One of `fade`, `zoom`, `none`. Defaults to `zoom`."},"documentation":"The effect that should be used when opening and closing the lightbox.\nOne of fade, zoom, none. Defaults\nto zoom."},"desc-position":{"_internalId":4538,"type":"enum","enum":["top","bottom","left","right"],"description":"be one of: `top`, `bottom`, `left`, `right`","completions":["top","bottom","left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the title and description when displaying a lightbox. One of `top`, `bottom`, `left`, `right`. Defaults to `bottom`."},"documentation":"The position of the title and description when displaying a lightbox.\nOne of top, bottom, left,\nright. Defaults to bottom."},"loop":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether galleries should 'loop' to first image in the gallery if the user continues past the last image of the gallery. Boolean that defaults to `true`."},"documentation":"Whether galleries should ‘loop’ to first image in the gallery if the\nuser continues past the last image of the gallery. Boolean that defaults\nto true."},"css-class":{"type":"string","description":"be a string","tags":{"description":"A class name to apply to the lightbox to allow css targeting. This will replace the lightbox class with your custom class name."},"documentation":"A class name to apply to the lightbox to allow css targeting. This\nwill replace the lightbox class with your custom class name."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, 'auto', an object","tags":{"formats":["$html-doc"],"description":"Enable or disable lightbox treatment for images in this document. See [Lightbox Figures](https://quarto.org/docs/output-formats/html-lightbox-figures.html) for more details."},"documentation":"Enable or disable lightbox treatment for images in this document. See\nLightbox\nFigures for more details.","$id":"quarto-resource-document-lightbox-lightbox"},"quarto-resource-document-links-link-external-icon":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc","revealjs"],"description":"Show a special icon next to links that leave the current site."},"documentation":"Show a special icon next to links that leave the current site.","$id":"quarto-resource-document-links-link-external-icon"},"quarto-resource-document-links-link-external-newwindow":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc","revealjs"],"description":"Open external links in a new browser window or tab (rather than navigating the current tab)."},"documentation":"Open external links in a new browser window or tab (rather than\nnavigating the current tab).","$id":"quarto-resource-document-links-link-external-newwindow"},"quarto-resource-document-links-link-external-filter":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","revealjs"],"description":{"short":"A regular expression that can be used to determine whether a link is an internal link.","long":"A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with `http://www.quarto.org/custom` or `https://www.quarto.org/custom`\nas internal links (and others will be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n"}},"documentation":"A regular expression that can be used to determine whether a link is\nan internal link.","$id":"quarto-resource-document-links-link-external-filter"},"quarto-resource-document-links-format-links":{"_internalId":4582,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4581,"type":"anyOf","anyOf":[{"_internalId":4579,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4569,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The title for the link."},"documentation":"The title for the link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The href for the link."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for the link."},"documentation":"The icon for the link."}},"patternProperties":{},"required":["text","href"]},{"_internalId":4578,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string","tags":{"description":"The format that this link represents."},"documentation":"The format that this link represents."},"text":{"type":"string","description":"be a string","tags":{"description":"The title for this link."},"documentation":"The title for this link."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for this link."},"documentation":"The icon for this link."}},"patternProperties":{},"required":["text","format"]}],"description":"be at least one of: a string, an object, an object"},{"_internalId":4580,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object","items":{"_internalId":4579,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4569,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The title for the link."},"documentation":"The title for the link."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The href for the link."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for the link."},"documentation":"The icon for the link."}},"patternProperties":{},"required":["text","href"]},{"_internalId":4578,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string","tags":{"description":"The format that this link represents."},"documentation":"The format that this link represents."},"text":{"type":"string","description":"be a string","tags":{"description":"The title for this link."},"documentation":"The title for this link."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for this link."},"documentation":"The icon for this link."}},"patternProperties":{},"required":["text","format"]}],"description":"be at least one of: a string, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: a string, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object","tags":{"formats":["$html-doc"],"description":{"short":"Controls whether links to other rendered formats are displayed in HTML output.","long":"Controls whether links to other rendered formats are displayed in HTML output.\n\nPass `false` to disable the display of format lengths or pass a list of format names for which you'd\nlike links to be shown.\n"}},"documentation":"Controls whether links to other rendered formats are displayed in\nHTML output.","$id":"quarto-resource-document-links-format-links"},"quarto-resource-document-links-notebook-links":{"_internalId":4590,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4589,"type":"enum","enum":["inline","global"],"description":"be one of: `inline`, `global`","completions":["inline","global"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `inline`, `global`","tags":{"formats":["$html-doc"],"description":{"short":"Controls the display of links to notebooks that provided embedded content or are created from documents.","long":"Controls the display of links to notebooks that provided embedded content or are created from documents.\n\nSpecify `false` to disable linking to source Notebooks. Specify `inline` to show links to source notebooks beneath the content they provide. \nSpecify `global` to show a set of global links to source notebooks.\n"}},"documentation":"Controls the display of links to notebooks that provided embedded\ncontent or are created from documents.","$id":"quarto-resource-document-links-notebook-links"},"quarto-resource-document-links-other-links":{"_internalId":4599,"type":"anyOf","anyOf":[{"_internalId":4595,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":4598,"type":"ref","$ref":"other-links","description":"be other-links"}],"description":"be at least one of: 'false', other-links","tags":{"formats":["$html-doc"],"description":"A list of links that should be displayed below the table of contents in an `Other Links` section."},"documentation":"A list of links that should be displayed below the table of contents\nin an Other Links section.","$id":"quarto-resource-document-links-other-links"},"quarto-resource-document-links-code-links":{"_internalId":4608,"type":"anyOf","anyOf":[{"_internalId":4604,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":4607,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: 'false', code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of links that should be displayed below the table of contents in an `Code Links` section."},"documentation":"A list of links that should be displayed below the table of contents\nin an Code Links section.","$id":"quarto-resource-document-links-code-links"},"quarto-resource-document-links-notebook-subarticles":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$jats-all"],"description":{"short":"Controls whether referenced notebooks are embedded in JATS output as subarticles.","long":"Controls the display of links to notebooks that provided embedded content or are created from documents.\n\nDefaults to `true` - specify `false` to disable embedding Notebook as subarticles with the JATS output.\n"}},"documentation":"Controls whether referenced notebooks are embedded in JATS output as\nsubarticles.","$id":"quarto-resource-document-links-notebook-subarticles"},"quarto-resource-document-links-notebook-view":{"_internalId":4627,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4626,"type":"anyOf","anyOf":[{"_internalId":4624,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4623,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"},{"_internalId":4625,"type":"array","description":"be an array of values, where each element must be at least one of: a string, notebook-view-schema","items":{"_internalId":4624,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4623,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"}}],"description":"be at least one of: at least one of: a string, notebook-view-schema, an array of values, where each element must be at least one of: a string, notebook-view-schema","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: a string, notebook-view-schema, an array of values, where each element must be at least one of: a string, notebook-view-schema","tags":{"formats":["$html-doc"],"description":"Configures the HTML viewer for notebooks that provide embedded content."},"documentation":"Configures the HTML viewer for notebooks that provide embedded\ncontent.","$id":"quarto-resource-document-links-notebook-view"},"quarto-resource-document-links-notebook-view-style":{"_internalId":4630,"type":"enum","enum":["document","notebook"],"description":"be one of: `document`, `notebook`","completions":["document","notebook"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"The style of document to render. Setting this to `notebook` will create additional notebook style affordances.","hidden":true},"documentation":"The style of document to render. Setting this to\nnotebook will create additional notebook style\naffordances.","$id":"quarto-resource-document-links-notebook-view-style"},"quarto-resource-document-links-notebook-preview-options":{"_internalId":4635,"type":"object","description":"be an object","properties":{"back":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a back button in the notebook preview."},"documentation":"Whether to show a back button in the notebook preview."}},"patternProperties":{},"tags":{"formats":["$html-doc"],"description":"Options for controlling the display and behavior of Notebook previews."},"documentation":"Options for controlling the display and behavior of Notebook\npreviews.","$id":"quarto-resource-document-links-notebook-preview-options"},"quarto-resource-document-links-canonical-url":{"_internalId":4642,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["$html-doc"],"description":{"short":"Include a canonical link tag in website pages","long":"Include a canonical link tag in website pages. You may pass either `true` to \nautomatically generate a canonical link, or pass a canonical url that you'd like\nto have placed in the `href` attribute of the tag.\n\nCanonical links can only be generated for websites with a known `site-url`.\n"}},"documentation":"Include a canonical link tag in website pages","$id":"quarto-resource-document-links-canonical-url"},"quarto-resource-document-listing-listing":{"_internalId":4659,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4658,"type":"anyOf","anyOf":[{"_internalId":4656,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4655,"type":"ref","$ref":"website-listing","description":"be website-listing"}],"description":"be at least one of: a string, website-listing"},{"_internalId":4657,"type":"array","description":"be an array of values, where each element must be at least one of: a string, website-listing","items":{"_internalId":4656,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4655,"type":"ref","$ref":"website-listing","description":"be website-listing"}],"description":"be at least one of: a string, website-listing"}}],"description":"be at least one of: at least one of: a string, website-listing, an array of values, where each element must be at least one of: a string, website-listing","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: a string, website-listing, an array of values, where each element must be at least one of: a string, website-listing","tags":{"formats":["$html-doc"],"description":"Automatically generate the contents of a page from a list of Quarto documents or other custom data."},"documentation":"Automatically generate the contents of a page from a list of Quarto\ndocuments or other custom data.","$id":"quarto-resource-document-listing-listing"},"quarto-resource-document-mermaid-mermaid":{"_internalId":4665,"type":"object","description":"be an object","properties":{"theme":{"_internalId":4664,"type":"enum","enum":["default","dark","forest","neutral"],"description":"be one of: `default`, `dark`, `forest`, `neutral`","completions":["default","dark","forest","neutral"],"exhaustiveCompletions":true,"tags":{"description":"The mermaid built-in theme to use."},"documentation":"The mermaid built-in theme to use."}},"patternProperties":{},"tags":{"formats":["$html-files"],"description":"Mermaid diagram options"},"documentation":"Mermaid diagram options","$id":"quarto-resource-document-mermaid-mermaid"},"quarto-resource-document-metadata-keywords":{"_internalId":4671,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4670,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$asciidoc-all","$html-files","$pdf-all","context","odt","$office-all"],"description":"List of keywords to be included in the document metadata."},"documentation":"List of keywords to be included in the document metadata.","$id":"quarto-resource-document-metadata-keywords"},"quarto-resource-document-metadata-subject":{"_internalId":4685,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4684,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The subject text."},"documentation":"The subject text."},"authority":{"type":"string","description":"be a string","tags":{"description":"An EPUB reserved authority value."},"documentation":"An EPUB reserved authority value."},"term":{"type":"string","description":"be a string","tags":{"description":"The subject term (defined by the schema)."},"documentation":"The subject term (defined by the schema)."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","tags":{"formats":["$pdf-all","$office-all","odt","$epub-all"],"description":"The document subject"},"documentation":"The document subject","$id":"quarto-resource-document-metadata-subject"},"quarto-resource-document-metadata-description":{"type":"string","description":"be a string","tags":{"formats":["odt","$office-all"],"description":"The document description. Some applications show this as `Comments` metadata."},"documentation":"The document description. Some applications show this as\nComments metadata.","$id":"quarto-resource-document-metadata-description"},"quarto-resource-document-metadata-category":{"type":"string","description":"be a string","tags":{"formats":["$office-all"],"description":"The document category."},"documentation":"The document category.","$id":"quarto-resource-document-metadata-category"},"quarto-resource-document-metadata-copyright":{"_internalId":4720,"type":"anyOf","anyOf":[{"_internalId":4717,"type":"object","description":"be an object","properties":{"year":{"_internalId":4704,"type":"anyOf","anyOf":[{"_internalId":4702,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number"},{"_internalId":4703,"type":"array","description":"be an array of values, where each element must be at least one of: a string, a number","items":{"_internalId":4702,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number"}}],"description":"be at least one of: at least one of: a string, a number, an array of values, where each element must be at least one of: a string, a number","tags":{"complete-from":["anyOf",0],"description":"The year for this copyright"},"documentation":"The year for this copyright"},"holder":{"_internalId":4710,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The holder of the copyright."},"documentation":"The holder of the copyright."},{"_internalId":4709,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The holder of the copyright."},"documentation":"The holder of the copyright."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"statement":{"_internalId":4716,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"The text to display for the license."},{"_internalId":4715,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"The text to display for the license."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string","tags":{"formats":["$html-doc","$jats-all"],"description":"The copyright for this document, if any."},"documentation":"The copyright for this document, if any.","$id":"quarto-resource-document-metadata-copyright"},"quarto-resource-document-metadata-license":{"_internalId":4738,"type":"anyOf","anyOf":[{"_internalId":4736,"type":"anyOf","anyOf":[{"_internalId":4733,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of the license."},"documentation":"The type of the license."},"link":{"type":"string","description":"be a string","tags":{"description":"A URL to the license."},"documentation":"A URL to the license."},"text":{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"The text to display for the license."}},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":4737,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":4736,"type":"anyOf","anyOf":[{"_internalId":4733,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of the license."},"documentation":"The type of the license."},"link":{"type":"string","description":"be a string","tags":{"description":"A URL to the license."},"documentation":"A URL to the license."},"text":{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"The text to display for the license."}},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"formats":["$html-doc","$jats-all"],"description":{"short":"The License for this document, if any. (e.g. `CC BY`)","long":"The license for this document, if any. \n\nCreative Commons licenses `CC BY`, `CC BY-SA`, `CC BY-ND`, `CC BY-NC`, `CC BY-NC-SA`, and `CC BY-NC-ND` will automatically generate a license link\nin the document appendix. Other license text will be placed in the appendix verbatim.\n"}},"documentation":"The License for this document, if any. (e.g. CC BY)","$id":"quarto-resource-document-metadata-license"},"quarto-resource-document-metadata-title-meta":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"Sets the title metadata for the document"},"documentation":"Sets the title metadata for the document","$id":"quarto-resource-document-metadata-title-meta"},"quarto-resource-document-metadata-pagetitle":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Sets the title metadata for the document"},"documentation":"Sets the title metadata for the document","$id":"quarto-resource-document-metadata-pagetitle"},"quarto-resource-document-metadata-title-prefix":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Specify STRING as a prefix at the beginning of the title that appears in \nthe HTML header (but not in the title as it appears at the beginning of the body)\n"},"documentation":"Specify STRING as a prefix at the beginning of the title that appears\nin the HTML header (but not in the title as it appears at the beginning\nof the body)","$id":"quarto-resource-document-metadata-title-prefix"},"quarto-resource-document-metadata-description-meta":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Sets the description metadata for the document"},"documentation":"Sets the description metadata for the document","$id":"quarto-resource-document-metadata-description-meta"},"quarto-resource-document-metadata-author-meta":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$html-files"],"description":"Sets the author metadata for the document"},"documentation":"Sets the author metadata for the document","$id":"quarto-resource-document-metadata-author-meta"},"quarto-resource-document-metadata-date-meta":{"type":"string","description":"be a string","tags":{"formats":["$html-all","$pdf-all"],"description":"Sets the date metadata for the document"},"documentation":"Sets the date metadata for the document","$id":"quarto-resource-document-metadata-date-meta"},"quarto-resource-document-numbering-number-sections":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Number section headings","tags":{"description":{"short":"Number section headings","long":"Number section headings rendered output. By default, sections are not numbered.\nSections with class `.unnumbered` will never be numbered, even if `number-sections`\nis specified.\n"}},"$id":"quarto-resource-document-numbering-number-sections"},"quarto-resource-document-numbering-number-depth":{"type":"number","description":"be a number","tags":{"formats":["$html-all","$pdf-all","docx"],"description":{"short":"The depth to which sections should be numbered.","long":"By default, all headings in your document create a \nnumbered section. You customize numbering depth using \nthe `number-depth` option. \n\nFor example, to only number sections immediately below \nthe chapter level, use this:\n\n```yaml \nnumber-depth: 1\n```\n"}},"documentation":"The depth to which sections should be numbered.","$id":"quarto-resource-document-numbering-number-depth"},"quarto-resource-document-numbering-secnumdepth":{"type":"number","description":"be a number","tags":{"formats":["$pdf-all"],"description":"The numbering depth for sections. (Use `number-depth` instead).","hidden":true},"documentation":"The numbering depth for sections. (Use number-depth\ninstead).","$id":"quarto-resource-document-numbering-secnumdepth"},"quarto-resource-document-numbering-number-offset":{"_internalId":4762,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":4761,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":{"short":"Offset for section headings in output (offsets are 0 by default)","long":"Offset for section headings in output (offsets are 0 by default)\nThe first number is added to the section number for\ntop-level headings, the second for second-level headings, and so on.\nSo, for example, if you want the first top-level heading in your\ndocument to be numbered \"6\", specify `number-offset: 5`. If your\ndocument starts with a level-2 heading which you want to be numbered\n\"1.5\", specify `number-offset: [1,4]`. Implies `number-sections`\n"}},"documentation":"Offset for section headings in output (offsets are 0 by default)","$id":"quarto-resource-document-numbering-number-offset"},"quarto-resource-document-numbering-section-numbering":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":"Schema to use for numbering sections, e.g. `1.A.1`"},"documentation":"Schema to use for numbering sections, e.g. 1.A.1","$id":"quarto-resource-document-numbering-section-numbering"},"quarto-resource-document-numbering-shift-heading-level-by":{"type":"number","description":"be a number","documentation":"Shift heading levels by a positive or negative integer. For example,\nwith shift-heading-level-by: -1, level 2 headings become\nlevel 1 headings.","tags":{"description":{"short":"Shift heading levels by a positive or negative integer. For example, with \n`shift-heading-level-by: -1`, level 2 headings become level 1 headings.\n","long":"Shift heading levels by a positive or negative integer.\nFor example, with `shift-heading-level-by: -1`, level 2\nheadings become level 1 headings, and level 3 headings\nbecome level 2 headings. Headings cannot have a level\nless than 1, so a heading that would be shifted below level 1\nbecomes a regular paragraph. Exception: with a shift of -N,\na level-N heading at the beginning of the document\nreplaces the metadata title.\n"}},"$id":"quarto-resource-document-numbering-shift-heading-level-by"},"quarto-resource-document-numbering-page-numbering":{"_internalId":4773,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["typst"],"description":{"short":"Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n","long":"Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n\nSee [Typst Numbering](https://typst.app/docs/reference/model/numbering/) \nfor additional information.\n"}},"documentation":"Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.","$id":"quarto-resource-document-numbering-page-numbering"},"quarto-resource-document-numbering-pagenumbering":{"_internalId":4779,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4778,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Sets the page numbering style and location for the document.","long":"Sets the page numbering style and location for the document using the\n`\\setuppagenumbering` command. \n\nSee [ConTeXt Page Numbering](https://wiki.contextgarden.net/Command/setuppagenumbering) \nfor additional information.\n"}},"documentation":"Sets the page numbering style and location for the document.","$id":"quarto-resource-document-numbering-pagenumbering"},"quarto-resource-document-numbering-top-level-division":{"_internalId":4782,"type":"enum","enum":["default","section","chapter","part"],"description":"be one of: `default`, `section`, `chapter`, `part`","completions":["default","section","chapter","part"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","context","$docbook-all","tei"],"description":{"short":"Treat top-level headings as the given division type (`default`, `section`, `chapter`, or `part`). The hierarchy\norder is part, chapter, then section; all headings are shifted such \nthat the top-level heading becomes the specified type.\n","long":"Treat top-level headings as the given division type (`default`, `section`, `chapter`, or `part`). The hierarchy\norder is part, chapter, then section; all headings are shifted such \nthat the top-level heading becomes the specified type. \n\nThe default behavior is to determine the\nbest division type via heuristics: unless other conditions\napply, `section` is chosen. When the `documentclass`\nvariable is set to `report`, `book`, or `memoir` (unless the\n`article` option is specified), `chapter` is implied as the\nsetting for this option. If `beamer` is the output format,\nspecifying either `chapter` or `part` will cause top-level\nheadings to become `\\part{..}`, while second-level headings\nremain as their default type.\n"}},"documentation":"Treat top-level headings as the given division type\n(default, section, chapter, or\npart). The hierarchy order is part, chapter, then section;\nall headings are shifted such that the top-level heading becomes the\nspecified type.","$id":"quarto-resource-document-numbering-top-level-division"},"quarto-resource-document-ojs-ojs-engine":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"If `true`, force the presence of the OJS runtime. If `false`, force the absence instead.\nIf unset, the OJS runtime is included only if OJS cells are present in the document.\n"},"documentation":"If true, force the presence of the OJS runtime. If\nfalse, force the absence instead. If unset, the OJS runtime\nis included only if OJS cells are present in the document.","$id":"quarto-resource-document-ojs-ojs-engine"},"quarto-resource-document-options-reference-doc":{"type":"string","description":"be a string","tags":{"formats":["$office-all","odt"],"description":"Use the specified file as a style reference in producing a docx, \npptx, or odt file.\n"},"documentation":"Use the specified file as a style reference in producing a docx,\npptx, or odt file.","$id":"quarto-resource-document-options-reference-doc"},"quarto-resource-document-options-brand":{"_internalId":4789,"type":"ref","$ref":"brand-path-bool-light-dark","description":"be brand-path-bool-light-dark","documentation":"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline brand definition, or an object with light and dark\nbrand paths or definitions.","tags":{"description":"Branding information to use for this document. If a string, the path to a brand file.\nIf false, don't use branding on this document. If an object, an inline brand\ndefinition, or an object with light and dark brand paths or definitions.\n"},"$id":"quarto-resource-document-options-brand"},"quarto-resource-document-options-theme":{"_internalId":4814,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4798,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},{"_internalId":4813,"type":"object","description":"be an object","properties":{"light":{"_internalId":4806,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The light theme name, theme scss file, or a mix of both."},"documentation":"The light theme name, theme scss file, or a mix of both."},{"_internalId":4805,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The light theme name, theme scss file, or a mix of both."},"documentation":"The light theme name, theme scss file, or a mix of both."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"dark":{"_internalId":4812,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The dark theme name, theme scss file, or a mix of both."},"documentation":"The dark theme name, theme scss file, or a mix of both."},{"_internalId":4811,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The dark theme name, theme scss file, or a mix of both."},"documentation":"The dark theme name, theme scss file, or a mix of both."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an array of values, where each element must be a string, an object","tags":{"formats":["$html-doc","revealjs","beamer","dashboard"],"description":"Theme name, theme scss file, or a mix of both."},"documentation":"Theme name, theme scss file, or a mix of both.","$id":"quarto-resource-document-options-theme"},"quarto-resource-document-options-body-classes":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Classes to apply to the body of the document.\n"},"documentation":"Classes to apply to the body of the document.","$id":"quarto-resource-document-options-body-classes"},"quarto-resource-document-options-minimal":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Disables the built in html features like theming, anchor sections, code block behavior, and more."},"documentation":"Disables the built in html features like theming, anchor sections,\ncode block behavior, and more.","$id":"quarto-resource-document-options-minimal"},"quarto-resource-document-options-document-css":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables inclusion of Pandoc default CSS for this document.","hidden":true},"documentation":"Enables inclusion of Pandoc default CSS for this document.","$id":"quarto-resource-document-options-document-css"},"quarto-resource-document-options-css":{"_internalId":4826,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4825,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":"One or more CSS style sheets."},"documentation":"One or more CSS style sheets.","$id":"quarto-resource-document-options-css"},"quarto-resource-document-options-anchor-sections":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Enables hover over a section title to see an anchor link."},"documentation":"Enables hover over a section title to see an anchor link.","$id":"quarto-resource-document-options-anchor-sections"},"quarto-resource-document-options-tabsets":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Enables tabsets to present content."},"documentation":"Enables tabsets to present content.","$id":"quarto-resource-document-options-tabsets"},"quarto-resource-document-options-smooth-scroll":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Enables smooth scrolling within the page."},"documentation":"Enables smooth scrolling within the page.","$id":"quarto-resource-document-options-smooth-scroll"},"quarto-resource-document-options-respect-user-color-scheme":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Enables setting dark mode based on the `prefers-color-scheme` media query.","long":"If set, Quarto reads the `prefers-color-scheme` media query to determine whether to show\nthe user a dark or light page. Otherwise the author-preferred color scheme is shown.\n"}},"documentation":"Enables setting dark mode based on the\nprefers-color-scheme media query.","$id":"quarto-resource-document-options-respect-user-color-scheme"},"quarto-resource-document-options-html-math-method":{"_internalId":4848,"type":"anyOf","anyOf":[{"_internalId":4839,"type":"ref","$ref":"math-methods","description":"be math-methods"},{"_internalId":4847,"type":"object","description":"be an object","properties":{"method":{"_internalId":4844,"type":"ref","$ref":"math-methods","description":"be math-methods"},"url":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["method"]}],"description":"be at least one of: math-methods, an object","tags":{"formats":["$html-doc","$epub-all","gfm"],"description":{"short":"Method use to render math in HTML output","long":"Method use to render math in HTML output (`plain`, `webtex`, `gladtex`, `mathml`, `mathjax`, `katex`).\n\nSee the Pandoc documentation on [Math Rendering in HTML](https://pandoc.org/MANUAL.html#math-rendering-in-html)\nfor additional details.\n"}},"documentation":"Method use to render math in HTML output","$id":"quarto-resource-document-options-html-math-method"},"quarto-resource-document-options-section-divs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Wrap sections in `
` tags and attach identifiers to the enclosing `
`\nrather than the heading itself.\n"},"documentation":"Wrap sections in <section> tags and attach\nidentifiers to the enclosing <section> rather than\nthe heading itself.","$id":"quarto-resource-document-options-section-divs"},"quarto-resource-document-options-identifier-prefix":{"type":"string","description":"be a string","tags":{"formats":["$html-files","$docbook-all","$markdown-all","haddock"],"description":{"short":"Specify a prefix to be added to all identifiers and internal links.","long":"Specify a prefix to be added to all identifiers and internal links in HTML and\nDocBook output, and to footnote numbers in Markdown and Haddock output. \nThis is useful for preventing duplicate identifiers when generating fragments\nto be included in other pages.\n"}},"documentation":"Specify a prefix to be added to all identifiers and internal\nlinks.","$id":"quarto-resource-document-options-identifier-prefix"},"quarto-resource-document-options-email-obfuscation":{"_internalId":4855,"type":"enum","enum":["none","references","javascript"],"description":"be one of: `none`, `references`, `javascript`","completions":["none","references","javascript"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Method for obfuscating mailto: links in HTML documents.","long":"Specify a method for obfuscating `mailto:` links in HTML documents.\n\n- `javascript`: Obfuscate links using JavaScript.\n- `references`: Obfuscate links by printing their letters as decimal or hexadecimal character references.\n- `none` (default): Do not obfuscate links.\n"}},"documentation":"Method for obfuscating mailto: links in HTML documents.","$id":"quarto-resource-document-options-email-obfuscation"},"quarto-resource-document-options-html-q-tags":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-all"],"description":"Use `` tags for quotes in HTML."},"documentation":"Use <q> tags for quotes in HTML.","$id":"quarto-resource-document-options-html-q-tags"},"quarto-resource-document-options-pdf-engine":{"_internalId":4860,"type":"enum","enum":["pdflatex","lualatex","xelatex","latexmk","tectonic","wkhtmltopdf","weasyprint","pagedjs-cli","prince","context","pdfroff","typst"],"description":"be one of: `pdflatex`, `lualatex`, `xelatex`, `latexmk`, `tectonic`, `wkhtmltopdf`, `weasyprint`, `pagedjs-cli`, `prince`, `context`, `pdfroff`, `typst`","completions":["pdflatex","lualatex","xelatex","latexmk","tectonic","wkhtmltopdf","weasyprint","pagedjs-cli","prince","context","pdfroff","typst"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","ms","context"],"description":{"short":"Use the specified engine when producing PDF output.","long":"Use the specified engine when producing PDF output. If the engine is not\nin your PATH, the full path of the engine may be specified here. If this\noption is not specified, Quarto uses the following defaults\ndepending on the output format in use:\n\n- `latex`: `lualatex` (other options: `pdflatex`, `xelatex`,\n `tectonic`, `latexmk`)\n- `context`: `context`\n- `html`: `wkhtmltopdf` (other options: `prince`, `weasyprint`, `pagedjs-cli`;\n see [print-css.rocks](https://print-css.rocks) for a good\n introduction to PDF generation from HTML/CSS.)\n- `ms`: `pdfroff`\n- `typst`: `typst`\n"}},"documentation":"Use the specified engine when producing PDF output.","$id":"quarto-resource-document-options-pdf-engine"},"quarto-resource-document-options-pdf-engine-opt":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","ms","context"],"description":{"short":"Use the given string as a command-line argument to the `pdf-engine`.","long":"Use the given string as a command-line argument to the pdf-engine.\nFor example, to use a persistent directory foo for latexmk’s auxiliary\nfiles, use `pdf-engine-opt: -outdir=foo`. Note that no check for \nduplicate options is done.\n"}},"documentation":"Use the given string as a command-line argument to the\npdf-engine.","$id":"quarto-resource-document-options-pdf-engine-opt"},"quarto-resource-document-options-pdf-engine-opts":{"_internalId":4867,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$pdf-all","ms","context"],"description":{"short":"Pass multiple command-line arguments to the `pdf-engine`.","long":"Use the given strings passed as a array as command-line arguments to the pdf-engine.\nThis is an alternative to `pdf-engine-opt` for passing multiple options.\n"}},"documentation":"Pass multiple command-line arguments to the\npdf-engine.","$id":"quarto-resource-document-options-pdf-engine-opts"},"quarto-resource-document-options-beamerarticle":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf"],"description":"Whether to produce a Beamer article from this presentation."},"documentation":"Whether to produce a Beamer article from this presentation.","$id":"quarto-resource-document-options-beamerarticle"},"quarto-resource-document-options-beameroption":{"_internalId":4875,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4874,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"Add an extra Beamer option using `\\setbeameroption{}`."},"documentation":"Add an extra Beamer option using \\setbeameroption{}.","$id":"quarto-resource-document-options-beameroption"},"quarto-resource-document-options-aspectratio":{"_internalId":4878,"type":"enum","enum":[43,169,1610,149,141,54,32],"description":"be one of: `43`, `169`, `1610`, `149`, `141`, `54`, `32`","completions":["43","169","1610","149","141","54","32"],"exhaustiveCompletions":true,"tags":{"formats":["beamer"],"description":"The aspect ratio for this presentation."},"documentation":"The aspect ratio for this presentation.","$id":"quarto-resource-document-options-aspectratio"},"quarto-resource-document-options-logo":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The logo image."},"documentation":"The logo image.","$id":"quarto-resource-document-options-logo"},"quarto-resource-document-options-titlegraphic":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The image for the title slide."},"documentation":"The image for the title slide.","$id":"quarto-resource-document-options-titlegraphic"},"quarto-resource-document-options-navigation":{"_internalId":4885,"type":"enum","enum":["empty","frame","vertical","horizontal"],"description":"be one of: `empty`, `frame`, `vertical`, `horizontal`","completions":["empty","frame","vertical","horizontal"],"exhaustiveCompletions":true,"tags":{"formats":["beamer"],"description":"Controls navigation symbols for the presentation (`empty`, `frame`, `vertical`, or `horizontal`)"},"documentation":"Controls navigation symbols for the presentation (empty,\nframe, vertical, or\nhorizontal)","$id":"quarto-resource-document-options-navigation"},"quarto-resource-document-options-section-titles":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["beamer"],"description":"Whether to enable title pages for new sections."},"documentation":"Whether to enable title pages for new sections.","$id":"quarto-resource-document-options-section-titles"},"quarto-resource-document-options-colortheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer color theme for this presentation, passed to `\\usecolortheme`."},"documentation":"The Beamer color theme for this presentation, passed to\n\\usecolortheme.","$id":"quarto-resource-document-options-colortheme"},"quarto-resource-document-options-colorthemeoptions":{"_internalId":4895,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4894,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer color theme options for this presentation, passed to `\\usecolortheme`."},"documentation":"The Beamer color theme options for this presentation, passed to\n\\usecolortheme.","$id":"quarto-resource-document-options-colorthemeoptions"},"quarto-resource-document-options-fonttheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer font theme for this presentation, passed to `\\usefonttheme`."},"documentation":"The Beamer font theme for this presentation, passed to\n\\usefonttheme.","$id":"quarto-resource-document-options-fonttheme"},"quarto-resource-document-options-fontthemeoptions":{"_internalId":4903,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4902,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer font theme options for this presentation, passed to `\\usefonttheme`."},"documentation":"The Beamer font theme options for this presentation, passed to\n\\usefonttheme.","$id":"quarto-resource-document-options-fontthemeoptions"},"quarto-resource-document-options-innertheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer inner theme for this presentation, passed to `\\useinnertheme`."},"documentation":"The Beamer inner theme for this presentation, passed to\n\\useinnertheme.","$id":"quarto-resource-document-options-innertheme"},"quarto-resource-document-options-innerthemeoptions":{"_internalId":4911,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4910,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer inner theme options for this presentation, passed to `\\useinnertheme`."},"documentation":"The Beamer inner theme options for this presentation, passed to\n\\useinnertheme.","$id":"quarto-resource-document-options-innerthemeoptions"},"quarto-resource-document-options-outertheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer outer theme for this presentation, passed to `\\useoutertheme`."},"documentation":"The Beamer outer theme for this presentation, passed to\n\\useoutertheme.","$id":"quarto-resource-document-options-outertheme"},"quarto-resource-document-options-outerthemeoptions":{"_internalId":4919,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4918,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer outer theme options for this presentation, passed to `\\useoutertheme`."},"documentation":"The Beamer outer theme options for this presentation, passed to\n\\useoutertheme.","$id":"quarto-resource-document-options-outerthemeoptions"},"quarto-resource-document-options-themeoptions":{"_internalId":4925,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4924,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"Options passed to LaTeX Beamer themes inside `\\usetheme`."},"documentation":"Options passed to LaTeX Beamer themes inside\n\\usetheme.","$id":"quarto-resource-document-options-themeoptions"},"quarto-resource-document-options-section":{"type":"number","description":"be a number","tags":{"formats":["man"],"description":"The section number in man pages."},"documentation":"The section number in man pages.","$id":"quarto-resource-document-options-section"},"quarto-resource-document-options-variant":{"type":"string","description":"be a string","tags":{"formats":["$markdown-all"],"description":"Enable and disable extensions for markdown output (e.g. \"+emoji\")\n"},"documentation":"Enable and disable extensions for markdown output (e.g. “+emoji”)","$id":"quarto-resource-document-options-variant"},"quarto-resource-document-options-markdown-headings":{"_internalId":4932,"type":"enum","enum":["setext","atx"],"description":"be one of: `setext`, `atx`","completions":["setext","atx"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all","ipynb"],"description":"Specify whether to use `atx` (`#`-prefixed) or\n`setext` (underlined) headings for level 1 and 2\nheadings (`atx` or `setext`).\n"},"documentation":"Specify whether to use atx (#-prefixed) or\nsetext (underlined) headings for level 1 and 2 headings\n(atx or setext).","$id":"quarto-resource-document-options-markdown-headings"},"quarto-resource-document-options-ipynb-output":{"_internalId":4935,"type":"enum","enum":["none","all","best"],"description":"be one of: `none`, `all`, `best`","completions":["none","all","best"],"exhaustiveCompletions":true,"tags":{"formats":["ipynb"],"description":{"short":"Determines which ipynb cell output formats are rendered (`none`, `all`, or `best`).","long":"Determines which ipynb cell output formats are rendered.\n\n- `all`: Preserve all of the data formats included in the original.\n- `none`: Omit the contents of data cells.\n- `best` (default): Instruct pandoc to try to pick the\n richest data block in each output cell that is compatible\n with the output format.\n"}},"documentation":"Determines which ipynb cell output formats are rendered\n(none, all, or best).","$id":"quarto-resource-document-options-ipynb-output"},"quarto-resource-document-options-quarto-required":{"type":"string","description":"be a string","documentation":"semver version range for required quarto version","tags":{"description":{"short":"semver version range for required quarto version","long":"A semver version range describing the supported quarto versions for this document\nor project.\n\nExamples:\n\n- `>= 1.1.0`: Require at least quarto version 1.1\n- `1.*`: Require any quarto versions whose major version number is 1\n"}},"$id":"quarto-resource-document-options-quarto-required"},"quarto-resource-document-options-preview-mode":{"type":"string","description":"be a string","tags":{"formats":["$jats-all","gfm"],"description":{"short":"The mode to use when previewing this document.","long":"The mode to use when previewing this document. To disable any special\npreviewing features, pass `raw` as the preview-mode.\n"}},"documentation":"The mode to use when previewing this document.","$id":"quarto-resource-document-options-preview-mode"},"quarto-resource-document-pdfa-pdfa":{"_internalId":4946,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["context"],"description":{"short":"Adds the necessary setup to the document preamble to generate PDF/A of the type specified.","long":"Adds the necessary setup to the document preamble to generate PDF/A of the type specified.\n\nIf the value is set to `true`, `1b:2005` will be used as default.\n\nTo successfully generate PDF/A the required\nICC color profiles have to be available and the content and all\nincluded files (such as images) have to be standard conforming.\nThe ICC profiles and output intent may be specified using the\nvariables `pdfaiccprofile` and `pdfaintent`. See also [ConTeXt\nPDFA](https://wiki.contextgarden.net/PDF/A) for more details.\n"}},"documentation":"Adds the necessary setup to the document preamble to generate PDF/A\nof the type specified.","$id":"quarto-resource-document-pdfa-pdfa"},"quarto-resource-document-pdfa-pdfaiccprofile":{"_internalId":4952,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4951,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"When used in conjunction with `pdfa`, specifies the ICC profile to use \nin the PDF, e.g. `default.cmyk`.\n","long":"When used in conjunction with `pdfa`, specifies the ICC profile to use \nin the PDF, e.g. `default.cmyk`.\n\nIf left unspecified, `sRGB.icc` is used as default. May be repeated to \ninclude multiple profiles. Note that the profiles have to be available \non the system. They can be obtained from \n[ConTeXt ICC Profiles](https://wiki.contextgarden.net/PDFX#ICC_profiles).\n"}},"documentation":"When used in conjunction with pdfa, specifies the ICC\nprofile to use in the PDF, e.g. default.cmyk.","$id":"quarto-resource-document-pdfa-pdfaiccprofile"},"quarto-resource-document-pdfa-pdfaintent":{"type":"string","description":"be a string","tags":{"formats":["context"],"description":{"short":"When used in conjunction with `pdfa`, specifies the output intent for the colors.","long":"When used in conjunction with `pdfa`, specifies the output intent for\nthe colors, for example `ISO coated v2 300\\letterpercent\\space (ECI)`\n\nIf left unspecified, `sRGB IEC61966-2.1` is used as default.\n"}},"documentation":"When used in conjunction with pdfa, specifies the output\nintent for the colors.","$id":"quarto-resource-document-pdfa-pdfaintent"},"quarto-resource-document-pdfa-pdf-standard":{"_internalId":4961,"type":"anyOf","anyOf":[{"_internalId":4959,"type":"enum","enum":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"description":"be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","completions":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"exhaustiveCompletions":true},{"_internalId":4960,"type":"array","description":"be an array of values, where each element must be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","items":{"_internalId":4959,"type":"enum","enum":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"description":"be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","completions":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`, an array of values, where each element must be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all","typst"],"description":{"short":"PDF conformance standard (e.g., ua-2, a-2b, 1.7)","long":"Specifies PDF conformance standards and/or version for the output.\n\nAccepts a single value or array of values:\n\n**PDF versions** (both Typst and LaTeX):\n`1.4`, `1.5`, `1.6`, `1.7`, `2.0`\n\n**PDF/A standards** (both engines):\n`a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`\n\n**PDF/A standards** (Typst only):\n`a-1a`, `a-4e`\n\n**PDF/UA standards**:\n`ua-1` (Typst), `ua-2` (LaTeX)\n\n**PDF/X standards** (LaTeX only):\n`x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`\n\nExample: `pdf-standard: [a-2b, ua-2]` for accessible archival PDF.\n"}},"documentation":"PDF conformance standard (e.g., ua-2, a-2b, 1.7)","$id":"quarto-resource-document-pdfa-pdf-standard"},"quarto-resource-document-references-bibliography":{"_internalId":4967,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4966,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Document bibliography (BibTeX or CSL). May be a single file or a list of files\n"},"documentation":"Document bibliography (BibTeX or CSL). May be a single file or a list\nof files","$id":"quarto-resource-document-references-bibliography"},"quarto-resource-document-references-csl":{"type":"string","description":"be a string","documentation":"Citation Style Language file to use for formatting references.","tags":{"description":"Citation Style Language file to use for formatting references."},"$id":"quarto-resource-document-references-csl"},"quarto-resource-document-references-citations-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables a hover popup for citation that shows the reference information."},"documentation":"Enables a hover popup for citation that shows the reference\ninformation.","$id":"quarto-resource-document-references-citations-hover"},"quarto-resource-document-references-citation-location":{"_internalId":4974,"type":"enum","enum":["document","margin"],"description":"be one of: `document`, `margin`","completions":["document","margin"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc","typst"],"description":"Where citation information should be displayed (`document` or `margin`)"},"documentation":"Where citation information should be displayed (document\nor margin)","$id":"quarto-resource-document-references-citation-location"},"quarto-resource-document-references-cite-method":{"_internalId":4977,"type":"enum","enum":["citeproc","natbib","biblatex"],"description":"be one of: `citeproc`, `natbib`, `biblatex`","completions":["citeproc","natbib","biblatex"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Method used to format citations (`citeproc`, `natbib`, or `biblatex`).\n"},"documentation":"Method used to format citations (citeproc,\nnatbib, or biblatex).","$id":"quarto-resource-document-references-cite-method"},"quarto-resource-document-references-citeproc":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Turn on built-in citation processing","tags":{"description":{"short":"Turn on built-in citation processing","long":"Turn on built-in citation processing. To use this feature, you will need\nto have a document containing citations and a source of bibliographic data: \neither an external bibliography file or a list of `references` in the \ndocument's YAML metadata. You can optionally also include a `csl` \ncitation style file.\n"}},"$id":"quarto-resource-document-references-citeproc"},"quarto-resource-document-references-biblatexoptions":{"_internalId":4985,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4984,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":"A list of options for BibLaTeX."},"documentation":"A list of options for BibLaTeX.","$id":"quarto-resource-document-references-biblatexoptions"},"quarto-resource-document-references-natbiboptions":{"_internalId":4991,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4990,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":"One or more options to provide for `natbib` when generating a bibliography."},"documentation":"One or more options to provide for natbib when\ngenerating a bibliography.","$id":"quarto-resource-document-references-natbiboptions"},"quarto-resource-document-references-biblio-style":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"The bibliography style to use (e.g. `\\bibliographystyle{dinat}`) when using `natbib` or `biblatex`."},"documentation":"The bibliography style to use\n(e.g. \\bibliographystyle{dinat}) when using\nnatbib or biblatex.","$id":"quarto-resource-document-references-biblio-style"},"quarto-resource-document-references-bibliographystyle":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":"The bibliography style to use (e.g. `#set bibliography(style: \"apa\")`) when using typst built-in citation system (e.g when not `citeproc: true`)."},"documentation":"The bibliography style to use\n(e.g. #set bibliography(style: \"apa\")) when using typst\nbuilt-in citation system (e.g when not citeproc: true).","$id":"quarto-resource-document-references-bibliographystyle"},"quarto-resource-document-references-biblio-title":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"The bibliography title to use when using `natbib` or `biblatex`."},"documentation":"The bibliography title to use when using natbib or\nbiblatex.","$id":"quarto-resource-document-references-biblio-title"},"quarto-resource-document-references-biblio-config":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Controls whether to output bibliography configuration for `natbib` or `biblatex` when cite method is not `citeproc`."},"documentation":"Controls whether to output bibliography configuration for\nnatbib or biblatex when cite method is not\nciteproc.","$id":"quarto-resource-document-references-biblio-config"},"quarto-resource-document-references-citation-abbreviations":{"type":"string","description":"be a string","documentation":"JSON file containing abbreviations of journals that should be used in\nformatted bibliographies.","tags":{"description":{"short":"JSON file containing abbreviations of journals that should be used in formatted bibliographies.","long":"JSON file containing abbreviations of journals that should be\nused in formatted bibliographies when `form=\"short\"` is\nspecified. The format of the file can be illustrated with an\nexample:\n\n```json\n{ \"default\": {\n \"container-title\": {\n \"Lloyd's Law Reports\": \"Lloyd's Rep\",\n \"Estates Gazette\": \"EG\",\n \"Scots Law Times\": \"SLT\"\n }\n }\n}\n```\n"}},"$id":"quarto-resource-document-references-citation-abbreviations"},"quarto-resource-document-references-link-citations":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","docx"],"description":"If true, citations will be hyperlinked to the corresponding bibliography entries (for author-date and numerical styles only). Defaults to false."},"documentation":"If true, citations will be hyperlinked to the corresponding\nbibliography entries (for author-date and numerical styles only).\nDefaults to false.","$id":"quarto-resource-document-references-link-citations"},"quarto-resource-document-references-link-bibliography":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","docx"],"description":{"short":"If true, DOIs, PMCIDs, PMID, and URLs in bibliographies will be rendered as hyperlinks.","long":"If true, DOIs, PMCIDs, PMID, and URLs in bibliographies will be rendered as hyperlinks. (If an entry contains a DOI, PMCID, PMID, or URL, but none of \nthese fields are rendered by the style, then the title, or in the absence of a title the whole entry, will be hyperlinked.) Defaults to true.\n"}},"documentation":"If true, DOIs, PMCIDs, PMID, and URLs in bibliographies will be\nrendered as hyperlinks.","$id":"quarto-resource-document-references-link-bibliography"},"quarto-resource-document-references-notes-after-punctuation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","docx"],"description":{"short":"Places footnote references or superscripted numerical citations after following punctuation.","long":"If true (the default for note styles), Quarto (via Pandoc) will put footnote references or superscripted numerical citations after \nfollowing punctuation. For example, if the source contains `blah blah [@jones99]`., the result will look like `blah blah.[^1]`, with \nthe note moved after the period and the space collapsed. \n\nIf false, the space will still be collapsed, but the footnote will not be moved after the punctuation. The option may also be used \nin numerical styles that use superscripts for citation numbers (but for these styles the default is not to move the citation).\n"}},"documentation":"Places footnote references or superscripted numerical citations after\nfollowing punctuation.","$id":"quarto-resource-document-references-notes-after-punctuation"},"quarto-resource-document-render-from":{"type":"string","description":"be a string","documentation":"Format to read from","tags":{"description":{"short":"Format to read from","long":"Format to read from. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. markdown+emoji).\n"}},"$id":"quarto-resource-document-render-from"},"quarto-resource-document-render-reader":{"type":"string","description":"be a string","documentation":"Format to read from","tags":{"description":{"short":"Format to read from","long":"Format to read from. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. markdown+emoji).\n"}},"$id":"quarto-resource-document-render-reader"},"quarto-resource-document-render-output-file":{"_internalId":5012,"type":"ref","$ref":"pandoc-format-output-file","description":"be pandoc-format-output-file","documentation":"Output file to write to","tags":{"description":"Output file to write to"},"$id":"quarto-resource-document-render-output-file"},"quarto-resource-document-render-output-ext":{"type":"string","description":"be a string","documentation":"Extension to use for generated output file","tags":{"description":"Extension to use for generated output file\n"},"$id":"quarto-resource-document-render-output-ext"},"quarto-resource-document-render-template":{"type":"string","description":"be a string","tags":{"formats":["!$office-all","!ipynb"],"description":"Use the specified file as a custom template for the generated document.\n"},"documentation":"Use the specified file as a custom template for the generated\ndocument.","$id":"quarto-resource-document-render-template"},"quarto-resource-document-render-template-partials":{"_internalId":5022,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5021,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!ipynb"],"description":"Include the specified files as partials accessible to the template for the generated content.\n"},"documentation":"Include the specified files as partials accessible to the template\nfor the generated content.","$id":"quarto-resource-document-render-template-partials"},"quarto-resource-document-render-embed-resources":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Produce a standalone HTML file with no external dependencies","long":"Produce a standalone HTML file with no external dependencies, using\n`data:` URIs to incorporate the contents of linked scripts, stylesheets,\nimages, and videos. The resulting file should be \"self-contained,\" in the\nsense that it needs no external files and no net access to be displayed\nproperly by a browser. This option works only with HTML output formats,\nincluding `html4`, `html5`, `html+lhs`, `html5+lhs`, `s5`, `slidy`,\n`slideous`, `dzslides`, and `revealjs`. Scripts, images, and stylesheets at\nabsolute URLs will be downloaded; those at relative URLs will be sought\nrelative to the working directory (if the first source\nfile is local) or relative to the base URL (if the first source\nfile is remote). Elements with the attribute\n`data-external=\"1\"` will be left alone; the documents they\nlink to will not be incorporated in the document.\nLimitation: resources that are loaded dynamically through\nJavaScript cannot be incorporated; as a result, some\nadvanced features (e.g. zoom or speaker notes) may not work\nin an offline \"self-contained\" `reveal.js` slide show.\n"}},"documentation":"Produce a standalone HTML file with no external dependencies","$id":"quarto-resource-document-render-embed-resources"},"quarto-resource-document-render-self-contained":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Produce a standalone HTML file with no external dependencies","long":"Produce a standalone HTML file with no external dependencies. Note that\nthis option has been deprecated in favor of `embed-resources`.\n"},"hidden":true},"documentation":"Produce a standalone HTML file with no external dependencies","$id":"quarto-resource-document-render-self-contained"},"quarto-resource-document-render-self-contained-math":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Embed math libraries (e.g. MathJax) within `self-contained` output.","long":"Embed math libraries (e.g. MathJax) within `self-contained` output.\nNote that math libraries are not embedded by default because they are \n quite large and often time consuming to download.\n"}},"documentation":"Embed math libraries (e.g. MathJax) within\nself-contained output.","$id":"quarto-resource-document-render-self-contained-math"},"quarto-resource-document-render-filters":{"_internalId":5031,"type":"ref","$ref":"pandoc-format-filters","description":"be pandoc-format-filters","documentation":"Specify executables or Lua scripts to be used as a filter\ntransforming the pandoc AST after the input is parsed and before the\noutput is written.","tags":{"description":"Specify executables or Lua scripts to be used as a filter transforming\nthe pandoc AST after the input is parsed and before the output is written.\n"},"$id":"quarto-resource-document-render-filters"},"quarto-resource-document-render-shortcodes":{"_internalId":5034,"type":"ref","$ref":"pandoc-shortcodes","description":"be pandoc-shortcodes","documentation":"Specify Lua scripts that implement shortcode handlers","tags":{"description":"Specify Lua scripts that implement shortcode handlers\n"},"$id":"quarto-resource-document-render-shortcodes"},"quarto-resource-document-render-keep-md":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"description":"Keep the markdown file generated by executing code"},"documentation":"Keep the markdown file generated by executing code","$id":"quarto-resource-document-render-keep-md"},"quarto-resource-document-render-keep-ipynb":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"description":"Keep the notebook file generated from executing code."},"documentation":"Keep the notebook file generated from executing code.","$id":"quarto-resource-document-render-keep-ipynb"},"quarto-resource-document-render-ipynb-filters":{"_internalId":5043,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"contexts":["document-execute"],"description":"Filters to pre-process ipynb files before rendering to markdown"},"documentation":"Filters to pre-process ipynb files before rendering to markdown","$id":"quarto-resource-document-render-ipynb-filters"},"quarto-resource-document-render-ipynb-shell-interactivity":{"_internalId":5046,"type":"enum","enum":[null,"all","last","last_expr","none","last_expr_or_assign"],"description":"be one of: `null`, `all`, `last`, `last_expr`, `none`, `last_expr_or_assign`","completions":["null","all","last","last_expr","none","last_expr_or_assign"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"engine":"jupyter","description":"Specify which nodes should be run interactively (displaying output from expressions)\n"},"documentation":"Specify which nodes should be run interactively (displaying output\nfrom expressions)","$id":"quarto-resource-document-render-ipynb-shell-interactivity"},"quarto-resource-document-render-plotly-connected":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"engine":"jupyter","description":"If true, use the \"notebook_connected\" plotly renderer, which downloads\nits dependencies from a CDN and requires an internet connection to view.\n"},"documentation":"If true, use the “notebook_connected” plotly renderer, which\ndownloads its dependencies from a CDN and requires an internet\nconnection to view.","$id":"quarto-resource-document-render-plotly-connected"},"quarto-resource-document-render-keep-typ":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":"Keep the intermediate typst file used during render."},"documentation":"Keep the intermediate typst file used during render.","$id":"quarto-resource-document-render-keep-typ"},"quarto-resource-document-render-keep-tex":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Keep the intermediate tex file used during render."},"documentation":"Keep the intermediate tex file used during render.","$id":"quarto-resource-document-render-keep-tex"},"quarto-resource-document-render-extract-media":{"type":"string","description":"be a string","documentation":"Extract images and other media contained in or linked from the source\ndocument to the path DIR.","tags":{"description":{"short":"Extract images and other media contained in or linked from the source document to the\npath DIR.\n","long":"Extract images and other media contained in or linked from the source document to the\npath DIR, creating it if necessary, and adjust the images references in the document\nso they point to the extracted files. Media are downloaded, read from the file\nsystem, or extracted from a binary container (e.g. docx), as needed. The original\nfile paths are used if they are relative paths not containing ... Otherwise filenames\nare constructed from the SHA1 hash of the contents.\n"}},"$id":"quarto-resource-document-render-extract-media"},"quarto-resource-document-render-resource-path":{"_internalId":5059,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"List of paths to search for images and other resources.","tags":{"description":"List of paths to search for images and other resources.\n"},"$id":"quarto-resource-document-render-resource-path"},"quarto-resource-document-render-default-image-extension":{"type":"string","description":"be a string","documentation":"Specify a default extension to use when image paths/URLs have no\nextension.","tags":{"description":{"short":"Specify a default extension to use when image paths/URLs have no extension.\n","long":"Specify a default extension to use when image paths/URLs have no\nextension. This allows you to use the same source for formats that\nrequire different kinds of images. Currently this option only affects\nthe Markdown and LaTeX readers.\n"}},"$id":"quarto-resource-document-render-default-image-extension"},"quarto-resource-document-render-abbreviations":{"type":"string","description":"be a string","documentation":"Specifies a custom abbreviations file, with abbreviations one to a\nline.","tags":{"description":{"short":"Specifies a custom abbreviations file, with abbreviations one to a line.\n","long":"Specifies a custom abbreviations file, with abbreviations one to a line.\nThis list is used when reading Markdown input: strings found in this list\nwill be followed by a nonbreaking space, and the period will not produce sentence-ending space in formats like LaTeX. The strings may not contain\nspaces.\n"}},"$id":"quarto-resource-document-render-abbreviations"},"quarto-resource-document-render-dpi":{"type":"number","description":"be a number","documentation":"Specify the default dpi (dots per inch) value for conversion from\npixels to inch/ centimeters and vice versa.","tags":{"description":{"short":"Specify the default dpi (dots per inch) value for conversion from pixels to inch/\ncentimeters and vice versa.\n","long":"Specify the default dpi (dots per inch) value for conversion from pixels to inch/\ncentimeters and vice versa. (Technically, the correct term would be ppi: pixels per\ninch.) The default is `96`. When images contain information about dpi internally, the\nencoded value is used instead of the default specified by this option.\n"}},"$id":"quarto-resource-document-render-dpi"},"quarto-resource-document-render-html-table-processing":{"_internalId":5068,"type":"enum","enum":["none"],"description":"be 'none'","completions":["none"],"exhaustiveCompletions":true,"documentation":"If none, do not process tables in HTML input.","tags":{"description":"If `none`, do not process tables in HTML input."},"$id":"quarto-resource-document-render-html-table-processing"},"quarto-resource-document-render-html-pre-tag-processing":{"_internalId":5071,"type":"enum","enum":["none","parse"],"description":"be one of: `none`, `parse`","completions":["none","parse"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":"If `none`, ignore any divs with `html-pre-tag-processing=parse` enabled."},"documentation":"If none, ignore any divs with\nhtml-pre-tag-processing=parse enabled.","$id":"quarto-resource-document-render-html-pre-tag-processing"},"quarto-resource-document-render-css-property-processing":{"_internalId":5074,"type":"enum","enum":["none","translate"],"description":"be one of: `none`, `translate`","completions":["none","translate"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":{"short":"CSS property translation","long":"If `translate`, translate CSS properties into output format properties. If `none`, do not process css properties."}},"documentation":"CSS property translation","$id":"quarto-resource-document-render-css-property-processing"},"quarto-resource-document-render-use-rsvg-convert":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"If `true`, attempt to use `rsvg-convert` to convert SVG images to PDF."},"documentation":"If true, attempt to use rsvg-convert to\nconvert SVG images to PDF.","$id":"quarto-resource-document-render-use-rsvg-convert"},"quarto-resource-document-reveal-content-logo":{"_internalId":5079,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"formats":["revealjs"],"description":"Logo image (placed in bottom right corner of slides)"},"documentation":"Logo image (placed in bottom right corner of slides)","$id":"quarto-resource-document-reveal-content-logo"},"quarto-resource-document-reveal-content-footer":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":{"short":"Footer to include on all slides","long":"Footer to include on all slides. Can also be set per-slide by including a\ndiv with class `.footer` on the slide.\n"}},"documentation":"Footer to include on all slides","$id":"quarto-resource-document-reveal-content-footer"},"quarto-resource-document-reveal-content-scrollable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Allow content that overflows slides vertically to scroll","long":"`true` to allow content that overflows slides vertically to scroll. This can also\nbe set per-slide by including the `.scrollable` class on the slide title.\n"}},"documentation":"Allow content that overflows slides vertically to scroll","$id":"quarto-resource-document-reveal-content-scrollable"},"quarto-resource-document-reveal-content-smaller":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Use a smaller default font for slide content","long":"`true` to use a smaller default font for slide content. This can also\nbe set per-slide by including the `.smaller` class on the slide title.\n"}},"documentation":"Use a smaller default font for slide content","$id":"quarto-resource-document-reveal-content-smaller"},"quarto-resource-document-reveal-content-output-location":{"_internalId":5088,"type":"enum","enum":["default","fragment","slide","column","column-fragment"],"description":"be one of: `default`, `fragment`, `slide`, `column`, `column-fragment`","completions":["default","fragment","slide","column","column-fragment"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Location of output relative to the code that generated it (`default`, `fragment`, `slide`, `column`, or `column-location`)","long":"Location of output relative to the code that generated it. The possible values are as follows:\n\n- `default`: Normal flow of the slide after the code\n- `fragment`: In a fragment (not visible until you advance)\n- `slide`: On a new slide after the curent one\n- `column`: In an adjacent column \n- `column-fragment`: In an adjacent column (not visible until you advance)\n\nNote that this option is supported only for the `revealjs` format.\n"}},"documentation":"Location of output relative to the code that generated it\n(default, fragment, slide,\ncolumn, or column-location)","$id":"quarto-resource-document-reveal-content-output-location"},"quarto-resource-document-reveal-hidden-embedded":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Flags if the presentation is running in an embedded mode\n","hidden":true},"documentation":"Flags if the presentation is running in an embedded mode","$id":"quarto-resource-document-reveal-hidden-embedded"},"quarto-resource-document-reveal-hidden-display":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"The display mode that will be used to show slides","hidden":true},"documentation":"The display mode that will be used to show slides","$id":"quarto-resource-document-reveal-hidden-display"},"quarto-resource-document-reveal-layout-auto-stretch":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"For slides with a single top-level image, automatically stretch it to fill the slide."},"documentation":"For slides with a single top-level image, automatically stretch it to\nfill the slide.","$id":"quarto-resource-document-reveal-layout-auto-stretch"},"quarto-resource-document-reveal-layout-width":{"_internalId":5101,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","tags":{"formats":["revealjs"],"description":{"short":"The 'normal' width of the presentation","long":"The \"normal\" width of the presentation, aspect ratio will\nbe preserved when the presentation is scaled to fit different\nresolutions. Can be specified using percentage units.\n"}},"documentation":"The ‘normal’ width of the presentation","$id":"quarto-resource-document-reveal-layout-width"},"quarto-resource-document-reveal-layout-height":{"_internalId":5108,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","tags":{"formats":["revealjs"],"description":{"short":"The 'normal' height of the presentation","long":"The \"normal\" height of the presentation, aspect ratio will\nbe preserved when the presentation is scaled to fit different\nresolutions. Can be specified using percentage units.\n"}},"documentation":"The ‘normal’ height of the presentation","$id":"quarto-resource-document-reveal-layout-height"},"quarto-resource-document-reveal-layout-min-scale":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Bounds for smallest possible scale to apply to content"},"documentation":"Bounds for smallest possible scale to apply to content","$id":"quarto-resource-document-reveal-layout-min-scale"},"quarto-resource-document-reveal-layout-max-scale":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Bounds for largest possible scale to apply to content"},"documentation":"Bounds for largest possible scale to apply to content","$id":"quarto-resource-document-reveal-layout-max-scale"},"quarto-resource-document-reveal-layout-center":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Vertical centering of slides"},"documentation":"Vertical centering of slides","$id":"quarto-resource-document-reveal-layout-center"},"quarto-resource-document-reveal-layout-disable-layout":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Disables the default reveal.js slide layout (scaling and centering)\n"},"documentation":"Disables the default reveal.js slide layout (scaling and\ncentering)","$id":"quarto-resource-document-reveal-layout-disable-layout"},"quarto-resource-document-reveal-layout-code-block-height":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Sets the maximum height for source code blocks that appear in the presentation.\n"},"documentation":"Sets the maximum height for source code blocks that appear in the\npresentation.","$id":"quarto-resource-document-reveal-layout-code-block-height"},"quarto-resource-document-reveal-media-preview-links":{"_internalId":5126,"type":"anyOf","anyOf":[{"_internalId":5123,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: 'auto', `true` or `false`","tags":{"formats":["revealjs"],"description":{"short":"Open links in an iframe preview overlay (`true`, `false`, or `auto`)","long":"Open links in an iframe preview overlay.\n\n- `true`: Open links in iframe preview overlay\n- `false`: Do not open links in iframe preview overlay\n- `auto` (default): Open links in iframe preview overlay, in fullscreen mode.\n"}},"documentation":"Open links in an iframe preview overlay (true,\nfalse, or auto)","$id":"quarto-resource-document-reveal-media-preview-links"},"quarto-resource-document-reveal-media-auto-play-media":{"_internalId":5129,"type":"enum","enum":[null,true,false],"description":"be one of: `null`, `true`, `false`","completions":["null","true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Autoplay embedded media (`null`, `true`, or `false`). Default is `null` (only when `autoplay` \nattribute is specified)\n"},"documentation":"Autoplay embedded media (null, true, or\nfalse). Default is null (only when\nautoplay attribute is specified)","$id":"quarto-resource-document-reveal-media-auto-play-media"},"quarto-resource-document-reveal-media-preload-iframes":{"_internalId":5132,"type":"enum","enum":[null,true,false],"description":"be one of: `null`, `true`, `false`","completions":["null","true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Global override for preloading lazy-loaded iframes (`null`, `true`, or `false`).","long":"Global override for preloading lazy-loaded iframes\n\n- `null`: Iframes with data-src AND data-preload will be loaded when within\n the `viewDistance`, iframes with only data-src will be loaded when visible\n- `true`: All iframes with data-src will be loaded when within the viewDistance\n- `false`: All iframes with data-src will be loaded only when visible\n"}},"documentation":"Global override for preloading lazy-loaded iframes\n(null, true, or false).","$id":"quarto-resource-document-reveal-media-preload-iframes"},"quarto-resource-document-reveal-media-view-distance":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of slides away from the current slide to pre-load resources for"},"documentation":"Number of slides away from the current slide to pre-load resources\nfor","$id":"quarto-resource-document-reveal-media-view-distance"},"quarto-resource-document-reveal-media-mobile-view-distance":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of slides away from the current slide to pre-load resources for (on mobile devices).\n"},"documentation":"Number of slides away from the current slide to pre-load resources\nfor (on mobile devices).","$id":"quarto-resource-document-reveal-media-mobile-view-distance"},"quarto-resource-document-reveal-media-parallax-background-image":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Parallax background image"},"documentation":"Parallax background image","$id":"quarto-resource-document-reveal-media-parallax-background-image"},"quarto-resource-document-reveal-media-parallax-background-size":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Parallax background size (e.g. '2100px 900px')"},"documentation":"Parallax background size (e.g. ‘2100px 900px’)","$id":"quarto-resource-document-reveal-media-parallax-background-size"},"quarto-resource-document-reveal-media-parallax-background-horizontal":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of pixels to move the parallax background horizontally per slide."},"documentation":"Number of pixels to move the parallax background horizontally per\nslide.","$id":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"quarto-resource-document-reveal-media-parallax-background-vertical":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of pixels to move the parallax background vertically per slide."},"documentation":"Number of pixels to move the parallax background vertically per\nslide.","$id":"quarto-resource-document-reveal-media-parallax-background-vertical"},"quarto-resource-document-reveal-navigation-progress":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Display a presentation progress bar"},"documentation":"Display a presentation progress bar","$id":"quarto-resource-document-reveal-navigation-progress"},"quarto-resource-document-reveal-navigation-history":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Push each slide change to the browser history\n"},"documentation":"Push each slide change to the browser history","$id":"quarto-resource-document-reveal-navigation-history"},"quarto-resource-document-reveal-navigation-navigation-mode":{"_internalId":5151,"type":"enum","enum":["linear","vertical","grid"],"description":"be one of: `linear`, `vertical`, `grid`","completions":["linear","vertical","grid"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Navigation progression (`linear`, `vertical`, or `grid`)","long":"Changes the behavior of navigation directions.\n\n- `linear`: Removes the up/down arrows. Left/right arrows step through all\n slides (both horizontal and vertical).\n\n- `vertical`: Left/right arrow keys step between horizontal slides, up/down\n arrow keys step between vertical slides. Space key steps through\n all slides (both horizontal and vertical).\n\n- `grid`: When this is enabled, stepping left/right from a vertical stack\n to an adjacent vertical stack will land you at the same vertical\n index.\n"}},"documentation":"Navigation progression (linear, vertical,\nor grid)","$id":"quarto-resource-document-reveal-navigation-navigation-mode"},"quarto-resource-document-reveal-navigation-touch":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable touch navigation on devices with touch input\n"},"documentation":"Enable touch navigation on devices with touch input","$id":"quarto-resource-document-reveal-navigation-touch"},"quarto-resource-document-reveal-navigation-keyboard":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable keyboard shortcuts for navigation"},"documentation":"Enable keyboard shortcuts for navigation","$id":"quarto-resource-document-reveal-navigation-keyboard"},"quarto-resource-document-reveal-navigation-mouse-wheel":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable slide navigation via mouse wheel"},"documentation":"Enable slide navigation via mouse wheel","$id":"quarto-resource-document-reveal-navigation-mouse-wheel"},"quarto-resource-document-reveal-navigation-hide-inactive-cursor":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Hide cursor if inactive"},"documentation":"Hide cursor if inactive","$id":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"quarto-resource-document-reveal-navigation-hide-cursor-time":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Time before the cursor is hidden (in ms)"},"documentation":"Time before the cursor is hidden (in ms)","$id":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"quarto-resource-document-reveal-navigation-loop":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Loop the presentation"},"documentation":"Loop the presentation","$id":"quarto-resource-document-reveal-navigation-loop"},"quarto-resource-document-reveal-navigation-shuffle":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Randomize the order of slides each time the presentation loads"},"documentation":"Randomize the order of slides each time the presentation loads","$id":"quarto-resource-document-reveal-navigation-shuffle"},"quarto-resource-document-reveal-navigation-controls":{"_internalId":5173,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5172,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'auto'","tags":{"formats":["revealjs"],"description":{"short":"Show arrow controls for navigating through slides (`true`, `false`, or `auto`).","long":"Show arrow controls for navigating through slides.\n\n- `true`: Always show controls\n- `false`: Never show controls\n- `auto` (default): Show controls when vertical slides are present or when the deck is embedded in an iframe.\n"}},"documentation":"Show arrow controls for navigating through slides (true,\nfalse, or auto).","$id":"quarto-resource-document-reveal-navigation-controls"},"quarto-resource-document-reveal-navigation-controls-layout":{"_internalId":5176,"type":"enum","enum":["edges","bottom-right"],"description":"be one of: `edges`, `bottom-right`","completions":["edges","bottom-right"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Location for navigation controls (`edges` or `bottom-right`)"},"documentation":"Location for navigation controls (edges or\nbottom-right)","$id":"quarto-resource-document-reveal-navigation-controls-layout"},"quarto-resource-document-reveal-navigation-controls-tutorial":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Help the user learn the controls by providing visual hints."},"documentation":"Help the user learn the controls by providing visual hints.","$id":"quarto-resource-document-reveal-navigation-controls-tutorial"},"quarto-resource-document-reveal-navigation-controls-back-arrows":{"_internalId":5181,"type":"enum","enum":["faded","hidden","visible"],"description":"be one of: `faded`, `hidden`, `visible`","completions":["faded","hidden","visible"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Visibility rule for backwards navigation arrows (`faded`, `hidden`, or `visible`).\n"},"documentation":"Visibility rule for backwards navigation arrows (faded,\nhidden, or visible).","$id":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"quarto-resource-document-reveal-navigation-auto-slide":{"_internalId":5189,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":5188,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true}],"description":"be at least one of: a number, 'false'","tags":{"formats":["revealjs"],"description":"Automatically progress all slides at the specified interval"},"documentation":"Automatically progress all slides at the specified interval","$id":"quarto-resource-document-reveal-navigation-auto-slide"},"quarto-resource-document-reveal-navigation-auto-slide-stoppable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Stop auto-sliding after user input"},"documentation":"Stop auto-sliding after user input","$id":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"quarto-resource-document-reveal-navigation-auto-slide-method":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Navigation method to use when auto sliding (defaults to navigateNext)"},"documentation":"Navigation method to use when auto sliding (defaults to\nnavigateNext)","$id":"quarto-resource-document-reveal-navigation-auto-slide-method"},"quarto-resource-document-reveal-navigation-default-timing":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Expected average seconds per slide (used by pacing timer in speaker view)"},"documentation":"Expected average seconds per slide (used by pacing timer in speaker\nview)","$id":"quarto-resource-document-reveal-navigation-default-timing"},"quarto-resource-document-reveal-navigation-pause":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Flags whether it should be possible to pause the presentation (blackout)\n"},"documentation":"Flags whether it should be possible to pause the presentation\n(blackout)","$id":"quarto-resource-document-reveal-navigation-pause"},"quarto-resource-document-reveal-navigation-help":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Show a help overlay when the `?` key is pressed\n"},"documentation":"Show a help overlay when the ? key is pressed","$id":"quarto-resource-document-reveal-navigation-help"},"quarto-resource-document-reveal-navigation-hash":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Add the current slide to the URL hash"},"documentation":"Add the current slide to the URL hash","$id":"quarto-resource-document-reveal-navigation-hash"},"quarto-resource-document-reveal-navigation-hash-type":{"_internalId":5204,"type":"enum","enum":["number","title"],"description":"be one of: `number`, `title`","completions":["number","title"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"URL hash type (`number` or `title`)"},"documentation":"URL hash type (number or title)","$id":"quarto-resource-document-reveal-navigation-hash-type"},"quarto-resource-document-reveal-navigation-hash-one-based-index":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Use 1 based indexing for hash links to match slide number\n"},"documentation":"Use 1 based indexing for hash links to match slide number","$id":"quarto-resource-document-reveal-navigation-hash-one-based-index"},"quarto-resource-document-reveal-navigation-respond-to-hash-changes":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Monitor the hash and change slides accordingly\n"},"documentation":"Monitor the hash and change slides accordingly","$id":"quarto-resource-document-reveal-navigation-respond-to-hash-changes"},"quarto-resource-document-reveal-navigation-fragment-in-url":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Include the current fragment in the URL"},"documentation":"Include the current fragment in the URL","$id":"quarto-resource-document-reveal-navigation-fragment-in-url"},"quarto-resource-document-reveal-navigation-slide-tone":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Play a subtle sound when changing slides"},"documentation":"Play a subtle sound when changing slides","$id":"quarto-resource-document-reveal-navigation-slide-tone"},"quarto-resource-document-reveal-navigation-jump-to-slide":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Deactivate jump to slide feature."},"documentation":"Deactivate jump to slide feature.","$id":"quarto-resource-document-reveal-navigation-jump-to-slide"},"quarto-resource-document-reveal-print-pdf-max-pages-per-slide":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":{"short":"Slides that are too tall to fit within a single page will expand onto multiple pages","long":"Slides that are too tall to fit within a single page will expand onto multiple pages. You can limit how many pages a slide may expand to using this option.\n"}},"documentation":"Slides that are too tall to fit within a single page will expand onto\nmultiple pages","$id":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide"},"quarto-resource-document-reveal-print-pdf-separate-fragments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Prints each fragment on a separate slide"},"documentation":"Prints each fragment on a separate slide","$id":"quarto-resource-document-reveal-print-pdf-separate-fragments"},"quarto-resource-document-reveal-print-pdf-page-height-offset":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":{"short":"Offset used to reduce the height of content within exported PDF pages.","long":"Offset used to reduce the height of content within exported PDF pages.\nThis exists to account for environment differences based on how you\nprint to PDF. CLI printing options, like phantomjs and wkpdf, can end\non precisely the total height of the document whereas in-browser\nprinting has to end one pixel before.\n"}},"documentation":"Offset used to reduce the height of content within exported PDF\npages.","$id":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"quarto-resource-document-reveal-tools-overview":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable the slide overview mode"},"documentation":"Enable the slide overview mode","$id":"quarto-resource-document-reveal-tools-overview"},"quarto-resource-document-reveal-tools-menu":{"_internalId":5239,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5238,"type":"object","description":"be an object","properties":{"side":{"_internalId":5231,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"Side of the presentation where the menu will be shown (`left` or `right`)"},"documentation":"Side of the presentation where the menu will be shown\n(left or right)"},"width":{"type":"string","description":"be a string","completions":["normal","wide","third","half","full"],"tags":{"description":"Width of the menu"},"documentation":"Width of the menu"},"numbers":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Add slide numbers to menu items"},"documentation":"Add slide numbers to menu items"},"use-text-content-for-missing-titles":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"For slides with no title, attempt to use the start of the text content as the title instead.\n"},"documentation":"For slides with no title, attempt to use the start of the text\ncontent as the title instead."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention side,width,numbers,use-text-content-for-missing-titles","type":"string","pattern":"(?!(^use_text_content_for_missing_titles$|^useTextContentForMissingTitles$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for revealjs menu."},"documentation":"Configuration for revealjs menu.","$id":"quarto-resource-document-reveal-tools-menu"},"quarto-resource-document-reveal-tools-chalkboard":{"_internalId":5262,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5261,"type":"object","description":"be an object","properties":{"theme":{"_internalId":5248,"type":"enum","enum":["chalkboard","whiteboard"],"description":"be one of: `chalkboard`, `whiteboard`","completions":["chalkboard","whiteboard"],"exhaustiveCompletions":true,"tags":{"description":"Visual theme for drawing surface (`chalkboard` or `whiteboard`)"},"documentation":"Visual theme for drawing surface (chalkboard or\nwhiteboard)"},"boardmarker-width":{"type":"number","description":"be a number","tags":{"description":"The drawing width of the boardmarker. Defaults to 3. Larger values draw thicker lines.\n"},"documentation":"The drawing width of the boardmarker. Defaults to 3. Larger values\ndraw thicker lines."},"chalk-width":{"type":"number","description":"be a number","tags":{"description":"The drawing width of the chalk. Defaults to 7. Larger values draw thicker lines.\n"},"documentation":"The drawing width of the chalk. Defaults to 7. Larger values draw\nthicker lines."},"src":{"type":"string","description":"be a string","tags":{"description":"Optional file name for pre-recorded drawings (download drawings using the `D` key)\n"},"documentation":"Optional file name for pre-recorded drawings (download drawings using\nthe D key)"},"read-only":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Configuration option to prevent changes to existing drawings\n"},"documentation":"Configuration option to prevent changes to existing drawings"},"buttons":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Add chalkboard buttons at the bottom of the slide\n"},"documentation":"Add chalkboard buttons at the bottom of the slide"},"transition":{"type":"number","description":"be a number","tags":{"description":"Gives the duration (in ms) of the transition for a slide change, \nso that the notes canvas is drawn after the transition is completed.\n"},"documentation":"Gives the duration (in ms) of the transition for a slide change, so\nthat the notes canvas is drawn after the transition is completed."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention theme,boardmarker-width,chalk-width,src,read-only,buttons,transition","type":"string","pattern":"(?!(^boardmarker_width$|^boardmarkerWidth$|^chalk_width$|^chalkWidth$|^read_only$|^readOnly$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for revealjs chalkboard."},"documentation":"Configuration for revealjs chalkboard.","$id":"quarto-resource-document-reveal-tools-chalkboard"},"quarto-resource-document-reveal-tools-multiplex":{"_internalId":5276,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5275,"type":"object","description":"be an object","properties":{"url":{"type":"string","description":"be a string","tags":{"description":"Multiplex token server (defaults to Reveal-hosted server)\n"},"documentation":"Multiplex token server (defaults to Reveal-hosted server)"},"id":{"type":"string","description":"be a string","tags":{"description":"Unique presentation id provided by multiplex token server"},"documentation":"Unique presentation id provided by multiplex token server"},"secret":{"type":"string","description":"be a string","tags":{"description":"Secret provided by multiplex token server"},"documentation":"Secret provided by multiplex token server"}},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for reveal presentation multiplexing."},"documentation":"Configuration for reveal presentation multiplexing.","$id":"quarto-resource-document-reveal-tools-multiplex"},"quarto-resource-document-reveal-tools-scroll-view":{"_internalId":5302,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5301,"type":"object","description":"be an object","properties":{"activate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Activate scroll view by default for the presentation. Otherwise, it is manually avalaible by adding `?view=scroll` to url."},"documentation":"Activate scroll view by default for the presentation. Otherwise, it\nis manually avalaible by adding ?view=scroll to url."},"progress":{"_internalId":5292,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5291,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'auto'","tags":{"description":"Show the scrollbar while scrolling, hide while idle (default `auto`). Set to 'true' to always show, `false` to always hide."},"documentation":"Show the scrollbar while scrolling, hide while idle (default\nauto). Set to ‘true’ to always show, false to\nalways hide."},"snap":{"_internalId":5295,"type":"enum","enum":["mandatory","proximity",false],"description":"be one of: `mandatory`, `proximity`, `false`","completions":["mandatory","proximity","false"],"exhaustiveCompletions":true,"tags":{"description":"When scrolling, it will automatically snap to the closest slide. Only snap when close to the top of a slide using `proximity`. Disable snapping altogether by setting to `false`.\n"},"documentation":"When scrolling, it will automatically snap to the closest slide. Only\nsnap when close to the top of a slide using proximity.\nDisable snapping altogether by setting to false."},"layout":{"_internalId":5298,"type":"enum","enum":["compact","full"],"description":"be one of: `compact`, `full`","completions":["compact","full"],"exhaustiveCompletions":true,"tags":{"description":"By default each slide will be sized to be as tall as the viewport. If you prefer a more dense layout with multiple slides visible in parallel, set to `compact`.\n"},"documentation":"By default each slide will be sized to be as tall as the viewport. If\nyou prefer a more dense layout with multiple slides visible in parallel,\nset to compact."},"activation-width":{"type":"number","description":"be a number","tags":{"description":"Control scroll view activation width. The scroll view is automatically unable when the viewport reaches mobile widths. Set to `0` to disable automatic scroll view.\n"},"documentation":"Control scroll view activation width. The scroll view is\nautomatically unable when the viewport reaches mobile widths. Set to\n0 to disable automatic scroll view."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention activate,progress,snap,layout,activation-width","type":"string","pattern":"(?!(^activation_width$|^activationWidth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Control the scroll view feature of Revealjs"},"documentation":"Control the scroll view feature of Revealjs","$id":"quarto-resource-document-reveal-tools-scroll-view"},"quarto-resource-document-reveal-transitions-transition":{"_internalId":5305,"type":"enum","enum":["none","fade","slide","convex","concave","zoom"],"description":"be one of: `none`, `fade`, `slide`, `convex`, `concave`, `zoom`","completions":["none","fade","slide","convex","concave","zoom"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Transition style for slides","long":"Transition style for slides backgrounds.\n(`none`, `fade`, `slide`, `convex`, `concave`, or `zoom`)\n"}},"documentation":"Transition style for slides","$id":"quarto-resource-document-reveal-transitions-transition"},"quarto-resource-document-reveal-transitions-transition-speed":{"_internalId":5308,"type":"enum","enum":["default","fast","slow"],"description":"be one of: `default`, `fast`, `slow`","completions":["default","fast","slow"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Slide transition speed (`default`, `fast`, or `slow`)"},"documentation":"Slide transition speed (default, fast, or\nslow)","$id":"quarto-resource-document-reveal-transitions-transition-speed"},"quarto-resource-document-reveal-transitions-background-transition":{"_internalId":5311,"type":"enum","enum":["none","fade","slide","convex","concave","zoom"],"description":"be one of: `none`, `fade`, `slide`, `convex`, `concave`, `zoom`","completions":["none","fade","slide","convex","concave","zoom"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Transition style for full page slide backgrounds","long":"Transition style for full page slide backgrounds.\n(`none`, `fade`, `slide`, `convex`, `concave`, or `zoom`)\n"}},"documentation":"Transition style for full page slide backgrounds","$id":"quarto-resource-document-reveal-transitions-background-transition"},"quarto-resource-document-reveal-transitions-fragments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Turns fragments on and off globally"},"documentation":"Turns fragments on and off globally","$id":"quarto-resource-document-reveal-transitions-fragments"},"quarto-resource-document-reveal-transitions-auto-animate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Globally enable/disable auto-animate (enabled by default)"},"documentation":"Globally enable/disable auto-animate (enabled by default)","$id":"quarto-resource-document-reveal-transitions-auto-animate"},"quarto-resource-document-reveal-transitions-auto-animate-easing":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":{"short":"Default CSS easing function for auto-animation","long":"Default CSS easing function for auto-animation.\nCan be overridden per-slide or per-element via attributes.\n"}},"documentation":"Default CSS easing function for auto-animation","$id":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"quarto-resource-document-reveal-transitions-auto-animate-duration":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":{"short":"Duration (in seconds) of auto-animate transition","long":"Duration (in seconds) of auto-animate transition.\nCan be overridden per-slide or per-element via attributes.\n"}},"documentation":"Duration (in seconds) of auto-animate transition","$id":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"quarto-resource-document-reveal-transitions-auto-animate-unmatched":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Auto-animate unmatched elements.","long":"Auto-animate unmatched elements.\nCan be overridden per-slide or per-element via attributes.\n"}},"documentation":"Auto-animate unmatched elements.","$id":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"quarto-resource-document-reveal-transitions-auto-animate-styles":{"_internalId":5327,"type":"array","description":"be an array of values, where each element must be one of: `opacity`, `color`, `background-color`, `padding`, `font-size`, `line-height`, `letter-spacing`, `border-width`, `border-color`, `border-radius`, `outline`, `outline-offset`","items":{"_internalId":5326,"type":"enum","enum":["opacity","color","background-color","padding","font-size","line-height","letter-spacing","border-width","border-color","border-radius","outline","outline-offset"],"description":"be one of: `opacity`, `color`, `background-color`, `padding`, `font-size`, `line-height`, `letter-spacing`, `border-width`, `border-color`, `border-radius`, `outline`, `outline-offset`","completions":["opacity","color","background-color","padding","font-size","line-height","letter-spacing","border-width","border-color","border-radius","outline","outline-offset"],"exhaustiveCompletions":true},"tags":{"formats":["revealjs"],"description":{"short":"CSS properties that can be auto-animated (positional styles like top, left, etc.\nare always animated).\n"}},"documentation":"CSS properties that can be auto-animated (positional styles like top,\nleft, etc. are always animated).","$id":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"quarto-resource-document-slides-incremental":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pptx","beamer","$html-pres"],"description":"Make list items in slide shows display incrementally (one by one). \nThe default is for lists to be displayed all at once.\n"},"documentation":"Make list items in slide shows display incrementally (one by one).\nThe default is for lists to be displayed all at once.","$id":"quarto-resource-document-slides-incremental"},"quarto-resource-document-slides-slide-level":{"type":"number","description":"be a number","tags":{"formats":["pptx","beamer","$html-pres"],"description":{"short":"Specifies that headings with the specified level create slides.\nHeadings above this level in the hierarchy are used to divide \nthe slide show into sections.\n","long":"Specifies that headings with the specified level create slides.\nHeadings above this level in the hierarchy are used to divide \nthe slide show into sections; headings below this level create \nsubheads within a slide. Valid values are 0-6. If a slide level\nof 0 is specified, slides will not be split automatically on \nheadings, and horizontal rules must be used to indicate slide \nboundaries. If a slide level is not specified explicitly, the\nslide level will be set automatically based on the contents of\nthe document\n"}},"documentation":"Specifies that headings with the specified level create slides.\nHeadings above this level in the hierarchy are used to divide the slide\nshow into sections.","$id":"quarto-resource-document-slides-slide-level"},"quarto-resource-document-slides-slide-number":{"_internalId":5339,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5338,"type":"enum","enum":["h.v","h/v","c","c/t"],"description":"be one of: `h.v`, `h/v`, `c`, `c/t`","completions":["h.v","h/v","c","c/t"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `h.v`, `h/v`, `c`, `c/t`","tags":{"formats":["revealjs"],"description":{"short":"Display the page number of the current slide","long":"Display the page number of the current slide\n\n- `true`: Show slide number\n- `false`: Hide slide number\n\nCan optionally be set as a string that specifies the number formatting:\n\n- `h.v`: Horizontal . vertical slide number\n- `h/v`: Horizontal / vertical slide number\n- `c`: Flattened slide number\n- `c/t`: Flattened slide number / total slides (default)\n"}},"documentation":"Display the page number of the current slide","$id":"quarto-resource-document-slides-slide-number"},"quarto-resource-document-slides-show-slide-number":{"_internalId":5342,"type":"enum","enum":["all","print","speaker"],"description":"be one of: `all`, `print`, `speaker`","completions":["all","print","speaker"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Contexts in which the slide number appears (`all`, `print`, or `speaker`)"},"documentation":"Contexts in which the slide number appears (all,\nprint, or speaker)","$id":"quarto-resource-document-slides-show-slide-number"},"quarto-resource-document-slides-title-slide-attributes":{"_internalId":5357,"type":"object","description":"be an object","properties":{"data-background-color":{"type":"string","description":"be a string","tags":{"description":"CSS color for title slide background"},"documentation":"CSS color for title slide background"},"data-background-image":{"type":"string","description":"be a string","tags":{"description":"URL or path to the background image."},"documentation":"URL or path to the background image."},"data-background-size":{"type":"string","description":"be a string","tags":{"description":"CSS background size (defaults to `cover`)"},"documentation":"CSS background size (defaults to cover)"},"data-background-position":{"type":"string","description":"be a string","tags":{"description":"CSS background position (defaults to `center`)"},"documentation":"CSS background position (defaults to center)"},"data-background-repeat":{"type":"string","description":"be a string","tags":{"description":"CSS background repeat (defaults to `no-repeat`)"},"documentation":"CSS background repeat (defaults to no-repeat)"},"data-background-opacity":{"type":"string","description":"be a string","tags":{"description":"Opacity of the background image on a 0-1 scale. \n0 is transparent and 1 is fully opaque.\n"},"documentation":"Opacity of the background image on a 0-1 scale. 0 is transparent and\n1 is fully opaque."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention data-background-color,data-background-image,data-background-size,data-background-position,data-background-repeat,data-background-opacity","type":"string","pattern":"(?!(^data_background_color$|^dataBackgroundColor$|^data_background_image$|^dataBackgroundImage$|^data_background_size$|^dataBackgroundSize$|^data_background_position$|^dataBackgroundPosition$|^data_background_repeat$|^dataBackgroundRepeat$|^data_background_opacity$|^dataBackgroundOpacity$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true,"formats":["revealjs"],"description":{"short":"Additional attributes for the title slide of a reveal.js presentation.","long":"Additional attributes for the title slide of a reveal.js presentation as a map of \nattribute names and values. For example\n\n```yaml\n title-slide-attributes:\n data-background-image: /path/to/title_image.png\n data-background-size: contain \n```\n\n(Note that the data- prefix is required here, as it isn’t added automatically.)\n"}},"documentation":"Additional attributes for the title slide of a reveal.js\npresentation.","$id":"quarto-resource-document-slides-title-slide-attributes"},"quarto-resource-document-slides-title-slide-style":{"_internalId":5360,"type":"enum","enum":["pandoc","default"],"description":"be one of: `pandoc`, `default`","completions":["pandoc","default"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"The title slide style. Use `pandoc` to select the Pandoc default title slide style."},"documentation":"The title slide style. Use pandoc to select the Pandoc\ndefault title slide style.","$id":"quarto-resource-document-slides-title-slide-style"},"quarto-resource-document-slides-center-title-slide":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Vertical centering of title slide"},"documentation":"Vertical centering of title slide","$id":"quarto-resource-document-slides-center-title-slide"},"quarto-resource-document-slides-show-notes":{"_internalId":5370,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5369,"type":"enum","enum":["separate-page"],"description":"be 'separate-page'","completions":["separate-page"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'separate-page'","tags":{"formats":["revealjs"],"description":"Make speaker notes visible to all viewers\n"},"documentation":"Make speaker notes visible to all viewers","$id":"quarto-resource-document-slides-show-notes"},"quarto-resource-document-slides-rtl":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Change the presentation direction to be RTL\n"},"documentation":"Change the presentation direction to be RTL","$id":"quarto-resource-document-slides-rtl"},"quarto-resource-document-tables-df-print":{"_internalId":5375,"type":"enum","enum":["default","kable","tibble","paged"],"description":"be one of: `default`, `kable`, `tibble`, `paged`","completions":["default","kable","tibble","paged"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Method used to print tables in Knitr engine documents (`default`,\n`kable`, `tibble`, or `paged`). Uses `default` if not specified.\n","long":"Method used to print tables in Knitr engine documents:\n\n- `default`: Use the default S3 method for the data frame.\n- `kable`: Markdown table using the `knitr::kable()` function.\n- `tibble`: Plain text table using the `tibble` package.\n- `paged`: HTML table with paging for row and column overflow.\n\nThe default printing method is `kable`.\n"}},"documentation":"Method used to print tables in Knitr engine documents\n(default, kable, tibble, or\npaged). Uses default if not specified.","$id":"quarto-resource-document-tables-df-print"},"quarto-resource-document-text-wrap":{"_internalId":5378,"type":"enum","enum":["auto","none","preserve"],"description":"be one of: `auto`, `none`, `preserve`","completions":["auto","none","preserve"],"exhaustiveCompletions":true,"tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Determine how text is wrapped in the output (`auto`, `none`, or `preserve`).","long":"Determine how text is wrapped in the output (the source code, not the rendered\nversion). \n\n- `auto` (default): Pandoc will attempt to wrap lines to the column width specified by `columns` (default 72). \n- `none`: Pandoc will not wrap lines at all. \n- `preserve`: Pandoc will attempt to preserve the wrapping from the source\n document. Where there are nonsemantic newlines in the source, there will be\n nonsemantic newlines in the output as well.\n"}},"documentation":"Determine how text is wrapped in the output (auto,\nnone, or preserve).","$id":"quarto-resource-document-text-wrap"},"quarto-resource-document-text-columns":{"type":"number","description":"be a number","tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all","typst"],"description":{"short":"For text formats, specify length of lines in characters. For `typst`, number of columns for body text.","long":"Specify length of lines in characters. This affects text wrapping in generated source\ncode (see `wrap`). It also affects calculation of column widths for plain text\ntables. \n\nFor `typst`, number of columns for body text.\n"}},"documentation":"For text formats, specify length of lines in characters. For\ntypst, number of columns for body text.","$id":"quarto-resource-document-text-columns"},"quarto-resource-document-text-tab-stop":{"type":"number","description":"be a number","tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Specify the number of spaces per tab (default is 4).","long":"Specify the number of spaces per tab (default is 4). Note that tabs\nwithin normal textual input are always converted to spaces. Tabs \nwithin code are also converted, however this can be disabled with\n`preserve-tabs: false`.\n"}},"documentation":"Specify the number of spaces per tab (default is 4).","$id":"quarto-resource-document-text-tab-stop"},"quarto-resource-document-text-preserve-tabs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Preserve tabs within code instead of converting them to spaces.\n","long":"Preserve tabs within code instead of converting them to spaces.\n(By default, pandoc converts tabs to spaces before parsing its input.) \nNote that this will only affect tabs in literal code spans and code blocks. \nTabs in regular text are always treated as spaces.\n"}},"documentation":"Preserve tabs within code instead of converting them to spaces.","$id":"quarto-resource-document-text-preserve-tabs"},"quarto-resource-document-text-eol":{"_internalId":5387,"type":"enum","enum":["lf","crlf","native"],"description":"be one of: `lf`, `crlf`, `native`","completions":["lf","crlf","native"],"exhaustiveCompletions":true,"tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Manually specify line endings (`lf`, `crlf`, or `native`).","long":"Manually specify line endings: \n\n- `crlf`: Use Windows line endings\n- `lf`: Use macOS/Linux/UNIX line endings\n- `native` (default): Use line endings appropriate to the OS on which pandoc is being run).\n"}},"documentation":"Manually specify line endings (lf, crlf, or\nnative).","$id":"quarto-resource-document-text-eol"},"quarto-resource-document-text-strip-comments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all","textile","$html-files"],"description":{"short":"Strip out HTML comments in source, rather than passing them on to output.","long":"Strip out HTML comments in the Markdown source,\nrather than passing them on to Markdown, Textile or HTML\noutput as raw HTML. This does not apply to HTML comments\ninside raw HTML blocks when the `markdown_in_html_blocks`\nextension is not set.\n"}},"documentation":"Strip out HTML comments in source, rather than passing them on to\noutput.","$id":"quarto-resource-document-text-strip-comments"},"quarto-resource-document-text-ascii":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-all","$pdf-all","$markdown-all","ms"],"description":{"short":"Use only ASCII characters in output.","long":"Use only ASCII characters in output. Currently supported for XML\nand HTML formats (which use entities instead of UTF-8 when this\noption is selected), CommonMark, gfm, and Markdown (which use\nentities), roff ms (which use hexadecimal escapes), and to a\nlimited degree LaTeX (which uses standard commands for accented\ncharacters when possible). roff man output uses ASCII by default.\n"}},"documentation":"Use only ASCII characters in output.","$id":"quarto-resource-document-text-ascii"},"quarto-resource-document-toc-toc":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["!man","!$docbook-all","!$jats-all"],"description":{"short":"Include an automatically generated table of contents","long":"Include an automatically generated table of contents (or, in\nthe case of `latex`, `context`, `docx`, `odt`,\n`opendocument`, `rst`, or `ms`, an instruction to create\none) in the output document.\n\nNote that if you are producing a PDF via `ms`, the table\nof contents will appear at the beginning of the\ndocument, before the title. If you would prefer it to\nbe at the end of the document, use the option\n`pdf-engine-opt: --no-toc-relocation`.\n"}},"documentation":"Include an automatically generated table of contents","$id":"quarto-resource-document-toc-toc"},"quarto-resource-document-toc-table-of-contents":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["!man","!$docbook-all","!$jats-all"],"description":{"short":"Include an automatically generated table of contents","long":"Include an automatically generated table of contents (or, in\nthe case of `latex`, `context`, `docx`, `odt`,\n`opendocument`, `rst`, or `ms`, an instruction to create\none) in the output document.\n\nNote that if you are producing a PDF via `ms`, the table\nof contents will appear at the beginning of the\ndocument, before the title. If you would prefer it to\nbe at the end of the document, use the option\n`pdf-engine-opt: --no-toc-relocation`.\n"}},"documentation":"Include an automatically generated table of contents","$id":"quarto-resource-document-toc-table-of-contents"},"quarto-resource-document-toc-toc-indent":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":"The amount of indentation to use for each level of the table of contents.\nThe default is \"1.5em\".\n"},"documentation":"The amount of indentation to use for each level of the table of\ncontents. The default is “1.5em”.","$id":"quarto-resource-document-toc-toc-indent"},"quarto-resource-document-toc-toc-depth":{"type":"number","description":"be a number","tags":{"formats":["!man","!$docbook-all","!$jats-all","!beamer"],"description":"Specify the number of section levels to include in the table of contents.\nThe default is 3\n"},"documentation":"Specify the number of section levels to include in the table of\ncontents. The default is 3","$id":"quarto-resource-document-toc-toc-depth"},"quarto-resource-document-toc-toc-location":{"_internalId":5400,"type":"enum","enum":["body","left","right","left-body","right-body"],"description":"be one of: `body`, `left`, `right`, `left-body`, `right-body`","completions":["body","left","right","left-body","right-body"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Location for table of contents (`body`, `left`, `right` (default), `left-body`, `right-body`).\n","long":"Location for table of contents:\n\n- `body`: Show the Table of Contents in the center body of the document. \n- `left`: Show the Table of Contents in left margin of the document.\n- `right`(default): Show the Table of Contents in right margin of the document.\n- `left-body`: Show two Tables of Contents in both the center body and the left margin of the document.\n- `right-body`: Show two Tables of Contents in both the center body and the right margin of the document.\n"}},"documentation":"Location for table of contents (body, left,\nright (default), left-body,\nright-body).","$id":"quarto-resource-document-toc-toc-location"},"quarto-resource-document-toc-toc-title":{"type":"string","description":"be a string","tags":{"formats":["$epub-all","$odt-all","$office-all","$pdf-all","$html-doc","revealjs"],"description":"The title used for the table of contents."},"documentation":"The title used for the table of contents.","$id":"quarto-resource-document-toc-toc-title"},"quarto-resource-document-toc-toc-expand":{"_internalId":5409,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a number, `true` or `false`","tags":{"formats":["$html-doc"],"description":"Specifies the depth of items in the table of contents that should be displayed as expanded in HTML output. Use `true` to expand all or `false` to collapse all.\n"},"documentation":"Specifies the depth of items in the table of contents that should be\ndisplayed as expanded in HTML output. Use true to expand\nall or false to collapse all.","$id":"quarto-resource-document-toc-toc-expand"},"quarto-resource-document-toc-lof":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","typst"],"description":"Print a list of figures in the document."},"documentation":"Print a list of figures in the document.","$id":"quarto-resource-document-toc-lof"},"quarto-resource-document-toc-lot":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","typst"],"description":"Print a list of tables in the document."},"documentation":"Print a list of tables in the document.","$id":"quarto-resource-document-toc-lot"},"quarto-resource-document-website-search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Setting this to false prevents this document from being included in searches."},"documentation":"Setting this to false prevents this document from being included in\nsearches.","$id":"quarto-resource-document-website-search"},"quarto-resource-document-website-repo-actions":{"_internalId":5427,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5426,"type":"anyOf","anyOf":[{"_internalId":5424,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Links to source repository actions"},{"_internalId":5425,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":5424,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Links to source repository actions"}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"formats":["$html-doc"],"description":"Setting this to false prevents the `repo-actions` from appearing on this page.\nOther possible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.\n"},"documentation":"Setting this to false prevents the repo-actions from\nappearing on this page. Other possible values are none or\none or more of edit, source, and\nissue, e.g.\n[edit, source, issue].","$id":"quarto-resource-document-website-repo-actions"},"quarto-resource-document-website-aliases":{"_internalId":5432,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$html-doc"],"description":"URLs that alias this document, when included in a website."},"documentation":"URLs that alias this document, when included in a website.","$id":"quarto-resource-document-website-aliases"},"quarto-resource-document-website-image":{"_internalId":5439,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc"],"description":{"short":"The path to a preview image for this document.","long":"The path to a preview image for this content. By default, \nQuarto will use the image value from the site: metadata. \nIf you provide an image, you may also optionally provide \nan image-width and image-height to improve \nthe appearance of your Twitter Card.\n\nIf image is not provided, Quarto will automatically attempt \nto locate a preview image.\n"}},"documentation":"The path to a preview image for this document.","$id":"quarto-resource-document-website-image"},"quarto-resource-document-website-image-height":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The height of the preview image for this document."},"documentation":"The height of the preview image for this document.","$id":"quarto-resource-document-website-image-height"},"quarto-resource-document-website-image-width":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The width of the preview image for this document."},"documentation":"The width of the preview image for this document.","$id":"quarto-resource-document-website-image-width"},"quarto-resource-document-website-image-alt":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The alt text for preview image on this page."},"documentation":"The alt text for preview image on this page.","$id":"quarto-resource-document-website-image-alt"},"quarto-resource-document-website-image-lazy-loading":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"If true, the preview image will only load when it comes into view.","long":"Enables lazy loading for the preview image. If true, the preview image element \nwill have `loading=\"lazy\"`, and will only load when it comes into view.\n\nIf false, the preview image will load immediately.\n"}},"documentation":"If true, the preview image will only load when it comes into\nview.","$id":"quarto-resource-document-website-image-lazy-loading"},"quarto-resource-project-project":{"_internalId":5512,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string"},"type":{"type":"string","description":"be a string","completions":["default","website","book","manuscript"],"tags":{"description":"Project type (`default`, `website`, `book`, or `manuscript`)"},"documentation":"Project type (default, website,\nbook, or manuscript)"},"render":{"_internalId":5460,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Files to render (defaults to all files)"},"documentation":"Files to render (defaults to all files)"},"execute-dir":{"_internalId":5463,"type":"enum","enum":["file","project"],"description":"be one of: `file`, `project`","completions":["file","project"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Working directory for computations","long":"Control the working directory for computations. \n\n- `file`: Use the directory of the file that is currently executing.\n- `project`: Use the root directory of the project.\n"}},"documentation":"Working directory for computations"},"output-dir":{"type":"string","description":"be a string","tags":{"description":"Output directory"},"documentation":"Output directory"},"lib-dir":{"type":"string","description":"be a string","tags":{"description":"HTML library (JS/CSS/etc.) directory"},"documentation":"HTML library (JS/CSS/etc.) directory"},"resources":{"_internalId":5475,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Additional file resources to be copied to output directory"},{"_internalId":5474,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Additional file resources to be copied to output directory"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"brand":{"_internalId":5480,"type":"ref","$ref":"brand-path-only-light-dark","description":"be brand-path-only-light-dark","tags":{"description":"Path to brand.yml or object with light and dark paths to brand.yml\n"},"documentation":"Path to brand.yml or object with light and dark paths to\nbrand.yml"},"preview":{"_internalId":5485,"type":"ref","$ref":"project-preview","description":"be project-preview","tags":{"description":"Options for `quarto preview`"},"documentation":"Options for quarto preview"},"pre-render":{"_internalId":5493,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5492,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a pre-render step"},"documentation":"Scripts to run as a pre-render step"},"post-render":{"_internalId":5501,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5500,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a post-render step"},"documentation":"Scripts to run as a post-render step"},"detect":{"_internalId":5511,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":5510,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},"completions":[],"tags":{"hidden":true,"description":"Array of paths used to detect the project type within a directory"},"documentation":"Array of paths used to detect the project type within a directory"}},"patternProperties":{},"closed":true,"documentation":"Project configuration.","tags":{"description":"Project configuration."},"$id":"quarto-resource-project-project"},"quarto-resource-project-website":{"_internalId":5515,"type":"ref","$ref":"base-website","description":"be base-website","documentation":"Website configuration.","tags":{"description":"Website configuration."},"$id":"quarto-resource-project-website"},"quarto-resource-project-book":{"_internalId":1706,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Book title"},"documentation":"Book title"},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"Description metadata for HTML version of book"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"The path to the favicon for this website"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Base URL for published website"},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"Base URL for website source code repository"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"The value of the target attribute for repo links"},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"The value of the rel attribute for repo links"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"Subdirectory of repository containing website"},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"Branch of website source code (defaults to main)"},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"URL to use for the ‘report an issue’ repository action."},"repo-actions":{"_internalId":511,"type":"anyOf","anyOf":[{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Links to source repository actions"},{"_internalId":510,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Links to source repository actions"}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},"llms-txt":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Generate llms.txt and .llms.md files for LLM-friendly content consumption.\n"},"documentation":"Generate llms.txt and .llms.md files for LLM-friendly content\nconsumption."},"google-analytics":{"_internalId":537,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":536,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"The Google tracking Id or measurement Id of this website."},"storage":{"_internalId":528,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"Storage options for Google Analytics data"},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"Anonymize the user ip address."},"version":{"_internalId":535,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"The version number of Google Analytics to use."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"Enable Google Analytics for this website"},"plausible-analytics":{"_internalId":547,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":546,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Path to a file containing the Plausible Analytics script snippet"}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},"announcement":{"_internalId":577,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":576,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement"},"documentation":"The content of the announcement"},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"Whether this announcement may be dismissed by the user."},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"The icon to display in the announcement"},"position":{"_internalId":570,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"The position of the announcement."},"type":{"_internalId":575,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"Provides an announcement displayed at the top of the page."},"cookie-consent":{"_internalId":609,"type":"anyOf","anyOf":[{"_internalId":582,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":608,"type":"object","description":"be an object","properties":{"type":{"_internalId":589,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"The type of consent that should be requested"},"style":{"_internalId":592,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"The style of the consent banner that is displayed"},"palette":{"_internalId":595,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"The url to the website’s cookie or privacy policy."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"The text to display for the cookie preferences link in the website\nfooter."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"Request cookie consent before enabling scripts that set cookies"},"search":{"_internalId":696,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":695,"type":"object","description":"be an object","properties":{"location":{"_internalId":618,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"Location for search widget (navbar or\nsidebar)"},"type":{"_internalId":621,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"Type of search UI (overlay or textbox)"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Number of matches to display (defaults to 20)"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"Matches after which to collapse additional results"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"Provide button for copying search link"},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"keyboard-shortcut":{"_internalId":643,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},{"_internalId":642,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":653,"type":"anyOf","anyOf":[{"_internalId":650,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},"algolia":{"_internalId":694,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"The name of the index to use when performing a search"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"The unique ID used by Algolia to identify your application"},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"The Search-Only API key to use to connect to Algolia"},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Enable tracking of Algolia analytics events"},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},"index-fields":{"_internalId":690,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"Field that contains the URL of index entries"},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"Field that contains the title of index entries"},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Field that contains the text of index entries"},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Field that contains the section of index entries"}},"patternProperties":{},"closed":true},"params":{"_internalId":693,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"Additional parameters to pass when executing a search"}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"Use external Algolia search index"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Provide full text search for website"},"navbar":{"_internalId":750,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":749,"type":"object","description":"be an object","properties":{"title":{"_internalId":709,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified."},"documentation":"The navbar title. Uses the project title if none is specified."},"logo":{"_internalId":712,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Alternate text for the logo image."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"The navbar’s background color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"The navbar’s foreground color (named or hex color)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Include a search box in the navbar."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Always show the navbar (keeping it pinned)."},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"collapse-below":{"_internalId":729,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"left":{"_internalId":735,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":734,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"List of items for the left side of the navbar."},"right":{"_internalId":741,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":740,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"List of items for the right side of the navbar."},"toggle-position":{"_internalId":746,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"Top navigation options"},"sidebar":{"_internalId":821,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":820,"type":"anyOf","anyOf":[{"_internalId":818,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The identifier for this sidebar."},"title":{"_internalId":767,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The sidebar title. Uses the project title if none is specified."},"logo":{"_internalId":770,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Alternate text for the logo image."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Include a search control in the sidebar."},"tools":{"_internalId":782,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":781,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of sidebar tools"},"contents":{"_internalId":785,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"List of items for the sidebar"},"style":{"_internalId":788,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The style of sidebar (docked or\nfloating)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s background color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"alignment":{"_internalId":801,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"header":{"_internalId":811,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":810,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place above sidebar content (text or file path)"},"footer":{"_internalId":817,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":816,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":819,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":818,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The identifier for this sidebar."},"title":{"_internalId":767,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The sidebar title. Uses the project title if none is specified."},"logo":{"_internalId":770,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Alternate text for the logo image."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Include a search control in the sidebar."},"tools":{"_internalId":782,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":781,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of sidebar tools"},"contents":{"_internalId":785,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"List of items for the sidebar"},"style":{"_internalId":788,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The style of sidebar (docked or\nfloating)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s background color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"alignment":{"_internalId":801,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"header":{"_internalId":811,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":810,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place above sidebar content (text or file path)"},"footer":{"_internalId":817,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":816,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"Side navigation options"},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Markdown to insert below each page’s body."},"margin-header":{"_internalId":831,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":830,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"Markdown to place above margin content (text or file path)"},"margin-footer":{"_internalId":837,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":836,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"Markdown to place below margin content (text or file path)"},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"Provide next and previous article links in footer"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"Provide a ‘back to top’ navigation button"},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"page-footer":{"_internalId":851,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":850,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"Shared page footer"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"},"comments":{"_internalId":860,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":868,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":867,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Publish open graph metadata"},"twitter-card":{"_internalId":876,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":875,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"Publish twitter card metadata"},"other-links":{"_internalId":881,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"A list of other links to appear below the TOC."},"code-links":{"_internalId":891,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":890,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"A list of code links to appear with this document."},"drafts":{"_internalId":899,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":898,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"A list of input documents that should be treated as drafts"},"draft-mode":{"_internalId":904,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"How to handle drafts that are encountered."},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Book subtitle"},"author":{"_internalId":924,"type":"anyOf","anyOf":[{"_internalId":922,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":920,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Author or authors of the book"},{"_internalId":923,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":922,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":920,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Author or authors of the book"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string","tags":{"description":"Book publication date"},"documentation":"Book publication date"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Format string for dates in the book"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Book abstract"},"chapters":{"_internalId":937,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Book part and chapter files"},"appendices":{"_internalId":942,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"Book appendix files"},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"Book references file"},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"Cover image (used in HTML and ePub formats)"},"cover-image-alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for cover image (used in HTML format)"},"documentation":"Alternative text for cover image (used in HTML format)"},"sharing":{"_internalId":957,"type":"anyOf","anyOf":[{"_internalId":955,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},{"_internalId":956,"type":"array","description":"be an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","items":{"_internalId":955,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"}}],"description":"be at least one of: one of: `twitter`, `facebook`, `linkedin`, an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","tags":{"complete-from":["anyOf",0]}},"downloads":{"_internalId":964,"type":"anyOf","anyOf":[{"_internalId":962,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},{"_internalId":963,"type":"array","description":"be an array of values, where each element must be one of: `pdf`, `epub`, `docx`","items":{"_internalId":962,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"}}],"description":"be at least one of: one of: `pdf`, `epub`, `docx`, an array of values, where each element must be one of: `pdf`, `epub`, `docx`","tags":{"complete-from":["anyOf",0]}},"tools":{"_internalId":970,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":969,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Custom tools for navbar or sidebar"},"documentation":"Custom tools for navbar or sidebar"},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"The Digital Object Identifier for this book."},"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"A url to the abstract for this item."},"accessed":{"_internalId":1415,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Date the item has been accessed."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Archive storing the item"},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Collection the item is part of within an archive."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Geographic location of the archive."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"available-date":{"_internalId":1438,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Date the item was initially available"},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Call number (to locate the item in a library)."},"chair":{"_internalId":1443,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"chapter-number":{"_internalId":1446,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"citation-number":{"_internalId":1455,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor).","completions":[]},"collection-editor":{"_internalId":1458,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"collection-number":{"_internalId":1461,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"compiler":{"_internalId":1466,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"composer":{"_internalId":1469,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Composer (e.g. of a musical score)."},"container-author":{"_internalId":1472,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Title of the container holding the item."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Short/abbreviated form of container-title;","completions":[]},"contributor":{"_internalId":1479,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"curator":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"director":{"_internalId":1487,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Director (e.g. of a film)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1496,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"editor":{"_internalId":1499,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"The editor of the item."},"editorial-director":{"_internalId":1502,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"editor-translator":{"_internalId":1505,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Combined editor and translator of a work."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1512,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Date the event related to an item took place."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"executive-producer":{"_internalId":1519,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Executive producer of the item (e.g. of a television series)."},"first-reference-note-number":{"_internalId":1524,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"A url to the full text for this item."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Type, class, or subtype of the item"},"guest":{"_internalId":1531,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Guest (e.g. on a TV show or podcast)."},"host":{"_internalId":1534,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"id":{"_internalId":1541,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"A value which uniquely identifies this item."},"documentation":"A value which uniquely identifies this item."},"illustrator":{"_internalId":1544,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"interviewer":{"_internalId":1547,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"Interviewer (e.g. of an interview)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"International Standard Serial Number."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1562,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Issue number of the item or container holding the item"},"issued":{"_internalId":1565,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Date the item was issued/published."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Keyword(s) or tag(s) attached to the item."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The language of the item (used only for citation of the item)."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"The license information applicable to an item."},"locator":{"_internalId":1576,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"A cite-specific pinpointer within the item."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"narrator":{"_internalId":1581,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Narrator (e.g. of an audio book)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"number":{"_internalId":1586,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Number identifying the item (e.g. a report number)."},"number-of-pages":{"_internalId":1589,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Total number of pages of the cited item."},"number-of-volumes":{"_internalId":1592,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"organizer":{"_internalId":1595,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"original-author":{"_internalId":1598,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"The original creator of a work."},"original-date":{"_internalId":1601,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Issue date of the original version."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"page":{"_internalId":1610,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"page-first":{"_internalId":1613,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-last":{"_internalId":1616,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"part-number":{"_internalId":1619,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Title of the specific part of an item being cited."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"A url to the pdf for this item."},"performer":{"_internalId":1626,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"PubMed Central reference number."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"PubMed reference number."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1641,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Printing number of the item or container holding the item."},"producer":{"_internalId":1644,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"A public url for this item."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"The publisher of the item."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"The geographic location of the publisher."},"recipient":{"_internalId":1653,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Recipient (e.g. of a letter)."},"reviewed-author":{"_internalId":1656,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Author of the item reviewed by the current item."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Title of the item reviewed by the current item."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Scale of e.g. a map or model."},"script-writer":{"_internalId":1665,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"section":{"_internalId":1668,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"series-creator":{"_internalId":1671,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Creator of a series (e.g. of a television series)."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"submitted":{"_internalId":1678,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"supplement-number":{"_internalId":1681,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Short/abbreviated form oftitle.","completions":[]},"translator":{"_internalId":1686,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Translator"},"type":{"_internalId":1689,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"The type\nof the item."},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1698,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"volume":{"_internalId":1701,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Title of the volume of the item or container holding the item."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Book configuration."},"documentation":"Book configuration.","$id":"quarto-resource-project-book"},"quarto-resource-project-manuscript":{"_internalId":5525,"type":"ref","$ref":"manuscript-schema","description":"be manuscript-schema","documentation":"Manuscript configuration","tags":{"description":"Manuscript configuration"},"$id":"quarto-resource-project-manuscript"},"quarto-resource-project-type":{"_internalId":5528,"type":"enum","enum":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"description":"be 'cd93424f-d5ba-4e95-91c6-1890eab59fc7'","completions":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"exhaustiveCompletions":true,"documentation":"internal-schema-hack","tags":{"description":"internal-schema-hack","hidden":true},"$id":"quarto-resource-project-type"},"quarto-resource-project-engines":{"_internalId":5539,"type":"array","description":"be an array of values, where each element must be at least one of: a string, external-engine","items":{"_internalId":5538,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5537,"type":"ref","$ref":"external-engine","description":"be external-engine"}],"description":"be at least one of: a string, external-engine"},"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’.","tags":{"description":"List execution engines you want to give priority when determining which engine should render a notebook. If two engines have support for a notebook, the one listed earlier will be chosen. Quarto's default order is 'knitr', 'jupyter', 'markdown', 'julia'."},"$id":"quarto-resource-project-engines"},"quarto-resource-document-a11y-axe":{"_internalId":5550,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5549,"type":"object","description":"be an object","properties":{"output":{"_internalId":5548,"type":"enum","enum":["json","console","document"],"description":"be one of: `json`, `console`, `document`","completions":["json","console","document"],"exhaustiveCompletions":true,"tags":{"description":"If set, output axe-core results on console. `json`: produce structured output; `console`: print output to javascript console; `document`: produce a visual report of violations in the document itself."},"documentation":"If set, output axe-core results on console. json:\nproduce structured output; console: print output to\njavascript console; document: produce a visual report of\nviolations in the document itself."}},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["$html-files"],"description":"When defined, run axe-core accessibility tests on the document."},"documentation":"When defined, run axe-core accessibility tests on the document.","$id":"quarto-resource-document-a11y-axe"},"quarto-resource-document-typst-logo":{"_internalId":5553,"type":"ref","$ref":"logo-light-dark-specifier-path-optional","description":"be logo-light-dark-specifier-path-optional","tags":{"formats":["typst"],"description":"The logo image."},"documentation":"The logo image.","$id":"quarto-resource-document-typst-logo"},"quarto-resource-document-typst-margin-geometry":{"_internalId":5564,"type":"object","description":"be an object","properties":{"inner":{"_internalId":5558,"type":"ref","$ref":"marginalia-side-geometry","description":"be marginalia-side-geometry","tags":{"description":"Inner (left) margin geometry."},"documentation":"Inner (left) margin geometry."},"outer":{"_internalId":5561,"type":"ref","$ref":"marginalia-side-geometry","description":"be marginalia-side-geometry","tags":{"description":"Outer (right) margin geometry."},"documentation":"Outer (right) margin geometry."},"clearance":{"type":"string","description":"be a string","tags":{"description":"Minimum vertical spacing between margin notes (default: 8pt)."},"documentation":"Minimum vertical spacing between margin notes (default: 8pt)."}},"patternProperties":{},"closed":true,"tags":{"formats":["typst"],"description":{"short":"Advanced geometry settings for Typst margin layout.","long":"Fine-grained control over marginalia package geometry. Most users should\nuse `margin` and `grid` options instead; these values are computed automatically.\n\nUser-specified values override the computed defaults.\n"}},"documentation":"Advanced geometry settings for Typst margin layout.","$id":"quarto-resource-document-typst-margin-geometry"},"quarto-resource-document-typst-theorem-appearance":{"_internalId":5567,"type":"enum","enum":["simple","fancy","clouds","rainbow"],"description":"be one of: `simple`, `fancy`, `clouds`, `rainbow`","completions":["simple","fancy","clouds","rainbow"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":{"short":"Visual style for theorem environments in Typst output.","long":"Controls how theorems, lemmas, definitions, etc. are rendered:\n\n- `simple`: Plain text with bold title and italic body (default)\n- `fancy`: Colored boxes using brand colors\n- `clouds`: Rounded colored background boxes\n- `rainbow`: Colored left border with colored title\n"}},"documentation":"Visual style for theorem environments in Typst output.","$id":"quarto-resource-document-typst-theorem-appearance"},"quarto-resource-document-email-email-version":{"_internalId":5570,"type":"enum","enum":[1,2],"description":"be one of: `1`, `2`","completions":["1","2"],"exhaustiveCompletions":true,"tags":{"formats":["email"],"description":{"short":"Email format version","long":"Specifies which email format version to use.\n\n- `1`: Legacy email format with document-level metadata (compatible with older Connect versions)\n- `2`: New email format with multiple individual emails and v2 markers (requires Posit Connect 2026.03 or later)\n"}},"documentation":"Email format version","$id":"quarto-resource-document-email-email-version"},"front-matter-execute":{"_internalId":5594,"type":"object","description":"be an object","properties":{"eval":{"_internalId":5571,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":5572,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":5573,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":5574,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":5575,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":5576,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"engine":{"_internalId":5577,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":5578,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":5579,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":5580,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":5581,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":5582,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":5583,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":5584,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":5585,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":5586,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":5587,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":5588,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"keep-md":{"_internalId":5589,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":5590,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":5591,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":5592,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":5593,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected","type":"string","pattern":"(?!(^daemon_restart$|^daemonRestart$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"front-matter-execute"},"front-matter-format":{"_internalId":216213,"type":"anyOf","anyOf":[{"_internalId":216209,"type":"anyOf","anyOf":[{"_internalId":216129,"type":"string","pattern":"^(.+-)?ansi([-+].+)?$","description":"be 'ansi'","completions":["ansi"]},{"_internalId":216130,"type":"string","pattern":"^(.+-)?asciidoc([-+].+)?$","description":"be 'asciidoc'","completions":["asciidoc"]},{"_internalId":216131,"type":"string","pattern":"^(.+-)?asciidoc_legacy([-+].+)?$","description":"be 'asciidoc_legacy'","completions":["asciidoc_legacy"]},{"_internalId":216132,"type":"string","pattern":"^(.+-)?asciidoctor([-+].+)?$","description":"be 'asciidoctor'","completions":["asciidoctor"]},{"_internalId":216133,"type":"string","pattern":"^(.+-)?bbcode([-+].+)?$","description":"be 'bbcode'","completions":["bbcode"]},{"_internalId":216134,"type":"string","pattern":"^(.+-)?bbcode_fluxbb([-+].+)?$","description":"be 'bbcode_fluxbb'","completions":["bbcode_fluxbb"]},{"_internalId":216135,"type":"string","pattern":"^(.+-)?bbcode_hubzilla([-+].+)?$","description":"be 'bbcode_hubzilla'","completions":["bbcode_hubzilla"]},{"_internalId":216136,"type":"string","pattern":"^(.+-)?bbcode_phpbb([-+].+)?$","description":"be 'bbcode_phpbb'","completions":["bbcode_phpbb"]},{"_internalId":216137,"type":"string","pattern":"^(.+-)?bbcode_steam([-+].+)?$","description":"be 'bbcode_steam'","completions":["bbcode_steam"]},{"_internalId":216138,"type":"string","pattern":"^(.+-)?bbcode_xenforo([-+].+)?$","description":"be 'bbcode_xenforo'","completions":["bbcode_xenforo"]},{"_internalId":216139,"type":"string","pattern":"^(.+-)?beamer([-+].+)?$","description":"be 'beamer'","completions":["beamer"]},{"_internalId":216140,"type":"string","pattern":"^(.+-)?biblatex([-+].+)?$","description":"be 'biblatex'","completions":["biblatex"]},{"_internalId":216141,"type":"string","pattern":"^(.+-)?bibtex([-+].+)?$","description":"be 'bibtex'","completions":["bibtex"]},{"_internalId":216142,"type":"string","pattern":"^(.+-)?chunkedhtml([-+].+)?$","description":"be 'chunkedhtml'","completions":["chunkedhtml"]},{"_internalId":216143,"type":"string","pattern":"^(.+-)?commonmark([-+].+)?$","description":"be 'commonmark'","completions":["commonmark"]},{"_internalId":216144,"type":"string","pattern":"^(.+-)?commonmark_x([-+].+)?$","description":"be 'commonmark_x'","completions":["commonmark_x"]},{"_internalId":216145,"type":"string","pattern":"^(.+-)?context([-+].+)?$","description":"be 'context'","completions":["context"]},{"_internalId":216146,"type":"string","pattern":"^(.+-)?csljson([-+].+)?$","description":"be 'csljson'","completions":["csljson"]},{"_internalId":216147,"type":"string","pattern":"^(.+-)?djot([-+].+)?$","description":"be 'djot'","completions":["djot"]},{"_internalId":216148,"type":"string","pattern":"^(.+-)?docbook([-+].+)?$","description":"be 'docbook'","completions":["docbook"]},{"_internalId":216149,"type":"string","pattern":"^(.+-)?docbook4([-+].+)?$","description":"be 'docbook4'"},{"_internalId":216150,"type":"string","pattern":"^(.+-)?docbook5([-+].+)?$","description":"be 'docbook5'"},{"_internalId":216151,"type":"string","pattern":"^(.+-)?docx([-+].+)?$","description":"be 'docx'","completions":["docx"]},{"_internalId":216152,"type":"string","pattern":"^(.+-)?dokuwiki([-+].+)?$","description":"be 'dokuwiki'","completions":["dokuwiki"]},{"_internalId":216153,"type":"string","pattern":"^(.+-)?dzslides([-+].+)?$","description":"be 'dzslides'","completions":["dzslides"]},{"_internalId":216154,"type":"string","pattern":"^(.+-)?epub([-+].+)?$","description":"be 'epub'","completions":["epub"]},{"_internalId":216155,"type":"string","pattern":"^(.+-)?epub2([-+].+)?$","description":"be 'epub2'"},{"_internalId":216156,"type":"string","pattern":"^(.+-)?epub3([-+].+)?$","description":"be 'epub3'"},{"_internalId":216157,"type":"string","pattern":"^(.+-)?fb2([-+].+)?$","description":"be 'fb2'","completions":["fb2"]},{"_internalId":216158,"type":"string","pattern":"^(.+-)?gfm([-+].+)?$","description":"be 'gfm'","completions":["gfm"]},{"_internalId":216159,"type":"string","pattern":"^(.+-)?haddock([-+].+)?$","description":"be 'haddock'","completions":["haddock"]},{"_internalId":216160,"type":"string","pattern":"^(.+-)?html([-+].+)?$","description":"be 'html'","completions":["html"]},{"_internalId":216161,"type":"string","pattern":"^(.+-)?html4([-+].+)?$","description":"be 'html4'"},{"_internalId":216162,"type":"string","pattern":"^(.+-)?html5([-+].+)?$","description":"be 'html5'"},{"_internalId":216163,"type":"string","pattern":"^(.+-)?icml([-+].+)?$","description":"be 'icml'","completions":["icml"]},{"_internalId":216164,"type":"string","pattern":"^(.+-)?ipynb([-+].+)?$","description":"be 'ipynb'","completions":["ipynb"]},{"_internalId":216165,"type":"string","pattern":"^(.+-)?jats([-+].+)?$","description":"be 'jats'","completions":["jats"]},{"_internalId":216166,"type":"string","pattern":"^(.+-)?jats_archiving([-+].+)?$","description":"be 'jats_archiving'","completions":["jats_archiving"]},{"_internalId":216167,"type":"string","pattern":"^(.+-)?jats_articleauthoring([-+].+)?$","description":"be 'jats_articleauthoring'","completions":["jats_articleauthoring"]},{"_internalId":216168,"type":"string","pattern":"^(.+-)?jats_publishing([-+].+)?$","description":"be 'jats_publishing'","completions":["jats_publishing"]},{"_internalId":216169,"type":"string","pattern":"^(.+-)?jira([-+].+)?$","description":"be 'jira'","completions":["jira"]},{"_internalId":216170,"type":"string","pattern":"^(.+-)?json([-+].+)?$","description":"be 'json'","completions":["json"]},{"_internalId":216171,"type":"string","pattern":"^(.+-)?latex([-+].+)?$","description":"be 'latex'","completions":["latex"]},{"_internalId":216172,"type":"string","pattern":"^(.+-)?man([-+].+)?$","description":"be 'man'","completions":["man"]},{"_internalId":216173,"type":"string","pattern":"^(.+-)?markdown([-+].+)?$","description":"be 'markdown'","completions":["markdown"]},{"_internalId":216174,"type":"string","pattern":"^(.+-)?markdown_github([-+].+)?$","description":"be 'markdown_github'","completions":["markdown_github"]},{"_internalId":216175,"type":"string","pattern":"^(.+-)?markdown_mmd([-+].+)?$","description":"be 'markdown_mmd'","completions":["markdown_mmd"]},{"_internalId":216176,"type":"string","pattern":"^(.+-)?markdown_phpextra([-+].+)?$","description":"be 'markdown_phpextra'","completions":["markdown_phpextra"]},{"_internalId":216177,"type":"string","pattern":"^(.+-)?markdown_strict([-+].+)?$","description":"be 'markdown_strict'","completions":["markdown_strict"]},{"_internalId":216178,"type":"string","pattern":"^(.+-)?markua([-+].+)?$","description":"be 'markua'","completions":["markua"]},{"_internalId":216179,"type":"string","pattern":"^(.+-)?mediawiki([-+].+)?$","description":"be 'mediawiki'","completions":["mediawiki"]},{"_internalId":216180,"type":"string","pattern":"^(.+-)?ms([-+].+)?$","description":"be 'ms'","completions":["ms"]},{"_internalId":216181,"type":"string","pattern":"^(.+-)?muse([-+].+)?$","description":"be 'muse'","completions":["muse"]},{"_internalId":216182,"type":"string","pattern":"^(.+-)?native([-+].+)?$","description":"be 'native'","completions":["native"]},{"_internalId":216183,"type":"string","pattern":"^(.+-)?odt([-+].+)?$","description":"be 'odt'","completions":["odt"]},{"_internalId":216184,"type":"string","pattern":"^(.+-)?opendocument([-+].+)?$","description":"be 'opendocument'","completions":["opendocument"]},{"_internalId":216185,"type":"string","pattern":"^(.+-)?opml([-+].+)?$","description":"be 'opml'","completions":["opml"]},{"_internalId":216186,"type":"string","pattern":"^(.+-)?org([-+].+)?$","description":"be 'org'","completions":["org"]},{"_internalId":216187,"type":"string","pattern":"^(.+-)?pdf([-+].+)?$","description":"be 'pdf'","completions":["pdf"]},{"_internalId":216188,"type":"string","pattern":"^(.+-)?plain([-+].+)?$","description":"be 'plain'","completions":["plain"]},{"_internalId":216189,"type":"string","pattern":"^(.+-)?pptx([-+].+)?$","description":"be 'pptx'","completions":["pptx"]},{"_internalId":216190,"type":"string","pattern":"^(.+-)?revealjs([-+].+)?$","description":"be 'revealjs'","completions":["revealjs"]},{"_internalId":216191,"type":"string","pattern":"^(.+-)?rst([-+].+)?$","description":"be 'rst'","completions":["rst"]},{"_internalId":216192,"type":"string","pattern":"^(.+-)?rtf([-+].+)?$","description":"be 'rtf'","completions":["rtf"]},{"_internalId":216193,"type":"string","pattern":"^(.+-)?s5([-+].+)?$","description":"be 's5'","completions":["s5"]},{"_internalId":216194,"type":"string","pattern":"^(.+-)?slideous([-+].+)?$","description":"be 'slideous'","completions":["slideous"]},{"_internalId":216195,"type":"string","pattern":"^(.+-)?slidy([-+].+)?$","description":"be 'slidy'","completions":["slidy"]},{"_internalId":216196,"type":"string","pattern":"^(.+-)?tei([-+].+)?$","description":"be 'tei'","completions":["tei"]},{"_internalId":216197,"type":"string","pattern":"^(.+-)?texinfo([-+].+)?$","description":"be 'texinfo'","completions":["texinfo"]},{"_internalId":216198,"type":"string","pattern":"^(.+-)?textile([-+].+)?$","description":"be 'textile'","completions":["textile"]},{"_internalId":216199,"type":"string","pattern":"^(.+-)?typst([-+].+)?$","description":"be 'typst'","completions":["typst"]},{"_internalId":216200,"type":"string","pattern":"^(.+-)?vimdoc([-+].+)?$","description":"be 'vimdoc'","completions":["vimdoc"]},{"_internalId":216201,"type":"string","pattern":"^(.+-)?xml([-+].+)?$","description":"be 'xml'","completions":["xml"]},{"_internalId":216202,"type":"string","pattern":"^(.+-)?xwiki([-+].+)?$","description":"be 'xwiki'","completions":["xwiki"]},{"_internalId":216203,"type":"string","pattern":"^(.+-)?zimwiki([-+].+)?$","description":"be 'zimwiki'","completions":["zimwiki"]},{"_internalId":216204,"type":"string","pattern":"^(.+-)?md([-+].+)?$","description":"be 'md'","completions":["md"]},{"_internalId":216205,"type":"string","pattern":"^(.+-)?hugo([-+].+)?$","description":"be 'hugo'","completions":["hugo"]},{"_internalId":216206,"type":"string","pattern":"^(.+-)?dashboard([-+].+)?$","description":"be 'dashboard'","completions":["dashboard"]},{"_internalId":216207,"type":"string","pattern":"^(.+-)?email([-+].+)?$","description":"be 'email'","completions":["email"]},{"_internalId":216208,"type":"string","pattern":"^.+.lua$","description":"be a string that satisfies regex \"^.+.lua$\""}],"description":"be the name of a pandoc-supported output format"},{"_internalId":216210,"type":"object","description":"be an object","properties":{},"patternProperties":{},"propertyNames":{"_internalId":216208,"type":"string","pattern":"^.+.lua$","description":"be a string that satisfies regex \"^.+.lua$\""}},{"_internalId":216212,"type":"allOf","allOf":[{"_internalId":216211,"type":"object","description":"be an object","properties":{},"patternProperties":{"^(.+-)?ansi([-+].+)?$":{"_internalId":8244,"type":"anyOf","anyOf":[{"_internalId":8242,"type":"object","description":"be an object","properties":{"eval":{"_internalId":8146,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":8147,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":8148,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":8149,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":8150,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":8151,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":8152,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":8153,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":8154,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":8155,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":8156,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":8157,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":8158,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":8159,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":8160,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":8161,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":8162,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":8163,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":8164,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":8165,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":8166,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":8167,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":8168,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":8169,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":8170,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":8171,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":8172,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":8173,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":8174,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":8175,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":8176,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":8177,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":8178,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":8179,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":8180,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":8181,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":8181,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":8182,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":8183,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":8184,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":8185,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":8186,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":8187,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":8188,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":8189,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":8190,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":8191,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":8192,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":8193,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":8194,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":8195,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":8196,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":8197,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":8198,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":8199,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":8200,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":8201,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":8202,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":8203,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":8204,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":8205,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":8206,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":8207,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":8208,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":8209,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":8210,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":8211,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":8212,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":8213,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":8214,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":8215,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":8216,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":8217,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":8217,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":8218,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":8219,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":8220,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":8221,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":8222,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":8223,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":8224,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":8225,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":8226,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":8227,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":8228,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":8229,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":8230,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":8231,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":8232,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":8233,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":8234,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":8235,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":8236,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":8237,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":8238,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":8239,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":8240,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":8240,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":8241,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":8243,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoc([-+].+)?$":{"_internalId":10895,"type":"anyOf","anyOf":[{"_internalId":10893,"type":"object","description":"be an object","properties":{"eval":{"_internalId":10795,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":10796,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":10797,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":10798,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":10799,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":10800,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":10801,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":10802,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":10803,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":10804,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":10805,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":10806,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":10807,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":10808,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":10809,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":10810,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":10811,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":10812,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":10813,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":10814,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":10815,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":10816,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":10817,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":10818,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":10819,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":10820,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":10821,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":10822,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":10823,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":10824,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":10825,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":10826,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":10827,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":10828,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":10829,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":10830,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":10831,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":10831,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":10832,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":10833,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":10834,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":10835,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":10836,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":10837,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":10838,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":10839,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":10840,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":10841,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":10842,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":10843,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":10844,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":10845,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":10846,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":10847,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":10848,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":10849,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":10850,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":10851,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":10852,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":10853,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":10854,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":10855,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":10856,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":10857,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":10858,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"keywords":{"_internalId":10859,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":10860,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":10861,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":10862,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":10863,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":10864,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":10865,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":10866,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":10867,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":10868,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":10868,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":10869,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":10870,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":10871,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":10872,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":10873,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":10874,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":10875,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":10876,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":10877,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":10878,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":10879,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":10880,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":10881,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":10882,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":10883,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":10884,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":10885,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":10886,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":10887,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":10888,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":10889,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":10890,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":10891,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":10891,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":10892,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,abstract,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,keywords,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":10894,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoc_legacy([-+].+)?$":{"_internalId":13544,"type":"anyOf","anyOf":[{"_internalId":13542,"type":"object","description":"be an object","properties":{"eval":{"_internalId":13446,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":13447,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":13448,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":13449,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":13450,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":13451,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":13452,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":13453,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":13454,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":13455,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":13456,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":13457,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":13458,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":13459,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":13460,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":13461,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":13462,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":13463,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":13464,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":13465,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":13466,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":13467,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":13468,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":13469,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":13470,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":13471,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":13472,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":13473,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":13474,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":13475,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":13476,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":13477,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":13478,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":13479,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":13480,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":13481,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":13481,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":13482,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":13483,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":13484,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":13485,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":13486,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":13487,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":13488,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":13489,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":13490,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":13491,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":13492,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":13493,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":13494,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":13495,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":13496,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":13497,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":13498,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":13499,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":13500,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":13501,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":13502,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":13503,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":13504,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":13505,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":13506,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":13507,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":13508,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":13509,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":13510,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":13511,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":13512,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":13513,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":13514,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":13515,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":13516,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":13517,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":13517,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":13518,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":13519,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":13520,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":13521,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":13522,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":13523,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":13524,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":13525,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":13526,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":13527,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":13528,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":13529,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":13530,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":13531,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":13532,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":13533,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":13534,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":13535,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":13536,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":13537,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":13538,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":13539,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":13540,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":13540,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":13541,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":13543,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoctor([-+].+)?$":{"_internalId":16195,"type":"anyOf","anyOf":[{"_internalId":16193,"type":"object","description":"be an object","properties":{"eval":{"_internalId":16095,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":16096,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":16097,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":16098,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":16099,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":16100,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":16101,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":16102,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":16103,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":16104,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":16105,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":16106,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":16107,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":16108,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":16109,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":16110,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":16111,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":16112,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":16113,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":16114,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":16115,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":16116,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":16117,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":16118,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":16119,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":16120,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":16121,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":16122,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":16123,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":16124,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":16125,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":16126,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":16127,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":16128,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":16129,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":16130,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":16131,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":16131,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":16132,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":16133,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":16134,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":16135,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":16136,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":16137,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":16138,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":16139,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":16140,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":16141,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":16142,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":16143,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":16144,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":16145,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":16146,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":16147,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":16148,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":16149,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":16150,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":16151,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":16152,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":16153,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":16154,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":16155,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":16156,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":16157,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":16158,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"keywords":{"_internalId":16159,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":16160,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":16161,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":16162,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":16163,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":16164,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":16165,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":16166,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":16167,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":16168,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":16168,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":16169,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":16170,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":16171,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":16172,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":16173,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":16174,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":16175,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":16176,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":16177,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":16178,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":16179,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":16180,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":16181,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":16182,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":16183,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":16184,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":16185,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":16186,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":16187,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":16188,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":16189,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":16190,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":16191,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":16191,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":16192,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,abstract,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,keywords,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":16194,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode([-+].+)?$":{"_internalId":18844,"type":"anyOf","anyOf":[{"_internalId":18842,"type":"object","description":"be an object","properties":{"eval":{"_internalId":18746,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":18747,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":18748,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":18749,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":18750,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":18751,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":18752,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":18753,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":18754,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":18755,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":18756,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":18757,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":18758,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":18759,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":18760,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":18761,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":18762,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":18763,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":18764,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":18765,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":18766,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":18767,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":18768,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":18769,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":18770,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":18771,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":18772,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":18773,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":18774,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":18775,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":18776,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":18777,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":18778,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":18779,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":18780,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":18781,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":18781,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":18782,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":18783,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":18784,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":18785,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":18786,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":18787,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":18788,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":18789,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":18790,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":18791,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":18792,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":18793,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":18794,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":18795,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":18796,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":18797,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":18798,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":18799,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":18800,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":18801,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":18802,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":18803,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":18804,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":18805,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":18806,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":18807,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":18808,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":18809,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":18810,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":18811,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":18812,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":18813,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":18814,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":18815,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":18816,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":18817,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":18817,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":18818,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":18819,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":18820,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":18821,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":18822,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":18823,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":18824,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":18825,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":18826,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":18827,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":18828,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":18829,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":18830,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":18831,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":18832,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":18833,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":18834,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":18835,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":18836,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":18837,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":18838,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":18839,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":18840,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":18840,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":18841,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":18843,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_fluxbb([-+].+)?$":{"_internalId":21493,"type":"anyOf","anyOf":[{"_internalId":21491,"type":"object","description":"be an object","properties":{"eval":{"_internalId":21395,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":21396,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":21397,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":21398,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":21399,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":21400,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":21401,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":21402,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":21403,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":21404,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":21405,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":21406,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":21407,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":21408,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":21409,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":21410,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":21411,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":21412,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":21413,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":21414,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":21415,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":21416,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":21417,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":21418,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":21419,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":21420,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":21421,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":21422,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":21423,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":21424,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":21425,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":21426,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":21427,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":21428,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":21429,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":21430,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":21430,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":21431,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":21432,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":21433,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":21434,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":21435,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":21436,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":21437,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":21438,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":21439,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":21440,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":21441,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":21442,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":21443,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":21444,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":21445,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":21446,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":21447,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":21448,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":21449,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":21450,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":21451,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":21452,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":21453,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":21454,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":21455,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":21456,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":21457,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":21458,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":21459,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":21460,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":21461,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":21462,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":21463,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":21464,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":21465,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":21466,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":21466,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":21467,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":21468,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":21469,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":21470,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":21471,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":21472,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":21473,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":21474,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":21475,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":21476,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":21477,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":21478,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":21479,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":21480,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":21481,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":21482,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":21483,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":21484,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":21485,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":21486,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":21487,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":21488,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":21489,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":21489,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":21490,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":21492,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_hubzilla([-+].+)?$":{"_internalId":24142,"type":"anyOf","anyOf":[{"_internalId":24140,"type":"object","description":"be an object","properties":{"eval":{"_internalId":24044,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":24045,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":24046,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":24047,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":24048,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":24049,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":24050,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":24051,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":24052,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":24053,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":24054,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":24055,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":24056,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":24057,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":24058,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":24059,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":24060,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":24061,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":24062,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":24063,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":24064,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":24065,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":24066,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":24067,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":24068,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":24069,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":24070,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":24071,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":24072,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":24073,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":24074,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":24075,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":24076,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":24077,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":24078,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":24079,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":24079,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":24080,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":24081,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":24082,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":24083,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":24084,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":24085,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":24086,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":24087,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":24088,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":24089,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":24090,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":24091,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":24092,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":24093,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":24094,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":24095,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":24096,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":24097,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":24098,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":24099,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":24100,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":24101,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":24102,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":24103,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":24104,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":24105,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":24106,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":24107,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":24108,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":24109,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":24110,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":24111,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":24112,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":24113,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":24114,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":24115,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":24115,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":24116,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":24117,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":24118,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":24119,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":24120,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":24121,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":24122,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":24123,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":24124,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":24125,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":24126,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":24127,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":24128,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":24129,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":24130,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":24131,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":24132,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":24133,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":24134,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":24135,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":24136,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":24137,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":24138,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":24138,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":24139,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":24141,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_phpbb([-+].+)?$":{"_internalId":26791,"type":"anyOf","anyOf":[{"_internalId":26789,"type":"object","description":"be an object","properties":{"eval":{"_internalId":26693,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":26694,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":26695,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":26696,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":26697,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":26698,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":26699,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":26700,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":26701,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":26702,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":26703,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":26704,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":26705,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":26706,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":26707,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":26708,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":26709,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":26710,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":26711,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":26712,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":26713,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":26714,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":26715,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":26716,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":26717,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":26718,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":26719,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":26720,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":26721,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":26722,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":26723,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":26724,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":26725,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":26726,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":26727,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":26728,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":26728,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":26729,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":26730,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":26731,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":26732,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":26733,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":26734,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":26735,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":26736,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":26737,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":26738,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":26739,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":26740,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":26741,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":26742,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":26743,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":26744,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":26745,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":26746,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":26747,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":26748,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":26749,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":26750,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":26751,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":26752,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":26753,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":26754,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":26755,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":26756,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":26757,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":26758,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":26759,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":26760,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":26761,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":26762,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":26763,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":26764,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":26764,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":26765,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":26766,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":26767,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":26768,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":26769,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":26770,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":26771,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":26772,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":26773,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":26774,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":26775,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":26776,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":26777,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":26778,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":26779,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":26780,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":26781,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":26782,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":26783,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":26784,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":26785,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":26786,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":26787,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":26787,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":26788,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":26790,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_steam([-+].+)?$":{"_internalId":29440,"type":"anyOf","anyOf":[{"_internalId":29438,"type":"object","description":"be an object","properties":{"eval":{"_internalId":29342,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":29343,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":29344,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":29345,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":29346,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":29347,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":29348,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":29349,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":29350,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":29351,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":29352,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":29353,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":29354,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":29355,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":29356,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":29357,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":29358,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":29359,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":29360,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":29361,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":29362,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":29363,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":29364,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":29365,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":29366,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":29367,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":29368,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":29369,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":29370,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":29371,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":29372,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":29373,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":29374,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":29375,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":29376,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":29377,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":29377,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":29378,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":29379,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":29380,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":29381,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":29382,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":29383,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":29384,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":29385,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":29386,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":29387,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":29388,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":29389,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":29390,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":29391,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":29392,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":29393,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":29394,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":29395,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":29396,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":29397,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":29398,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":29399,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":29400,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":29401,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":29402,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":29403,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":29404,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":29405,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":29406,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":29407,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":29408,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":29409,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":29410,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":29411,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":29412,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":29413,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":29413,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":29414,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":29415,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":29416,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":29417,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":29418,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":29419,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":29420,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":29421,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":29422,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":29423,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":29424,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":29425,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":29426,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":29427,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":29428,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":29429,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":29430,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":29431,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":29432,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":29433,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":29434,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":29435,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":29436,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":29436,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":29437,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":29439,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_xenforo([-+].+)?$":{"_internalId":32089,"type":"anyOf","anyOf":[{"_internalId":32087,"type":"object","description":"be an object","properties":{"eval":{"_internalId":31991,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":31992,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":31993,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":31994,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":31995,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":31996,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":31997,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":31998,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":31999,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":32000,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":32001,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":32002,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":32003,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":32004,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":32005,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":32006,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":32007,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":32008,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":32009,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":32010,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":32011,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":32012,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":32013,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":32014,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":32015,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":32016,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":32017,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":32018,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":32019,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":32020,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":32021,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":32022,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":32023,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":32024,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":32025,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":32026,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":32026,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":32027,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":32028,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":32029,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":32030,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":32031,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":32032,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":32033,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":32034,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":32035,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":32036,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":32037,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":32038,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":32039,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":32040,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":32041,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":32042,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":32043,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":32044,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":32045,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":32046,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":32047,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":32048,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":32049,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":32050,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":32051,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":32052,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":32053,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":32054,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":32055,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":32056,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":32057,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":32058,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":32059,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":32060,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":32061,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":32062,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":32062,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":32063,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":32064,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":32065,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":32066,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":32067,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":32068,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":32069,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":32070,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":32071,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":32072,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":32073,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":32074,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":32075,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":32076,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":32077,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":32078,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":32079,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":32080,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":32081,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":32082,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":32083,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":32084,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":32085,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":32085,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":32086,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":32088,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?beamer([-+].+)?$":{"_internalId":34845,"type":"anyOf","anyOf":[{"_internalId":34843,"type":"object","description":"be an object","properties":{"eval":{"_internalId":34640,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":34641,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":34642,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":34643,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":34644,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":34645,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":34646,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":34647,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":34648,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":34649,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":34650,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":34651,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":34652,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":34653,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":34654,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":34655,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":34656,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":34657,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":34658,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":34659,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"abstract":{"_internalId":34660,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":34661,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":34662,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":34663,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":34664,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":34665,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":34666,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":34667,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":34668,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":34669,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":34670,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":34671,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":34672,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":34673,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":34674,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":34675,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":34676,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":34677,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":34678,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":34679,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":34680,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":34681,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":34682,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":34683,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":34684,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":34685,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":34686,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":34687,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":34688,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":34689,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":34690,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":34691,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":34692,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":34693,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":34694,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":34695,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":34696,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":34697,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":34698,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":34699,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":34700,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":34701,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":34702,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":34703,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":34704,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":34705,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":34706,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":34707,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":34708,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":34709,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":34710,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":34711,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":34712,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":34713,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":34714,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":34715,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":34716,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"funding":{"_internalId":34717,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":34718,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":34718,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":34719,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":34720,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":34721,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":34722,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":34723,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":34724,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":34725,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":34726,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":34727,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":34728,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":34729,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":34730,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":34731,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":34732,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":34733,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":34734,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":34735,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":34736,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":34737,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":34738,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":34739,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":34740,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":34741,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":34742,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":34743,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":34744,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":34745,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":34746,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":34747,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":34748,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":34749,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":34750,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":34751,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":34752,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":34753,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":34754,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":34755,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":34756,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":34757,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":34758,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":34759,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":34760,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":34761,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"margin-left":{"_internalId":34762,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":34763,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":34764,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":34765,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":34766,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":34767,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":34768,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":34769,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":34770,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":34771,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":34772,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":34773,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":34774,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":34775,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":34776,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":34777,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":34778,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":34779,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":34780,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":34781,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"pdf-engine":{"_internalId":34782,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":34783,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":34784,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beameroption":{"_internalId":34785,"type":"ref","$ref":"quarto-resource-document-options-beameroption","description":"quarto-resource-document-options-beameroption"},"aspectratio":{"_internalId":34786,"type":"ref","$ref":"quarto-resource-document-options-aspectratio","description":"quarto-resource-document-options-aspectratio"},"logo":{"_internalId":34787,"type":"ref","$ref":"quarto-resource-document-options-logo","description":"quarto-resource-document-options-logo"},"titlegraphic":{"_internalId":34788,"type":"ref","$ref":"quarto-resource-document-options-titlegraphic","description":"quarto-resource-document-options-titlegraphic"},"navigation":{"_internalId":34789,"type":"ref","$ref":"quarto-resource-document-options-navigation","description":"quarto-resource-document-options-navigation"},"section-titles":{"_internalId":34790,"type":"ref","$ref":"quarto-resource-document-options-section-titles","description":"quarto-resource-document-options-section-titles"},"colortheme":{"_internalId":34791,"type":"ref","$ref":"quarto-resource-document-options-colortheme","description":"quarto-resource-document-options-colortheme"},"colorthemeoptions":{"_internalId":34792,"type":"ref","$ref":"quarto-resource-document-options-colorthemeoptions","description":"quarto-resource-document-options-colorthemeoptions"},"fonttheme":{"_internalId":34793,"type":"ref","$ref":"quarto-resource-document-options-fonttheme","description":"quarto-resource-document-options-fonttheme"},"fontthemeoptions":{"_internalId":34794,"type":"ref","$ref":"quarto-resource-document-options-fontthemeoptions","description":"quarto-resource-document-options-fontthemeoptions"},"innertheme":{"_internalId":34795,"type":"ref","$ref":"quarto-resource-document-options-innertheme","description":"quarto-resource-document-options-innertheme"},"innerthemeoptions":{"_internalId":34796,"type":"ref","$ref":"quarto-resource-document-options-innerthemeoptions","description":"quarto-resource-document-options-innerthemeoptions"},"outertheme":{"_internalId":34797,"type":"ref","$ref":"quarto-resource-document-options-outertheme","description":"quarto-resource-document-options-outertheme"},"outerthemeoptions":{"_internalId":34798,"type":"ref","$ref":"quarto-resource-document-options-outerthemeoptions","description":"quarto-resource-document-options-outerthemeoptions"},"themeoptions":{"_internalId":34799,"type":"ref","$ref":"quarto-resource-document-options-themeoptions","description":"quarto-resource-document-options-themeoptions"},"quarto-required":{"_internalId":34800,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdf-standard":{"_internalId":34801,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":34802,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":34803,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":34804,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":34805,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":34806,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":34807,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":34808,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":34809,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":34810,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":34811,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":34812,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":34813,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":34814,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":34815,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":34815,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":34816,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":34817,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":34818,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":34819,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":34820,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":34821,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":34822,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":34823,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":34824,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":34825,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":34826,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-tex":{"_internalId":34827,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":34828,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":34829,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":34830,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":34831,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":34832,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":34833,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":34834,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"incremental":{"_internalId":34835,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":34836,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":34837,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":34838,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":34839,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":34839,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-title":{"_internalId":34840,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":34841,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":34842,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,abstract,thanks,order,citation,code-annotations,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,linkcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,CJKoptions,microtypeoptions,linestretch,links-as-notes,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,shorthands,dir,latex-auto-mk,latex-auto-install,latex-min-runs,latex-max-runs,latex-clean,latex-makeindex,latex-makeindex-opts,latex-tlmgr-opts,latex-output-dir,latex-tinytex,latex-input-paths,documentclass,classoption,pagestyle,papersize,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,keywords,subject,title-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,shift-heading-level-by,top-level-division,brand,theme,pdf-engine,pdf-engine-opt,pdf-engine-opts,beameroption,aspectratio,logo,titlegraphic,navigation,section-titles,colortheme,colorthemeoptions,fonttheme,fontthemeoptions,innertheme,innerthemeoptions,outertheme,outerthemeoptions,themeoptions,quarto-required,pdf-standard,bibliography,csl,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-tex,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,use-rsvg-convert,incremental,slide-level,df-print,ascii,toc,table-of-contents,toc-title,lof,lot","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^cjkmainfont$|^cjkmainfont$|^cjkoptions$|^cjkoptions$|^links_as_notes$|^linksAsNotes$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^latex_auto_mk$|^latexAutoMk$|^latex_auto_install$|^latexAutoInstall$|^latex_min_runs$|^latexMinRuns$|^latex_max_runs$|^latexMaxRuns$|^latex_clean$|^latexClean$|^latex_makeindex$|^latexMakeindex$|^latex_makeindex_opts$|^latexMakeindexOpts$|^latex_tlmgr_opts$|^latexTlmgrOpts$|^latex_output_dir$|^latexOutputDir$|^latex_tinytex$|^latexTinytex$|^latex_input_paths$|^latexInputPaths$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^title_meta$|^titleMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^section_titles$|^sectionTitles$|^quarto_required$|^quartoRequired$|^pdf_standard$|^pdfStandard$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_tex$|^keepTex$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":34844,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?biblatex([-+].+)?$":{"_internalId":37494,"type":"anyOf","anyOf":[{"_internalId":37492,"type":"object","description":"be an object","properties":{"eval":{"_internalId":37396,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":37397,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":37398,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":37399,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":37400,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":37401,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":37402,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":37403,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":37404,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":37405,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":37406,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":37407,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":37408,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":37409,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":37410,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":37411,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":37412,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":37413,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":37414,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":37415,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":37416,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":37417,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":37418,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":37419,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":37420,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":37421,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":37422,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":37423,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":37424,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":37425,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":37426,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":37427,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":37428,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":37429,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":37430,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":37431,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":37431,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":37432,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":37433,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":37434,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":37435,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":37436,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":37437,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":37438,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":37439,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":37440,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":37441,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":37442,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":37443,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":37444,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":37445,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":37446,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":37447,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":37448,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":37449,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":37450,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":37451,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":37452,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":37453,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":37454,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":37455,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":37456,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":37457,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":37458,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":37459,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":37460,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":37461,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":37462,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":37463,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":37464,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":37465,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":37466,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":37467,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":37467,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":37468,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":37469,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":37470,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":37471,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":37472,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":37473,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":37474,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":37475,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":37476,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":37477,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":37478,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":37479,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":37480,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":37481,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":37482,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":37483,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":37484,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":37485,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":37486,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":37487,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":37488,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":37489,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":37490,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":37490,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":37491,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":37493,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bibtex([-+].+)?$":{"_internalId":40143,"type":"anyOf","anyOf":[{"_internalId":40141,"type":"object","description":"be an object","properties":{"eval":{"_internalId":40045,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":40046,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":40047,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":40048,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":40049,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":40050,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":40051,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":40052,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":40053,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":40054,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":40055,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":40056,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":40057,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":40058,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":40059,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":40060,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":40061,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":40062,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":40063,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":40064,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":40065,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":40066,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":40067,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":40068,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":40069,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":40070,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":40071,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":40072,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":40073,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":40074,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":40075,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":40076,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":40077,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":40078,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":40079,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":40080,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":40080,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":40081,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":40082,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":40083,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":40084,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":40085,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":40086,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":40087,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":40088,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":40089,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":40090,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":40091,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":40092,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":40093,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":40094,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":40095,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":40096,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":40097,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":40098,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":40099,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":40100,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":40101,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":40102,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":40103,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":40104,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":40105,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":40106,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":40107,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":40108,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":40109,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":40110,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":40111,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":40112,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":40113,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":40114,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":40115,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":40116,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":40116,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":40117,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":40118,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":40119,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":40120,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":40121,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":40122,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":40123,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":40124,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":40125,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":40126,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":40127,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":40128,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":40129,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":40130,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":40131,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":40132,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":40133,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":40134,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":40135,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":40136,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":40137,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":40138,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":40139,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":40139,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":40140,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":40142,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?chunkedhtml([-+].+)?$":{"_internalId":42793,"type":"anyOf","anyOf":[{"_internalId":42791,"type":"object","description":"be an object","properties":{"eval":{"_internalId":42694,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":42695,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":42696,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":42697,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":42698,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":42699,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":42700,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":42701,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":42702,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":42703,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":42704,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":42705,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":42706,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":42707,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":42708,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":42709,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":42710,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":42711,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":42712,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":42713,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":42714,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":42715,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":42716,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":42717,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":42718,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":42719,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":42720,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":42721,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":42722,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":42723,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":42724,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":42725,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":42726,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":42727,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"split-level":{"_internalId":42728,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":42729,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":42730,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":42730,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":42731,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":42732,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":42733,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":42734,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":42735,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":42736,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":42737,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":42738,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":42739,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":42740,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":42741,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":42742,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":42743,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":42744,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":42745,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":42746,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":42747,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":42748,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":42749,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":42750,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":42751,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":42752,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":42753,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":42754,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":42755,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":42756,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":42757,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":42758,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":42759,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":42760,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":42761,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":42762,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":42763,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":42764,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":42765,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":42766,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":42766,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":42767,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":42768,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":42769,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":42770,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":42771,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":42772,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":42773,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":42774,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":42775,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":42776,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":42777,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":42778,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":42779,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":42780,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":42781,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":42782,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":42783,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":42784,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":42785,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":42786,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":42787,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":42788,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":42789,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":42789,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":42790,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":42792,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?commonmark([-+].+)?$":{"_internalId":45449,"type":"anyOf","anyOf":[{"_internalId":45447,"type":"object","description":"be an object","properties":{"eval":{"_internalId":45344,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":45345,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":45346,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":45347,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":45348,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":45349,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":45350,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":45351,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":45352,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":45353,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":45354,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":45355,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":45356,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":45357,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":45358,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":45359,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":45360,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":45361,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":45362,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":45363,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":45364,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":45365,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":45366,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":45367,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":45368,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":45369,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":45370,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":45371,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":45372,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":45373,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":45374,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":45375,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":45376,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":45377,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":45378,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":45379,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":45380,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":45380,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":45381,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":45382,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":45383,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":45384,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":45385,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":45386,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":45387,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":45388,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":45389,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":45390,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":45391,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":45392,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":45393,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":45394,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":45395,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":45396,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":45397,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":45398,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":45399,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":45400,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":45401,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":45402,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":45403,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":45404,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":45405,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":45406,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":45407,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":45408,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":45409,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":45410,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":45411,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":45412,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":45413,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":45414,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":45415,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":45416,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":45417,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":45418,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":45419,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":45420,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":45420,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":45421,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":45422,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":45423,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":45424,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":45425,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":45426,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":45427,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":45428,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":45429,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":45430,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":45431,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":45432,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":45433,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":45434,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":45435,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":45436,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":45437,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":45438,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":45439,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":45440,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":45441,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":45442,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":45443,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":45444,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":45445,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":45445,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":45446,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":45448,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?commonmark_x([-+].+)?$":{"_internalId":48105,"type":"anyOf","anyOf":[{"_internalId":48103,"type":"object","description":"be an object","properties":{"eval":{"_internalId":48000,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":48001,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":48002,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":48003,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":48004,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":48005,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":48006,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":48007,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":48008,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":48009,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":48010,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":48011,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":48012,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":48013,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":48014,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":48015,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":48016,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":48017,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":48018,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":48019,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":48020,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":48021,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":48022,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":48023,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":48024,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":48025,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":48026,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":48027,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":48028,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":48029,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":48030,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":48031,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":48032,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":48033,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":48034,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":48035,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":48036,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":48036,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":48037,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":48038,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":48039,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":48040,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":48041,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":48042,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":48043,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":48044,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":48045,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":48046,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":48047,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":48048,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":48049,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":48050,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":48051,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":48052,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":48053,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":48054,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":48055,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":48056,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":48057,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":48058,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":48059,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":48060,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":48061,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":48062,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":48063,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":48064,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":48065,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":48066,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":48067,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":48068,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":48069,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":48070,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":48071,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":48072,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":48073,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":48074,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":48075,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":48076,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":48076,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":48077,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":48078,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":48079,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":48080,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":48081,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":48082,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":48083,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":48084,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":48085,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":48086,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":48087,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":48088,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":48089,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":48090,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":48091,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":48092,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":48093,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":48094,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":48095,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":48096,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":48097,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":48098,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":48099,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":48100,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":48101,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":48101,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":48102,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":48104,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?context([-+].+)?$":{"_internalId":50783,"type":"anyOf","anyOf":[{"_internalId":50781,"type":"object","description":"be an object","properties":{"eval":{"_internalId":50656,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":50657,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":50658,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":50659,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":50660,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":50661,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":50662,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":50663,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":50664,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":50665,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":50666,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":50667,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":50668,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":50669,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":50670,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"linkcolor":{"_internalId":50671,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"contrastcolor":{"_internalId":50672,"type":"ref","$ref":"quarto-resource-document-colors-contrastcolor","description":"quarto-resource-document-colors-contrastcolor"},"crossref":{"_internalId":50673,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":50674,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":50675,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":50676,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":50677,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":50678,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":50679,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":50680,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":50681,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":50682,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":50683,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":50684,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":50685,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":50686,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":50687,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":50688,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":50689,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":50690,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":50691,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":50692,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":50693,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":50694,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":50695,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":50696,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":50697,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"interlinespace":{"_internalId":50698,"type":"ref","$ref":"quarto-resource-document-fonts-interlinespace","description":"quarto-resource-document-fonts-interlinespace"},"linkstyle":{"_internalId":50699,"type":"ref","$ref":"quarto-resource-document-fonts-linkstyle","description":"quarto-resource-document-fonts-linkstyle"},"whitespace":{"_internalId":50700,"type":"ref","$ref":"quarto-resource-document-fonts-whitespace","description":"quarto-resource-document-fonts-whitespace"},"indenting":{"_internalId":50701,"type":"ref","$ref":"quarto-resource-document-formatting-indenting","description":"quarto-resource-document-formatting-indenting"},"funding":{"_internalId":50702,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":50703,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":50703,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":50704,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":50705,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":50706,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":50707,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":50708,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":50709,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":50710,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":50711,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":50712,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":50713,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":50714,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":50715,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":50716,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":50717,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":50718,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":50719,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":50720,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":50721,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":50722,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":50723,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":50724,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":50725,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"headertext":{"_internalId":50726,"type":"ref","$ref":"quarto-resource-document-includes-headertext","description":"quarto-resource-document-includes-headertext"},"footertext":{"_internalId":50727,"type":"ref","$ref":"quarto-resource-document-includes-footertext","description":"quarto-resource-document-includes-footertext"},"includesource":{"_internalId":50728,"type":"ref","$ref":"quarto-resource-document-includes-includesource","description":"quarto-resource-document-includes-includesource"},"metadata-file":{"_internalId":50729,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":50730,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":50731,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":50732,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":50733,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"layout":{"_internalId":50734,"type":"ref","$ref":"quarto-resource-document-layout-layout","description":"quarto-resource-document-layout-layout"},"margin-left":{"_internalId":50735,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":50736,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":50737,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":50738,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"keywords":{"_internalId":50739,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":50740,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":50741,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"pagenumbering":{"_internalId":50742,"type":"ref","$ref":"quarto-resource-document-numbering-pagenumbering","description":"quarto-resource-document-numbering-pagenumbering"},"top-level-division":{"_internalId":50743,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":50744,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":50745,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":50746,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":50747,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":50748,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdfa":{"_internalId":50749,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfa","description":"quarto-resource-document-pdfa-pdfa"},"pdfaiccprofile":{"_internalId":50750,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaiccprofile","description":"quarto-resource-document-pdfa-pdfaiccprofile"},"pdfaintent":{"_internalId":50751,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaintent","description":"quarto-resource-document-pdfa-pdfaintent"},"bibliography":{"_internalId":50752,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":50753,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":50754,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":50755,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":50756,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":50756,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":50757,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":50758,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":50759,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":50760,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":50761,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":50762,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":50763,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":50764,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":50765,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":50766,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":50767,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":50768,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":50769,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":50770,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":50771,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":50772,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":50773,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":50774,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":50775,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":50776,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":50777,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":50778,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":50779,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":50779,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":50780,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,subtitle,date,date-format,author,abstract,order,citation,code-annotations,linkcolor,contrastcolor,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,linestretch,interlinespace,linkstyle,whitespace,indenting,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,headertext,footertext,includesource,metadata-file,metadata-files,lang,language,dir,layout,margin-left,margin-right,margin-top,margin-bottom,keywords,number-sections,shift-heading-level-by,pagenumbering,top-level-division,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,quarto-required,pdfa,pdfaiccprofile,pdfaintent,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":50782,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?csljson([-+].+)?$":{"_internalId":53432,"type":"anyOf","anyOf":[{"_internalId":53430,"type":"object","description":"be an object","properties":{"eval":{"_internalId":53334,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":53335,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":53336,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":53337,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":53338,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":53339,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":53340,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":53341,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":53342,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":53343,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":53344,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":53345,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":53346,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":53347,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":53348,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":53349,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":53350,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":53351,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":53352,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":53353,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":53354,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":53355,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":53356,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":53357,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":53358,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":53359,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":53360,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":53361,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":53362,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":53363,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":53364,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":53365,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":53366,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":53367,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":53368,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":53369,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":53369,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":53370,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":53371,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":53372,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":53373,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":53374,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":53375,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":53376,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":53377,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":53378,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":53379,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":53380,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":53381,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":53382,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":53383,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":53384,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":53385,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":53386,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":53387,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":53388,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":53389,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":53390,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":53391,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":53392,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":53393,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":53394,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":53395,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":53396,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":53397,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":53398,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":53399,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":53400,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":53401,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":53402,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":53403,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":53404,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":53405,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":53405,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":53406,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":53407,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":53408,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":53409,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":53410,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":53411,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":53412,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":53413,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":53414,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":53415,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":53416,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":53417,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":53418,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":53419,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":53420,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":53421,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":53422,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":53423,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":53424,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":53425,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":53426,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":53427,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":53428,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":53428,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":53429,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":53431,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?djot([-+].+)?$":{"_internalId":56081,"type":"anyOf","anyOf":[{"_internalId":56079,"type":"object","description":"be an object","properties":{"eval":{"_internalId":55983,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":55984,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":55985,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":55986,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":55987,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":55988,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":55989,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":55990,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":55991,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":55992,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":55993,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":55994,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":55995,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":55996,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":55997,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":55998,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":55999,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":56000,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":56001,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":56002,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":56003,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":56004,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":56005,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":56006,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":56007,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":56008,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":56009,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":56010,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":56011,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":56012,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":56013,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":56014,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":56015,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":56016,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":56017,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":56018,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":56018,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":56019,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":56020,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":56021,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":56022,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":56023,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":56024,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":56025,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":56026,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":56027,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":56028,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":56029,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":56030,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":56031,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":56032,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":56033,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":56034,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":56035,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":56036,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":56037,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":56038,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":56039,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":56040,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":56041,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":56042,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":56043,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":56044,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":56045,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":56046,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":56047,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":56048,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":56049,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":56050,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":56051,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":56052,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":56053,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":56054,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":56054,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":56055,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":56056,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":56057,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":56058,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":56059,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":56060,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":56061,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":56062,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":56063,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":56064,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":56065,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":56066,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":56067,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":56068,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":56069,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":56070,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":56071,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":56072,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":56073,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":56074,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":56075,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":56076,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":56077,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":56077,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":56078,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":56080,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook([-+].+)?$":{"_internalId":58726,"type":"anyOf","anyOf":[{"_internalId":58724,"type":"object","description":"be an object","properties":{"eval":{"_internalId":58632,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":58633,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":58634,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":58635,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":58636,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":58637,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":58638,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":58639,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":58640,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":58641,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":58642,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":58643,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":58644,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":58645,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":58646,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":58647,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":58648,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":58649,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":58650,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":58651,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":58652,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":58653,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":58654,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":58655,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":58656,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":58657,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":58658,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":58659,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":58660,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":58661,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":58662,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":58663,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":58664,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":58665,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":58666,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":58667,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":58667,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":58668,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":58669,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":58670,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":58671,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":58672,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":58673,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":58674,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":58675,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":58676,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":58677,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":58678,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":58679,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":58680,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":58681,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":58682,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":58683,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":58684,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":58685,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":58686,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":58687,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":58688,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":58689,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":58690,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":58691,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":58692,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":58693,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":58694,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":58695,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":58696,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":58697,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":58698,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":58699,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":58700,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":58701,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":58702,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":58703,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":58704,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":58705,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":58705,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":58706,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":58707,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":58708,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":58709,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":58710,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":58711,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":58712,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":58713,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":58714,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":58715,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":58716,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":58717,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":58718,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":58719,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":58720,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":58721,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":58722,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":58723,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":58725,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook4([-+].+)?$":{"_internalId":61371,"type":"anyOf","anyOf":[{"_internalId":61369,"type":"object","description":"be an object","properties":{"eval":{"_internalId":61277,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":61278,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":61279,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":61280,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":61281,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":61282,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":61283,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":61284,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":61285,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":61286,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":61287,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":61288,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":61289,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":61290,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":61291,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":61292,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":61293,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":61294,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":61295,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":61296,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":61297,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":61298,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":61299,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":61300,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":61301,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":61302,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":61303,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":61304,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":61305,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":61306,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":61307,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":61308,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":61309,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":61310,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":61311,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":61312,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":61312,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":61313,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":61314,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":61315,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":61316,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":61317,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":61318,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":61319,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":61320,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":61321,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":61322,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":61323,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":61324,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":61325,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":61326,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":61327,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":61328,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":61329,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":61330,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":61331,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":61332,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":61333,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":61334,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":61335,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":61336,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":61337,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":61338,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":61339,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":61340,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":61341,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":61342,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":61343,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":61344,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":61345,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":61346,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":61347,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":61348,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":61349,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":61350,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":61350,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":61351,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":61352,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":61353,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":61354,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":61355,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":61356,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":61357,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":61358,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":61359,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":61360,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":61361,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":61362,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":61363,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":61364,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":61365,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":61366,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":61367,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":61368,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":61370,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook5([-+].+)?$":{"_internalId":64016,"type":"anyOf","anyOf":[{"_internalId":64014,"type":"object","description":"be an object","properties":{"eval":{"_internalId":63922,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":63923,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":63924,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":63925,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":63926,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":63927,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":63928,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":63929,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":63930,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":63931,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":63932,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":63933,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":63934,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":63935,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":63936,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":63937,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":63938,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":63939,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":63940,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":63941,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":63942,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":63943,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":63944,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":63945,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":63946,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":63947,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":63948,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":63949,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":63950,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":63951,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":63952,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":63953,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":63954,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":63955,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":63956,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":63957,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":63957,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":63958,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":63959,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":63960,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":63961,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":63962,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":63963,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":63964,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":63965,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":63966,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":63967,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":63968,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":63969,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":63970,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":63971,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":63972,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":63973,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":63974,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":63975,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":63976,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":63977,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":63978,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":63979,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":63980,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":63981,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":63982,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":63983,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":63984,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":63985,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":63986,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":63987,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":63988,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":63989,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":63990,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":63991,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":63992,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":63993,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":63994,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":63995,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":63995,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":63996,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":63997,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":63998,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":63999,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":64000,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":64001,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":64002,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":64003,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":64004,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":64005,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":64006,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":64007,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":64008,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":64009,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":64010,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":64011,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":64012,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":64013,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":64015,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docx([-+].+)?$":{"_internalId":66674,"type":"anyOf","anyOf":[{"_internalId":66672,"type":"object","description":"be an object","properties":{"eval":{"_internalId":66567,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":66568,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":66569,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":66570,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":66571,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":66572,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":66573,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":66574,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":66575,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":66576,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":66577,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":66578,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":66579,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":66580,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":66581,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":66582,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":66583,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":66584,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":66585,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":66586,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":66587,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":66588,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":66589,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":66590,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":66591,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":66592,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":66593,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":66594,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":66595,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":66596,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":66597,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":66598,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":66599,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":66600,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":66601,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":66602,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":66603,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":66604,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":66605,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":66606,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":66607,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":66608,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":66609,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":66610,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":66611,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":66611,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":66612,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":66613,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":66614,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":66615,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":66616,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":66617,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":66618,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":66619,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":66620,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":66621,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":66622,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":66623,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":66624,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":66625,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"track-changes":{"_internalId":66626,"type":"ref","$ref":"quarto-resource-document-hidden-track-changes","description":"quarto-resource-document-hidden-track-changes"},"output-divs":{"_internalId":66627,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":66628,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":66629,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":66630,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":66631,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":66632,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":66633,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":66634,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"keywords":{"_internalId":66635,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":66636,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":66637,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":66638,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"number-sections":{"_internalId":66639,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":66640,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"shift-heading-level-by":{"_internalId":66641,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":66642,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":66643,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":66644,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":66645,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":66646,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":66647,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":66648,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":66649,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":66650,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":66651,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":66652,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":66652,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":66653,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":66654,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":66655,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":66656,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":66657,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":66658,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":66659,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":66660,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":66661,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":66662,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":66663,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":66664,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":66665,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":66666,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":66667,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":66668,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":66669,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":66669,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":66670,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":66671,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,track-changes,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,page-width,keywords,subject,description,category,number-sections,number-depth,shift-heading-level-by,reference-doc,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^track_changes$|^trackChanges$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_width$|^pageWidth$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^reference_doc$|^referenceDoc$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":66673,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dokuwiki([-+].+)?$":{"_internalId":69323,"type":"anyOf","anyOf":[{"_internalId":69321,"type":"object","description":"be an object","properties":{"eval":{"_internalId":69225,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":69226,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":69227,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":69228,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":69229,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":69230,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":69231,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":69232,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":69233,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":69234,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":69235,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":69236,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":69237,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":69238,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":69239,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":69240,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":69241,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":69242,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":69243,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":69244,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":69245,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":69246,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":69247,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":69248,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":69249,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":69250,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":69251,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":69252,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":69253,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":69254,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":69255,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":69256,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":69257,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":69258,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":69259,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":69260,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":69260,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":69261,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":69262,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":69263,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":69264,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":69265,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":69266,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":69267,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":69268,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":69269,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":69270,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":69271,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":69272,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":69273,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":69274,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":69275,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":69276,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":69277,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":69278,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":69279,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":69280,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":69281,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":69282,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":69283,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":69284,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":69285,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":69286,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":69287,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":69288,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":69289,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":69290,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":69291,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":69292,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":69293,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":69294,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":69295,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":69296,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":69296,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":69297,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":69298,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":69299,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":69300,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":69301,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":69302,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":69303,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":69304,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":69305,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":69306,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":69307,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":69308,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":69309,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":69310,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":69311,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":69312,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":69313,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":69314,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":69315,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":69316,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":69317,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":69318,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":69319,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":69319,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":69320,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":69322,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dzslides([-+].+)?$":{"_internalId":72023,"type":"anyOf","anyOf":[{"_internalId":72021,"type":"object","description":"be an object","properties":{"eval":{"_internalId":71874,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":71875,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":71876,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":71877,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":71878,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":71879,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":71880,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":71881,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":71882,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":71883,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":71884,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":71885,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":71886,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":71887,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":71888,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":71889,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":71890,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":71891,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":71892,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":71893,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":71894,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":71895,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":71896,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":71897,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":71898,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":71899,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":71900,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":71901,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":71902,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":71903,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":71904,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":71905,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":71906,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":71907,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":71908,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":71909,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":71910,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":71911,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":71912,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":71913,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":71914,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":71915,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":71916,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":71917,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":71918,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":71919,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":71920,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":71921,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":71922,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":71923,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":71924,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":71925,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":71926,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":71927,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":71928,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":71929,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":71930,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":71931,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":71932,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":71933,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":71933,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":71934,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":71935,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":71936,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":71937,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":71938,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":71939,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":71940,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":71941,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":71942,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":71943,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":71944,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":71945,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":71946,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":71947,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":71948,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":71949,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":71950,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":71951,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":71952,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":71953,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":71954,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":71955,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":71956,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":71957,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":71958,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":71959,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":71960,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":71961,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":71962,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":71963,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":71964,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":71965,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":71966,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":71967,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"mermaid":{"_internalId":71968,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":71969,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":71970,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":71971,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":71972,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":71973,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":71974,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":71975,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":71976,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":71977,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":71978,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":71979,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":71980,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":71981,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":71982,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":71983,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":71984,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":71985,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":71986,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":71987,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":71988,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":71989,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":71990,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":71991,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":71992,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":71992,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":71993,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":71994,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":71995,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":71996,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":71997,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":71998,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":71999,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":72000,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":72001,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":72002,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":72003,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":72004,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":72005,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":72006,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":72007,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":72008,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":72009,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":72010,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":72011,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":72012,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":72013,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":72014,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":72015,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":72016,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":72017,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":72018,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":72018,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":72019,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":72020,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":72022,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub([-+].+)?$":{"_internalId":74713,"type":"anyOf","anyOf":[{"_internalId":74711,"type":"object","description":"be an object","properties":{"eval":{"_internalId":74574,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":74575,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":74576,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":74577,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":74578,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":74579,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":74580,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":74581,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":74582,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":74583,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":74584,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":74585,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":74586,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":74587,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":74588,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":74589,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":74590,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":74591,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":74592,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":74593,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":74594,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":74595,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":74596,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":74597,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":74598,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":74599,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":74600,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":74601,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":74602,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":74603,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":74604,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":74605,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":74606,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":74607,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":74608,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"type":{"_internalId":74609,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":74610,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":74611,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":74612,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":74613,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":74614,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":74615,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":74616,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":74617,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":74618,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":74619,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":74620,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":74621,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":74622,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":74623,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":74624,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":74625,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":74626,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":74627,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":74628,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":74629,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":74630,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":74631,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":74632,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":74633,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":74634,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":74635,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":74636,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":74637,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":74638,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":74639,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":74640,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":74641,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":74642,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":74643,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":74644,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":74644,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":74645,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":74646,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":74647,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":74648,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":74649,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":74650,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":74651,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":74652,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":74653,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":74654,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":74655,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":74656,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":74657,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":74658,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":74659,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":74660,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":74661,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":74662,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":74663,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":74664,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":74665,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":74666,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":74667,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":74668,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":74669,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":74670,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":74671,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":74672,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"subject":{"_internalId":74673,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"date-meta":{"_internalId":74674,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":74675,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":74676,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":74677,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":74678,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":74679,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":74680,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":74681,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":74682,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":74683,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":74684,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":74685,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":74686,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":74687,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":74688,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":74688,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":74689,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":74690,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":74691,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":74692,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":74693,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":74694,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":74695,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":74696,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":74697,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":74698,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":74699,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":74700,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":74701,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":74702,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":74703,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":74704,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":74705,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":74706,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":74707,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":74708,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":74708,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":74709,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":74710,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-copy,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,editor_options,zotero,identifier,creator,contributor,type,format,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,subject,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,brand,css,html-math-method,html-q-tags,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,ascii,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":74712,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub2([-+].+)?$":{"_internalId":77403,"type":"anyOf","anyOf":[{"_internalId":77401,"type":"object","description":"be an object","properties":{"eval":{"_internalId":77264,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":77265,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":77266,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":77267,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":77268,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":77269,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":77270,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":77271,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":77272,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":77273,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":77274,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":77275,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":77276,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":77277,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":77278,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":77279,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":77280,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":77281,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":77282,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":77283,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":77284,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":77285,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":77286,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":77287,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":77288,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":77289,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":77290,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":77291,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":77292,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":77293,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":77294,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":77295,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":77296,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":77297,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":77298,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"type":{"_internalId":77299,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":77300,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":77301,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":77302,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":77303,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":77304,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":77305,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":77306,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":77307,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":77308,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":77309,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":77310,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":77311,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":77312,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":77313,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":77314,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":77315,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":77316,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":77317,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":77318,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":77319,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":77320,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":77321,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":77322,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":77323,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":77324,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":77325,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":77326,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":77327,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":77328,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":77329,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":77330,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":77331,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":77332,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":77333,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":77334,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":77334,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":77335,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":77336,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":77337,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":77338,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":77339,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":77340,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":77341,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":77342,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":77343,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":77344,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":77345,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":77346,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":77347,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":77348,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":77349,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":77350,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":77351,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":77352,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":77353,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":77354,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":77355,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":77356,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":77357,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":77358,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":77359,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":77360,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":77361,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":77362,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"subject":{"_internalId":77363,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"date-meta":{"_internalId":77364,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":77365,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":77366,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":77367,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":77368,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":77369,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":77370,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":77371,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":77372,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":77373,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":77374,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":77375,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":77376,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":77377,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":77378,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":77378,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":77379,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":77380,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":77381,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":77382,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":77383,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":77384,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":77385,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":77386,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":77387,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":77388,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":77389,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":77390,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":77391,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":77392,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":77393,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":77394,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":77395,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":77396,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":77397,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":77398,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":77398,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":77399,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":77400,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-copy,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,editor_options,zotero,identifier,creator,contributor,type,format,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,subject,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,brand,css,html-math-method,html-q-tags,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,ascii,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":77402,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub3([-+].+)?$":{"_internalId":80093,"type":"anyOf","anyOf":[{"_internalId":80091,"type":"object","description":"be an object","properties":{"eval":{"_internalId":79954,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":79955,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":79956,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":79957,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":79958,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":79959,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":79960,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":79961,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":79962,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":79963,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":79964,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":79965,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":79966,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":79967,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":79968,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":79969,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":79970,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":79971,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":79972,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":79973,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":79974,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":79975,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":79976,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":79977,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":79978,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":79979,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":79980,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":79981,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":79982,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":79983,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":79984,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":79985,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":79986,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":79987,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":79988,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"type":{"_internalId":79989,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":79990,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":79991,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":79992,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":79993,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":79994,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":79995,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":79996,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":79997,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":79998,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":79999,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":80000,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":80001,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":80002,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":80003,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":80004,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":80005,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":80006,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":80007,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":80008,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":80009,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":80010,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":80011,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":80012,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":80013,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":80014,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":80015,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":80016,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":80017,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":80018,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":80019,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":80020,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":80021,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":80022,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":80023,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":80024,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":80024,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":80025,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":80026,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":80027,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":80028,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":80029,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":80030,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":80031,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":80032,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":80033,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":80034,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":80035,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":80036,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":80037,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":80038,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":80039,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":80040,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":80041,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":80042,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":80043,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":80044,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":80045,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":80046,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":80047,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":80048,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":80049,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":80050,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":80051,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":80052,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"subject":{"_internalId":80053,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"date-meta":{"_internalId":80054,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":80055,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":80056,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":80057,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":80058,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":80059,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":80060,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":80061,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":80062,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":80063,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":80064,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":80065,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":80066,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":80067,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":80068,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":80068,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":80069,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":80070,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":80071,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":80072,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":80073,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":80074,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":80075,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":80076,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":80077,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":80078,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":80079,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":80080,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":80081,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":80082,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":80083,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":80084,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":80085,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":80086,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":80087,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":80088,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":80088,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":80089,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":80090,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-copy,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,editor_options,zotero,identifier,creator,contributor,type,format,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,subject,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,brand,css,html-math-method,html-q-tags,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,ascii,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":80092,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?fb2([-+].+)?$":{"_internalId":82742,"type":"anyOf","anyOf":[{"_internalId":82740,"type":"object","description":"be an object","properties":{"eval":{"_internalId":82644,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":82645,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":82646,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":82647,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":82648,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":82649,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":82650,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":82651,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":82652,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":82653,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":82654,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":82655,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":82656,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":82657,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":82658,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":82659,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":82660,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":82661,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":82662,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":82663,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":82664,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":82665,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":82666,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":82667,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":82668,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":82669,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":82670,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":82671,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":82672,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":82673,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":82674,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":82675,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":82676,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":82677,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":82678,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":82679,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":82679,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":82680,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":82681,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":82682,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":82683,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":82684,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":82685,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":82686,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":82687,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":82688,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":82689,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":82690,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":82691,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":82692,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":82693,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":82694,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":82695,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":82696,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":82697,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":82698,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":82699,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":82700,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":82701,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":82702,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":82703,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":82704,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":82705,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":82706,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":82707,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":82708,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":82709,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":82710,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":82711,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":82712,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":82713,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":82714,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":82715,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":82715,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":82716,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":82717,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":82718,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":82719,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":82720,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":82721,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":82722,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":82723,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":82724,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":82725,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":82726,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":82727,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":82728,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":82729,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":82730,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":82731,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":82732,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":82733,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":82734,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":82735,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":82736,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":82737,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":82738,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":82738,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":82739,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":82741,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?gfm([-+].+)?$":{"_internalId":85400,"type":"anyOf","anyOf":[{"_internalId":85398,"type":"object","description":"be an object","properties":{"eval":{"_internalId":85293,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":85294,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":85295,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":85296,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":85297,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":85298,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":85299,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":85300,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":85301,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":85302,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":85303,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":85304,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":85305,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":85306,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":85307,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":85308,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":85309,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":85310,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":85311,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":85312,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":85313,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":85314,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":85315,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":85316,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":85317,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":85318,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":85319,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":85320,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":85321,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":85322,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":85323,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":85324,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":85325,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":85326,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":85327,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":85328,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":85329,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":85329,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":85330,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":85331,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":85332,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":85333,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":85334,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":85335,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":85336,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":85337,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":85338,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":85339,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":85340,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":85341,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":85342,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":85343,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":85344,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":85345,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":85346,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":85347,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":85348,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":85349,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":85350,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":85351,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":85352,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":85353,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":85354,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":85355,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":85356,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":85357,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":85358,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":85359,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":85360,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"html-math-method":{"_internalId":85361,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"identifier-prefix":{"_internalId":85362,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":85363,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":85364,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":85365,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":85366,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":85367,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":85368,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":85369,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":85370,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":85371,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":85371,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":85372,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":85373,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":85374,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":85375,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":85376,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":85377,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":85378,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":85379,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":85380,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":85381,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":85382,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":85383,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":85384,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":85385,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":85386,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":85387,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":85388,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":85389,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":85390,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":85391,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":85392,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":85393,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":85394,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":85395,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":85396,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":85396,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":85397,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,html-math-method,identifier-prefix,variant,markdown-headings,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":85399,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?haddock([-+].+)?$":{"_internalId":88050,"type":"anyOf","anyOf":[{"_internalId":88048,"type":"object","description":"be an object","properties":{"eval":{"_internalId":87951,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":87952,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":87953,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":87954,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":87955,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":87956,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":87957,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":87958,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":87959,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":87960,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":87961,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":87962,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":87963,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":87964,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":87965,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":87966,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":87967,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":87968,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":87969,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":87970,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":87971,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":87972,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":87973,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":87974,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":87975,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":87976,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":87977,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":87978,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":87979,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":87980,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":87981,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":87982,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":87983,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":87984,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":87985,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":87986,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":87986,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":87987,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":87988,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":87989,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":87990,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":87991,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":87992,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":87993,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":87994,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":87995,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":87996,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":87997,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":87998,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":87999,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":88000,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":88001,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":88002,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":88003,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":88004,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":88005,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":88006,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":88007,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":88008,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":88009,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":88010,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":88011,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":88012,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":88013,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":88014,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":88015,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":88016,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":88017,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":88018,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":88019,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":88020,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":88021,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":88022,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":88023,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":88023,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":88024,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":88025,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":88026,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":88027,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":88028,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":88029,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":88030,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":88031,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":88032,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":88033,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":88034,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":88035,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":88036,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":88037,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":88038,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":88039,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":88040,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":88041,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":88042,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":88043,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":88044,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":88045,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":88046,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":88046,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":88047,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":88049,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html([-+].+)?$":{"_internalId":90808,"type":"anyOf","anyOf":[{"_internalId":90806,"type":"object","description":"be an object","properties":{"eval":{"_internalId":90601,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":90602,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":90603,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":90604,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":90605,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":90606,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":90607,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":90608,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":90609,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":90610,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":90611,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":90612,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":90613,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":90614,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":90615,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":90616,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":90617,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":90618,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":90619,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":90620,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":90621,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":90622,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":90623,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":90624,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":90625,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":90626,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":90627,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":90628,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":90629,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":90630,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":90631,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":90632,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":90633,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":90634,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":90635,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":90636,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":90637,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":90638,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":90639,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":90640,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":90641,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":90642,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":90643,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":90644,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":90645,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":90646,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":90647,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":90648,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":90649,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":90650,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":90651,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":90652,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":90653,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":90654,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":90655,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":90656,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":90657,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":90658,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":90659,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":90660,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":90661,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":90662,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":90663,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":90664,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":90665,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":90666,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":90667,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":90668,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":90669,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":90670,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":90671,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":90672,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":90673,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":90674,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":90674,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":90675,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":90676,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":90677,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":90678,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":90679,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":90680,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":90681,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":90682,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":90683,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":90684,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":90685,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":90686,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":90687,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":90688,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":90689,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":90690,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":90691,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":90692,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":90693,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":90694,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":90695,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":90696,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":90697,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":90698,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":90699,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":90700,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":90701,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":90702,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":90703,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":90704,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":90705,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":90706,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":90707,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":90708,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":90709,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":90710,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":90711,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":90712,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":90713,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":90714,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":90715,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":90716,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":90717,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":90718,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":90719,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":90720,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":90721,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":90722,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":90723,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":90724,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":90725,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":90726,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":90727,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":90728,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":90729,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":90730,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":90731,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":90732,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":90733,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":90734,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":90735,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":90736,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":90737,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":90738,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":90739,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":90740,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":90741,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":90742,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":90743,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":90744,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":90745,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":90746,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":90747,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":90748,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":90749,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":90750,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":90751,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":90752,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":90753,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":90754,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":90755,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":90756,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":90757,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":90758,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":90759,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":90760,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":90761,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":90762,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":90763,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":90764,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":90765,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":90766,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":90767,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":90768,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":90768,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":90769,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":90770,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":90771,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":90772,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":90773,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":90774,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":90775,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":90776,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":90777,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":90778,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":90779,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":90780,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":90781,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":90782,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":90783,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":90784,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":90785,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":90786,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":90787,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":90788,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":90789,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":90790,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":90791,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":90792,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":90792,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":90793,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":90794,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":90795,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":90796,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":90797,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":90798,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":90799,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":90800,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":90801,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":90802,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":90803,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":90804,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":90805,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,abstract,abstract-title,doi,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,linestretch,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,keep-source,keep-hidden,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,page-layout,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,copyright,license,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citation-location,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-location,toc-title,toc-expand,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_layout$|^pageLayout$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":90807,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html4([-+].+)?$":{"_internalId":93566,"type":"anyOf","anyOf":[{"_internalId":93564,"type":"object","description":"be an object","properties":{"eval":{"_internalId":93359,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":93360,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":93361,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":93362,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":93363,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":93364,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":93365,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":93366,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":93367,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":93368,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":93369,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":93370,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":93371,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":93372,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":93373,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":93374,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":93375,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":93376,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":93377,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":93378,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":93379,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":93380,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":93381,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":93382,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":93383,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":93384,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":93385,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":93386,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":93387,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":93388,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":93389,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":93390,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":93391,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":93392,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":93393,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":93394,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":93395,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":93396,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":93397,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":93398,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":93399,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":93400,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":93401,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":93402,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":93403,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":93404,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":93405,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":93406,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":93407,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":93408,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":93409,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":93410,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":93411,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":93412,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":93413,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":93414,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":93415,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":93416,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":93417,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":93418,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":93419,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":93420,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":93421,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":93422,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":93423,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":93424,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":93425,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":93426,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":93427,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":93428,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":93429,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":93430,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":93431,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":93432,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":93432,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":93433,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":93434,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":93435,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":93436,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":93437,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":93438,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":93439,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":93440,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":93441,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":93442,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":93443,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":93444,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":93445,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":93446,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":93447,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":93448,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":93449,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":93450,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":93451,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":93452,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":93453,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":93454,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":93455,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":93456,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":93457,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":93458,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":93459,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":93460,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":93461,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":93462,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":93463,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":93464,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":93465,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":93466,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":93467,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":93468,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":93469,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":93470,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":93471,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":93472,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":93473,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":93474,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":93475,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":93476,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":93477,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":93478,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":93479,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":93480,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":93481,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":93482,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":93483,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":93484,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":93485,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":93486,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":93487,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":93488,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":93489,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":93490,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":93491,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":93492,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":93493,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":93494,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":93495,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":93496,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":93497,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":93498,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":93499,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":93500,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":93501,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":93502,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":93503,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":93504,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":93505,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":93506,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":93507,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":93508,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":93509,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":93510,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":93511,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":93512,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":93513,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":93514,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":93515,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":93516,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":93517,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":93518,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":93519,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":93520,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":93521,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":93522,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":93523,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":93524,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":93525,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":93526,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":93526,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":93527,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":93528,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":93529,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":93530,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":93531,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":93532,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":93533,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":93534,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":93535,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":93536,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":93537,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":93538,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":93539,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":93540,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":93541,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":93542,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":93543,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":93544,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":93545,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":93546,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":93547,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":93548,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":93549,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":93550,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":93550,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":93551,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":93552,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":93553,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":93554,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":93555,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":93556,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":93557,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":93558,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":93559,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":93560,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":93561,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":93562,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":93563,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,abstract,abstract-title,doi,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,linestretch,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,keep-source,keep-hidden,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,page-layout,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,copyright,license,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citation-location,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-location,toc-title,toc-expand,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_layout$|^pageLayout$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":93565,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html5([-+].+)?$":{"_internalId":96324,"type":"anyOf","anyOf":[{"_internalId":96322,"type":"object","description":"be an object","properties":{"eval":{"_internalId":96117,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":96118,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":96119,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":96120,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":96121,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":96122,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":96123,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":96124,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":96125,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":96126,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":96127,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":96128,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":96129,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":96130,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":96131,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":96132,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":96133,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":96134,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":96135,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":96136,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":96137,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":96138,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":96139,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":96140,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":96141,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":96142,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":96143,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":96144,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":96145,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":96146,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":96147,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":96148,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":96149,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":96150,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":96151,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":96152,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":96153,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":96154,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":96155,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":96156,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":96157,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":96158,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":96159,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":96160,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":96161,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":96162,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":96163,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":96164,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":96165,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":96166,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":96167,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":96168,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":96169,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":96170,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":96171,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":96172,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":96173,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":96174,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":96175,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":96176,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":96177,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":96178,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":96179,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":96180,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":96181,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":96182,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":96183,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":96184,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":96185,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":96186,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":96187,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":96188,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":96189,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":96190,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":96190,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":96191,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":96192,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":96193,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":96194,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":96195,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":96196,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":96197,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":96198,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":96199,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":96200,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":96201,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":96202,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":96203,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":96204,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":96205,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":96206,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":96207,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":96208,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":96209,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":96210,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":96211,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":96212,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":96213,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":96214,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":96215,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":96216,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":96217,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":96218,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":96219,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":96220,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":96221,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":96222,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":96223,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":96224,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":96225,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":96226,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":96227,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":96228,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":96229,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":96230,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":96231,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":96232,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":96233,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":96234,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":96235,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":96236,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":96237,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":96238,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":96239,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":96240,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":96241,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":96242,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":96243,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":96244,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":96245,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":96246,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":96247,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":96248,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":96249,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":96250,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":96251,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":96252,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":96253,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":96254,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":96255,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":96256,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":96257,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":96258,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":96259,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":96260,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":96261,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":96262,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":96263,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":96264,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":96265,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":96266,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":96267,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":96268,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":96269,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":96270,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":96271,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":96272,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":96273,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":96274,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":96275,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":96276,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":96277,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":96278,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":96279,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":96280,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":96281,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":96282,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":96283,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":96284,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":96284,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":96285,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":96286,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":96287,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":96288,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":96289,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":96290,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":96291,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":96292,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":96293,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":96294,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":96295,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":96296,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":96297,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":96298,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":96299,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":96300,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":96301,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":96302,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":96303,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":96304,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":96305,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":96306,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":96307,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":96308,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":96308,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":96309,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":96310,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":96311,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":96312,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":96313,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":96314,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":96315,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":96316,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":96317,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":96318,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":96319,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":96320,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":96321,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,abstract,abstract-title,doi,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,linestretch,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,keep-source,keep-hidden,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,page-layout,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,copyright,license,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citation-location,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-location,toc-title,toc-expand,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_layout$|^pageLayout$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":96323,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?icml([-+].+)?$":{"_internalId":98973,"type":"anyOf","anyOf":[{"_internalId":98971,"type":"object","description":"be an object","properties":{"eval":{"_internalId":98875,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":98876,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":98877,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":98878,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":98879,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":98880,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":98881,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":98882,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":98883,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":98884,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":98885,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":98886,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":98887,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":98888,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":98889,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":98890,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":98891,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":98892,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":98893,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":98894,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":98895,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":98896,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":98897,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":98898,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":98899,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":98900,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":98901,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":98902,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":98903,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":98904,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":98905,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":98906,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":98907,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":98908,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":98909,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":98910,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":98910,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":98911,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":98912,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":98913,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":98914,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":98915,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":98916,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":98917,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":98918,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":98919,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":98920,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":98921,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":98922,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":98923,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":98924,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":98925,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":98926,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":98927,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":98928,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":98929,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":98930,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":98931,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":98932,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":98933,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":98934,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":98935,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":98936,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":98937,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":98938,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":98939,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":98940,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":98941,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":98942,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":98943,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":98944,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":98945,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":98946,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":98946,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":98947,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":98948,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":98949,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":98950,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":98951,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":98952,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":98953,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":98954,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":98955,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":98956,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":98957,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":98958,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":98959,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":98960,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":98961,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":98962,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":98963,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":98964,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":98965,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":98966,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":98967,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":98968,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":98969,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":98969,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":98970,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":98972,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?ipynb([-+].+)?$":{"_internalId":101616,"type":"anyOf","anyOf":[{"_internalId":101614,"type":"object","description":"be an object","properties":{"eval":{"_internalId":101524,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":101525,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":101526,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":101527,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":101528,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":101529,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":101530,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":101531,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":101532,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":101533,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":101534,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":101535,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":101536,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":101537,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":101538,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":101539,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":101540,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":101541,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":101542,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":101543,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":101544,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":101545,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":101546,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":101547,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":101548,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":101549,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":101550,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":101551,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":101552,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":101553,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":101554,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":101555,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":101556,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":101557,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":101558,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":101559,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":101559,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":101560,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":101561,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":101562,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":101563,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":101564,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":101565,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":101566,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":101567,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":101568,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":101569,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":101570,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":101571,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":101572,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":101573,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":101574,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":101575,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":101576,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":101577,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":101578,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":101579,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":101580,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":101581,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":101582,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":101583,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"markdown-headings":{"_internalId":101584,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"ipynb-output":{"_internalId":101585,"type":"ref","$ref":"quarto-resource-document-options-ipynb-output","description":"quarto-resource-document-options-ipynb-output"},"quarto-required":{"_internalId":101586,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":101587,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":101588,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":101589,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":101590,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":101591,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":101591,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":101592,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":101593,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":101594,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":101595,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":101596,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":101597,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":101598,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":101599,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":101600,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":101601,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":101602,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":101603,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":101604,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":101605,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":101606,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":101607,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":101608,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":101609,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":101610,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":101611,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":101612,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":101612,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":101613,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,markdown-headings,ipynb-output,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^markdown_headings$|^markdownHeadings$|^ipynb_output$|^ipynbOutput$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":101615,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats([-+].+)?$":{"_internalId":104268,"type":"anyOf","anyOf":[{"_internalId":104266,"type":"object","description":"be an object","properties":{"eval":{"_internalId":104167,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":104168,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":104169,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":104170,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":104171,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":104172,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":104173,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":104174,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":104175,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":104176,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":104177,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":104232,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":104179,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":104180,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":104181,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":104182,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":104183,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":104184,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":104185,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":104186,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":104187,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":104188,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":104189,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":104190,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":104191,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":104192,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":104193,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":104194,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":104195,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":104196,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":104197,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":104198,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":104199,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":104200,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":104201,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":104202,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":104203,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":104204,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":104205,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":104206,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":104207,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":104208,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":104209,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":104209,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":104210,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":104211,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":104212,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":104213,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":104214,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":104215,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":104216,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":104217,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":104218,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":104219,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":104220,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":104221,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":104222,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":104223,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":104224,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":104225,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":104226,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":104227,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":104228,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":104229,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":104230,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":104231,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":104233,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":104234,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":104235,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":104236,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":104237,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":104238,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":104239,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":104240,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":104241,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":104242,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":104243,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":104243,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":104244,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":104245,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":104246,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":104247,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":104248,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":104249,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":104250,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":104251,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":104252,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":104253,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":104254,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":104255,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":104256,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":104257,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":104258,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":104259,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":104260,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":104261,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":104262,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":104263,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":104264,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":104265,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":104267,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_archiving([-+].+)?$":{"_internalId":106920,"type":"anyOf","anyOf":[{"_internalId":106918,"type":"object","description":"be an object","properties":{"eval":{"_internalId":106819,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":106820,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":106821,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":106822,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":106823,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":106824,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":106825,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":106826,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":106827,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":106828,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":106829,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":106884,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":106831,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":106832,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":106833,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":106834,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":106835,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":106836,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":106837,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":106838,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":106839,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":106840,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":106841,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":106842,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":106843,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":106844,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":106845,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":106846,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":106847,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":106848,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":106849,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":106850,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":106851,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":106852,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":106853,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":106854,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":106855,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":106856,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":106857,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":106858,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":106859,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":106860,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":106861,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":106861,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":106862,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":106863,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":106864,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":106865,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":106866,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":106867,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":106868,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":106869,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":106870,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":106871,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":106872,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":106873,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":106874,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":106875,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":106876,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":106877,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":106878,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":106879,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":106880,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":106881,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":106882,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":106883,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":106885,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":106886,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":106887,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":106888,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":106889,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":106890,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":106891,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":106892,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":106893,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":106894,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":106895,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":106895,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":106896,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":106897,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":106898,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":106899,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":106900,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":106901,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":106902,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":106903,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":106904,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":106905,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":106906,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":106907,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":106908,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":106909,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":106910,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":106911,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":106912,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":106913,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":106914,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":106915,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":106916,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":106917,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":106919,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_articleauthoring([-+].+)?$":{"_internalId":109572,"type":"anyOf","anyOf":[{"_internalId":109570,"type":"object","description":"be an object","properties":{"eval":{"_internalId":109471,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":109472,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":109473,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":109474,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":109475,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":109476,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":109477,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":109478,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":109479,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":109480,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":109481,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":109536,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":109483,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":109484,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":109485,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":109486,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":109487,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":109488,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":109489,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":109490,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":109491,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":109492,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":109493,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":109494,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":109495,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":109496,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":109497,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":109498,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":109499,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":109500,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":109501,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":109502,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":109503,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":109504,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":109505,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":109506,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":109507,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":109508,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":109509,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":109510,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":109511,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":109512,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":109513,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":109513,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":109514,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":109515,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":109516,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":109517,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":109518,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":109519,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":109520,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":109521,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":109522,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":109523,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":109524,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":109525,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":109526,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":109527,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":109528,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":109529,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":109530,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":109531,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":109532,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":109533,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":109534,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":109535,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":109537,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":109538,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":109539,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":109540,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":109541,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":109542,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":109543,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":109544,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":109545,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":109546,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":109547,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":109547,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":109548,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":109549,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":109550,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":109551,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":109552,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":109553,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":109554,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":109555,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":109556,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":109557,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":109558,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":109559,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":109560,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":109561,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":109562,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":109563,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":109564,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":109565,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":109566,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":109567,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":109568,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":109569,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":109571,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_publishing([-+].+)?$":{"_internalId":112224,"type":"anyOf","anyOf":[{"_internalId":112222,"type":"object","description":"be an object","properties":{"eval":{"_internalId":112123,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":112124,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":112125,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":112126,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":112127,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":112128,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":112129,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":112130,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":112131,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":112132,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":112133,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":112188,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":112135,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":112136,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":112137,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":112138,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":112139,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":112140,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":112141,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":112142,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":112143,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":112144,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":112145,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":112146,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":112147,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":112148,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":112149,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":112150,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":112151,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":112152,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":112153,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":112154,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":112155,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":112156,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":112157,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":112158,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":112159,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":112160,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":112161,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":112162,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":112163,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":112164,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":112165,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":112165,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":112166,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":112167,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":112168,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":112169,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":112170,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":112171,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":112172,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":112173,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":112174,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":112175,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":112176,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":112177,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":112178,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":112179,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":112180,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":112181,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":112182,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":112183,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":112184,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":112185,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":112186,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":112187,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":112189,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":112190,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":112191,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":112192,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":112193,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":112194,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":112195,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":112196,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":112197,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":112198,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":112199,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":112199,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":112200,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":112201,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":112202,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":112203,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":112204,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":112205,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":112206,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":112207,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":112208,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":112209,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":112210,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":112211,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":112212,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":112213,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":112214,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":112215,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":112216,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":112217,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":112218,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":112219,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":112220,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":112221,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":112223,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jira([-+].+)?$":{"_internalId":114873,"type":"anyOf","anyOf":[{"_internalId":114871,"type":"object","description":"be an object","properties":{"eval":{"_internalId":114775,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":114776,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":114777,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":114778,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":114779,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":114780,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":114781,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":114782,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":114783,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":114784,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":114785,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":114786,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":114787,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":114788,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":114789,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":114790,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":114791,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":114792,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":114793,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":114794,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":114795,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":114796,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":114797,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":114798,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":114799,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":114800,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":114801,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":114802,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":114803,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":114804,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":114805,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":114806,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":114807,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":114808,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":114809,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":114810,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":114810,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":114811,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":114812,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":114813,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":114814,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":114815,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":114816,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":114817,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":114818,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":114819,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":114820,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":114821,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":114822,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":114823,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":114824,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":114825,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":114826,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":114827,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":114828,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":114829,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":114830,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":114831,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":114832,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":114833,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":114834,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":114835,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":114836,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":114837,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":114838,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":114839,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":114840,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":114841,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":114842,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":114843,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":114844,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":114845,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":114846,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":114846,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":114847,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":114848,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":114849,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":114850,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":114851,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":114852,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":114853,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":114854,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":114855,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":114856,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":114857,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":114858,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":114859,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":114860,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":114861,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":114862,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":114863,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":114864,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":114865,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":114866,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":114867,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":114868,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":114869,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":114869,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":114870,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":114872,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?json([-+].+)?$":{"_internalId":117522,"type":"anyOf","anyOf":[{"_internalId":117520,"type":"object","description":"be an object","properties":{"eval":{"_internalId":117424,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":117425,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":117426,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":117427,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":117428,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":117429,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":117430,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":117431,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":117432,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":117433,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":117434,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":117435,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":117436,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":117437,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":117438,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":117439,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":117440,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":117441,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":117442,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":117443,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":117444,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":117445,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":117446,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":117447,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":117448,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":117449,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":117450,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":117451,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":117452,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":117453,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":117454,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":117455,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":117456,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":117457,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":117458,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":117459,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":117459,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":117460,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":117461,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":117462,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":117463,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":117464,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":117465,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":117466,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":117467,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":117468,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":117469,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":117470,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":117471,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":117472,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":117473,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":117474,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":117475,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":117476,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":117477,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":117478,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":117479,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":117480,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":117481,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":117482,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":117483,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":117484,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":117485,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":117486,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":117487,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":117488,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":117489,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":117490,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":117491,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":117492,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":117493,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":117494,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":117495,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":117495,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":117496,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":117497,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":117498,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":117499,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":117500,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":117501,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":117502,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":117503,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":117504,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":117505,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":117506,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":117507,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":117508,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":117509,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":117510,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":117511,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":117512,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":117513,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":117514,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":117515,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":117516,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":117517,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":117518,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":117518,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":117519,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":117521,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?latex([-+].+)?$":{"_internalId":120247,"type":"anyOf","anyOf":[{"_internalId":120245,"type":"object","description":"be an object","properties":{"eval":{"_internalId":120073,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":120074,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":120075,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":120076,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":120077,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":120078,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":120079,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":120080,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":120081,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":120082,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":120083,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":120084,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":120085,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":120086,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":120087,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":120088,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":120089,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":120090,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":120091,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":120092,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":120093,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":120094,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":120095,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":120096,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":120097,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":120098,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":120099,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":120100,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":120101,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":120102,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":120103,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":120104,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":120105,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":120106,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":120107,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":120108,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":120109,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":120110,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":120111,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":120112,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":120113,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":120114,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":120115,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":120116,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":120117,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":120118,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":120119,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":120120,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":120121,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":120122,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":120123,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":120124,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":120125,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":120126,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":120127,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":120128,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":120129,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":120130,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":120131,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":120132,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":120133,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":120134,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":120135,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":120136,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":120137,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":120138,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":120139,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":120140,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":120141,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":120142,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":120143,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":120144,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":120145,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":120146,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":120147,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":120148,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"funding":{"_internalId":120149,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":120150,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":120150,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":120151,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":120152,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":120153,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":120154,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":120155,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":120156,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":120157,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":120158,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":120159,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":120160,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":120161,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":120162,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":120163,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":120164,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":120165,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":120166,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":120167,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":120168,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":120169,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":120170,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":120171,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":120172,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":120173,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":120174,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":120175,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":120176,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":120177,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"documentclass":{"_internalId":120178,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":120179,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":120180,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":120181,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"margin-left":{"_internalId":120182,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":120183,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":120184,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":120185,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":120186,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":120187,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":120188,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":120189,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":120190,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":120191,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":120192,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":120193,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":120194,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":120195,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":120196,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":120197,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":120198,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":120199,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":120200,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":120201,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":120202,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":120203,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":120204,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdf-standard":{"_internalId":120205,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":120206,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":120207,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":120208,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":120209,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":120210,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":120211,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":120212,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":120213,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":120214,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":120215,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":120216,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":120217,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":120218,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":120219,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":120219,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":120220,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":120221,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":120222,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":120223,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":120224,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":120225,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":120226,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":120227,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":120228,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":120229,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":120230,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":120231,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":120232,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":120233,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":120234,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":120235,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":120236,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":120237,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"df-print":{"_internalId":120238,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":120239,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":120240,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":120240,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":120241,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":120242,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":120243,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":120244,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,thanks,order,citation,code-annotations,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,linkcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,CJKoptions,microtypeoptions,linestretch,links-as-notes,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,documentclass,classoption,pagestyle,papersize,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,keywords,subject,title-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,shift-heading-level-by,top-level-division,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,quarto-required,pdf-standard,bibliography,csl,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,use-rsvg-convert,df-print,ascii,toc,table-of-contents,toc-depth,toc-title,lof,lot","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^cjkmainfont$|^cjkmainfont$|^cjkoptions$|^cjkoptions$|^links_as_notes$|^linksAsNotes$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^title_meta$|^titleMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^pdf_standard$|^pdfStandard$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":120246,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?man([-+].+)?$":{"_internalId":122899,"type":"anyOf","anyOf":[{"_internalId":122897,"type":"object","description":"be an object","properties":{"eval":{"_internalId":122798,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":122799,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":122800,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":122801,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":122802,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":122803,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":122804,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":122805,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":122806,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":122807,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":122808,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":122809,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":122810,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":122811,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":122812,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":122813,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":122814,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":122815,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":122816,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":122817,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":122818,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":122819,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":122820,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":122821,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":122822,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":122823,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":122824,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":122825,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":122826,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":122827,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":122828,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":122829,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":122830,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":122831,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"adjusting":{"_internalId":122832,"type":"ref","$ref":"quarto-resource-document-formatting-adjusting","description":"quarto-resource-document-formatting-adjusting"},"hyphenate":{"_internalId":122833,"type":"ref","$ref":"quarto-resource-document-formatting-hyphenate","description":"quarto-resource-document-formatting-hyphenate"},"funding":{"_internalId":122834,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":122835,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":122835,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":122836,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":122837,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":122838,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":122839,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":122840,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":122841,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":122842,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":122843,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":122844,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":122845,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":122846,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":122847,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":122848,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":122849,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":122850,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":122851,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":122852,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":122853,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":122854,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":122855,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":122856,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":122857,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"footer":{"_internalId":122858,"type":"ref","$ref":"quarto-resource-document-includes-footer","description":"quarto-resource-document-includes-footer"},"header":{"_internalId":122859,"type":"ref","$ref":"quarto-resource-document-includes-header","description":"quarto-resource-document-includes-header"},"metadata-file":{"_internalId":122860,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":122861,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":122862,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":122863,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":122864,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":122865,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":122866,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":122867,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"section":{"_internalId":122868,"type":"ref","$ref":"quarto-resource-document-options-section","description":"quarto-resource-document-options-section"},"quarto-required":{"_internalId":122869,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":122870,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":122871,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":122872,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":122873,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":122874,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":122874,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":122875,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":122876,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":122877,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":122878,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":122879,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":122880,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":122881,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":122882,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":122883,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":122884,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":122885,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":122886,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":122887,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":122888,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":122889,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":122890,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":122891,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":122892,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":122893,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":122894,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":122895,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":122896,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,adjusting,hyphenate,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,footer,header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,section,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":122898,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown([-+].+)?$":{"_internalId":125555,"type":"anyOf","anyOf":[{"_internalId":125553,"type":"object","description":"be an object","properties":{"eval":{"_internalId":125450,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":125451,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":125452,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":125453,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":125454,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":125455,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":125456,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":125457,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":125458,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":125459,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":125460,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":125461,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":125462,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":125463,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":125464,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":125465,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":125466,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":125467,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":125468,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":125469,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":125470,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":125471,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":125472,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":125473,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":125474,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":125475,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":125476,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":125477,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":125478,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":125479,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":125480,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":125481,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":125482,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":125483,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":125484,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":125485,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":125486,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":125486,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":125487,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":125488,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":125489,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":125490,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":125491,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":125492,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":125493,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":125494,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":125495,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":125496,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":125497,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":125498,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":125499,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":125500,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":125501,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":125502,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":125503,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":125504,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":125505,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":125506,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":125507,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":125508,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":125509,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":125510,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":125511,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":125512,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":125513,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":125514,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":125515,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":125516,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":125517,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":125518,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":125519,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":125520,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":125521,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":125522,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":125523,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":125524,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":125525,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":125526,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":125526,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":125527,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":125528,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":125529,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":125530,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":125531,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":125532,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":125533,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":125534,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":125535,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":125536,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":125537,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":125538,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":125539,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":125540,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":125541,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":125542,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":125543,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":125544,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":125545,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":125546,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":125547,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":125548,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":125549,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":125550,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":125551,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":125551,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":125552,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":125554,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_github([-+].+)?$":{"_internalId":128204,"type":"anyOf","anyOf":[{"_internalId":128202,"type":"object","description":"be an object","properties":{"eval":{"_internalId":128106,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":128107,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":128108,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":128109,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":128110,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":128111,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":128112,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":128113,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":128114,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":128115,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":128116,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":128117,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":128118,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":128119,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":128120,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":128121,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":128122,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":128123,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":128124,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":128125,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":128126,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":128127,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":128128,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":128129,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":128130,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":128131,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":128132,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":128133,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":128134,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":128135,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":128136,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":128137,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":128138,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":128139,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":128140,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":128141,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":128141,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":128142,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":128143,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":128144,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":128145,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":128146,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":128147,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":128148,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":128149,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":128150,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":128151,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":128152,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":128153,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":128154,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":128155,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":128156,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":128157,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":128158,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":128159,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":128160,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":128161,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":128162,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":128163,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":128164,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":128165,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":128166,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":128167,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":128168,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":128169,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":128170,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":128171,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":128172,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":128173,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":128174,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":128175,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":128176,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":128177,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":128177,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":128178,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":128179,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":128180,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":128181,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":128182,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":128183,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":128184,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":128185,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":128186,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":128187,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":128188,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":128189,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":128190,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":128191,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":128192,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":128193,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":128194,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":128195,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":128196,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":128197,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":128198,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":128199,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":128200,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":128200,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":128201,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":128203,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_mmd([-+].+)?$":{"_internalId":130853,"type":"anyOf","anyOf":[{"_internalId":130851,"type":"object","description":"be an object","properties":{"eval":{"_internalId":130755,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":130756,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":130757,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":130758,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":130759,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":130760,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":130761,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":130762,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":130763,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":130764,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":130765,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":130766,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":130767,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":130768,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":130769,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":130770,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":130771,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":130772,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":130773,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":130774,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":130775,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":130776,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":130777,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":130778,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":130779,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":130780,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":130781,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":130782,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":130783,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":130784,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":130785,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":130786,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":130787,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":130788,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":130789,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":130790,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":130790,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":130791,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":130792,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":130793,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":130794,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":130795,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":130796,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":130797,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":130798,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":130799,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":130800,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":130801,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":130802,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":130803,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":130804,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":130805,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":130806,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":130807,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":130808,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":130809,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":130810,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":130811,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":130812,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":130813,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":130814,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":130815,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":130816,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":130817,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":130818,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":130819,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":130820,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":130821,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":130822,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":130823,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":130824,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":130825,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":130826,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":130826,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":130827,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":130828,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":130829,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":130830,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":130831,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":130832,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":130833,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":130834,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":130835,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":130836,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":130837,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":130838,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":130839,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":130840,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":130841,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":130842,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":130843,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":130844,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":130845,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":130846,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":130847,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":130848,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":130849,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":130849,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":130850,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":130852,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_phpextra([-+].+)?$":{"_internalId":133502,"type":"anyOf","anyOf":[{"_internalId":133500,"type":"object","description":"be an object","properties":{"eval":{"_internalId":133404,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":133405,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":133406,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":133407,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":133408,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":133409,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":133410,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":133411,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":133412,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":133413,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":133414,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":133415,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":133416,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":133417,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":133418,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":133419,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":133420,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":133421,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":133422,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":133423,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":133424,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":133425,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":133426,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":133427,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":133428,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":133429,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":133430,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":133431,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":133432,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":133433,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":133434,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":133435,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":133436,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":133437,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":133438,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":133439,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":133439,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":133440,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":133441,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":133442,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":133443,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":133444,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":133445,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":133446,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":133447,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":133448,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":133449,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":133450,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":133451,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":133452,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":133453,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":133454,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":133455,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":133456,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":133457,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":133458,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":133459,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":133460,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":133461,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":133462,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":133463,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":133464,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":133465,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":133466,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":133467,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":133468,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":133469,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":133470,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":133471,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":133472,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":133473,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":133474,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":133475,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":133475,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":133476,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":133477,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":133478,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":133479,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":133480,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":133481,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":133482,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":133483,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":133484,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":133485,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":133486,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":133487,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":133488,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":133489,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":133490,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":133491,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":133492,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":133493,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":133494,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":133495,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":133496,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":133497,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":133498,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":133498,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":133499,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":133501,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_strict([-+].+)?$":{"_internalId":136151,"type":"anyOf","anyOf":[{"_internalId":136149,"type":"object","description":"be an object","properties":{"eval":{"_internalId":136053,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":136054,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":136055,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":136056,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":136057,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":136058,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":136059,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":136060,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":136061,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":136062,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":136063,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":136064,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":136065,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":136066,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":136067,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":136068,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":136069,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":136070,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":136071,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":136072,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":136073,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":136074,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":136075,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":136076,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":136077,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":136078,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":136079,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":136080,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":136081,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":136082,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":136083,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":136084,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":136085,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":136086,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":136087,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":136088,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":136088,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":136089,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":136090,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":136091,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":136092,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":136093,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":136094,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":136095,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":136096,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":136097,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":136098,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":136099,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":136100,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":136101,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":136102,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":136103,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":136104,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":136105,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":136106,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":136107,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":136108,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":136109,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":136110,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":136111,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":136112,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":136113,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":136114,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":136115,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":136116,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":136117,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":136118,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":136119,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":136120,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":136121,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":136122,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":136123,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":136124,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":136124,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":136125,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":136126,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":136127,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":136128,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":136129,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":136130,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":136131,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":136132,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":136133,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":136134,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":136135,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":136136,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":136137,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":136138,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":136139,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":136140,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":136141,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":136142,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":136143,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":136144,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":136145,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":136146,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":136147,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":136147,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":136148,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":136150,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markua([-+].+)?$":{"_internalId":138807,"type":"anyOf","anyOf":[{"_internalId":138805,"type":"object","description":"be an object","properties":{"eval":{"_internalId":138702,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":138703,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":138704,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":138705,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":138706,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":138707,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":138708,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":138709,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":138710,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":138711,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":138712,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":138713,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":138714,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":138715,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":138716,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":138717,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":138718,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":138719,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":138720,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":138721,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":138722,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":138723,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":138724,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":138725,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":138726,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":138727,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":138728,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":138729,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":138730,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":138731,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":138732,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":138733,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":138734,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":138735,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":138736,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":138737,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":138738,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":138738,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":138739,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":138740,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":138741,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":138742,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":138743,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":138744,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":138745,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":138746,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":138747,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":138748,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":138749,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":138750,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":138751,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":138752,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":138753,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":138754,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":138755,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":138756,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":138757,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":138758,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":138759,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":138760,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":138761,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":138762,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":138763,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":138764,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":138765,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":138766,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":138767,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":138768,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":138769,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":138770,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":138771,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":138772,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":138773,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":138774,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":138775,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":138776,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":138777,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":138778,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":138778,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":138779,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":138780,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":138781,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":138782,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":138783,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":138784,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":138785,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":138786,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":138787,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":138788,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":138789,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":138790,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":138791,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":138792,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":138793,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":138794,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":138795,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":138796,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":138797,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":138798,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":138799,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":138800,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":138801,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":138802,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":138803,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":138803,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":138804,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":138806,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?mediawiki([-+].+)?$":{"_internalId":141456,"type":"anyOf","anyOf":[{"_internalId":141454,"type":"object","description":"be an object","properties":{"eval":{"_internalId":141358,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":141359,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":141360,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":141361,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":141362,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":141363,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":141364,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":141365,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":141366,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":141367,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":141368,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":141369,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":141370,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":141371,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":141372,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":141373,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":141374,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":141375,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":141376,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":141377,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":141378,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":141379,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":141380,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":141381,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":141382,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":141383,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":141384,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":141385,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":141386,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":141387,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":141388,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":141389,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":141390,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":141391,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":141392,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":141393,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":141393,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":141394,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":141395,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":141396,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":141397,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":141398,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":141399,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":141400,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":141401,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":141402,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":141403,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":141404,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":141405,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":141406,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":141407,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":141408,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":141409,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":141410,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":141411,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":141412,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":141413,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":141414,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":141415,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":141416,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":141417,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":141418,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":141419,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":141420,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":141421,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":141422,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":141423,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":141424,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":141425,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":141426,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":141427,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":141428,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":141429,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":141429,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":141430,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":141431,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":141432,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":141433,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":141434,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":141435,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":141436,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":141437,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":141438,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":141439,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":141440,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":141441,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":141442,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":141443,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":141444,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":141445,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":141446,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":141447,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":141448,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":141449,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":141450,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":141451,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":141452,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":141452,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":141453,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":141455,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?ms([-+].+)?$":{"_internalId":144120,"type":"anyOf","anyOf":[{"_internalId":144118,"type":"object","description":"be an object","properties":{"eval":{"_internalId":144007,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":144008,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":144009,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"output":{"_internalId":144010,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":144011,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":144012,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":144013,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":144014,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":144015,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":144016,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":144017,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":144018,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":144019,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":144020,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":144021,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":144022,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":144023,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":144024,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":144025,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":144026,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":144027,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":144028,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":144029,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":144030,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":144031,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":144032,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":144033,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":144034,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":144035,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":144036,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":144037,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":144038,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":144039,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":144040,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":144041,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":144042,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":144043,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":144044,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":144045,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":144046,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":144047,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fontfamily":{"_internalId":144048,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"pointsize":{"_internalId":144049,"type":"ref","$ref":"quarto-resource-document-fonts-pointsize","description":"quarto-resource-document-fonts-pointsize"},"lineheight":{"_internalId":144050,"type":"ref","$ref":"quarto-resource-document-fonts-lineheight","description":"quarto-resource-document-fonts-lineheight"},"funding":{"_internalId":144051,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":144052,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":144052,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":144053,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":144054,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":144055,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":144056,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":144057,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":144058,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":144059,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":144060,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":144061,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":144062,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":144063,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":144064,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":144065,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":144066,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":144067,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":144068,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":144069,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":144070,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":144071,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":144072,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":144073,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":144074,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":144075,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":144076,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":144077,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":144078,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":144079,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"indent":{"_internalId":144080,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"number-sections":{"_internalId":144081,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":144082,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":144083,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":144084,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":144085,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":144086,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":144087,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":144088,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":144089,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":144090,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":144091,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":144092,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":144092,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":144093,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":144094,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":144095,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":144096,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":144097,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":144098,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":144099,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":144100,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":144101,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":144102,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":144103,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":144104,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":144105,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":144106,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":144107,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":144108,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":144109,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":144110,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":144111,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":144112,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":144113,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":144114,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"ascii":{"_internalId":144115,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":144116,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":144116,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":144117,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,output,warning,error,include,title,date,date-format,author,abstract,order,citation,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fontfamily,pointsize,lineheight,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,indent,number-sections,shift-heading-level-by,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":144119,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?muse([-+].+)?$":{"_internalId":146771,"type":"anyOf","anyOf":[{"_internalId":146769,"type":"object","description":"be an object","properties":{"eval":{"_internalId":146671,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":146672,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":146673,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":146674,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":146675,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":146676,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":146677,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":146678,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":146679,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":146680,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":146681,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":146682,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":146683,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":146684,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":146685,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":146686,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":146687,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":146688,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":146689,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":146690,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":146691,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":146692,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":146693,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":146694,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":146695,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":146696,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":146697,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":146698,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":146699,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":146700,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":146701,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":146702,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":146703,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":146704,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":146705,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":146706,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":146707,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":146708,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":146708,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":146709,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":146710,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":146711,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":146712,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":146713,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":146714,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":146715,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":146716,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":146717,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":146718,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":146719,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":146720,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":146721,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":146722,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":146723,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":146724,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":146725,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":146726,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":146727,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":146728,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":146729,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":146730,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":146731,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":146732,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":146733,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":146734,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":146735,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":146736,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":146737,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":146738,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":146739,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":146740,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":146741,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":146742,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":146743,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":146744,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":146744,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":146745,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":146746,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":146747,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":146748,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":146749,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":146750,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":146751,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":146752,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":146753,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":146754,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":146755,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":146756,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":146757,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":146758,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":146759,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":146760,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":146761,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":146762,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":146763,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":146764,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":146765,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":146766,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":146767,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":146767,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":146768,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,subtitle,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":146770,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?native([-+].+)?$":{"_internalId":149420,"type":"anyOf","anyOf":[{"_internalId":149418,"type":"object","description":"be an object","properties":{"eval":{"_internalId":149322,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":149323,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":149324,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":149325,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":149326,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":149327,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":149328,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":149329,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":149330,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":149331,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":149332,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":149333,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":149334,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":149335,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":149336,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":149337,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":149338,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":149339,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":149340,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":149341,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":149342,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":149343,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":149344,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":149345,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":149346,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":149347,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":149348,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":149349,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":149350,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":149351,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":149352,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":149353,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":149354,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":149355,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":149356,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":149357,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":149357,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":149358,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":149359,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":149360,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":149361,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":149362,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":149363,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":149364,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":149365,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":149366,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":149367,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":149368,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":149369,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":149370,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":149371,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":149372,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":149373,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":149374,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":149375,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":149376,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":149377,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":149378,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":149379,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":149380,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":149381,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":149382,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":149383,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":149384,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":149385,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":149386,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":149387,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":149388,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":149389,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":149390,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":149391,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":149392,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":149393,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":149393,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":149394,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":149395,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":149396,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":149397,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":149398,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":149399,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":149400,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":149401,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":149402,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":149403,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":149404,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":149405,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":149406,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":149407,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":149408,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":149409,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":149410,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":149411,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":149412,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":149413,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":149414,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":149415,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":149416,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":149416,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":149417,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":149419,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?odt([-+].+)?$":{"_internalId":152074,"type":"anyOf","anyOf":[{"_internalId":152072,"type":"object","description":"be an object","properties":{"eval":{"_internalId":151971,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":151972,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":151973,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":151974,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":151975,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":151976,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":151977,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":151978,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":151979,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":151980,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":151981,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":151982,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":151983,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":151984,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":151985,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":151986,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":151987,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":151988,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":151989,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":151990,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":151991,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":151992,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":151993,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":151994,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":151995,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":151996,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":151997,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":151998,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":151999,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":152000,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":152001,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":152002,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":152003,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":152004,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":152005,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":152006,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":152007,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":152008,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":152009,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":152009,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":152010,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":152011,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":152012,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":152013,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":152014,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":152015,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":152016,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":152017,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":152018,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":152019,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":152020,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":152021,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":152022,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":152023,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":152024,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":152025,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":152026,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":152027,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":152028,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":152029,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":152030,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":152031,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":152032,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":152033,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":152034,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":152035,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":152036,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":152037,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"keywords":{"_internalId":152038,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":152039,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":152040,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"number-sections":{"_internalId":152041,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":152042,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":152043,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":152044,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":152045,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":152046,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":152047,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":152048,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":152049,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":152050,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":152050,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":152051,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":152052,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":152053,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":152054,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":152055,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":152056,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":152057,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":152058,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":152059,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":152060,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":152061,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":152062,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":152063,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":152064,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":152065,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":152066,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":152067,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":152068,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":152069,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":152069,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":152070,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":152071,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,subtitle,date,date-format,author,abstract,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,page-width,keywords,subject,description,number-sections,shift-heading-level-by,reference-doc,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_width$|^pageWidth$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^reference_doc$|^referenceDoc$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":152073,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?opendocument([-+].+)?$":{"_internalId":154722,"type":"anyOf","anyOf":[{"_internalId":154720,"type":"object","description":"be an object","properties":{"eval":{"_internalId":154625,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":154626,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":154627,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":154628,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":154629,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":154630,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":154631,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":154632,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":154633,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":154634,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":154635,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":154636,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":154637,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":154638,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":154639,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":154640,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":154641,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":154642,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":154643,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":154644,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":154645,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":154646,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":154647,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":154648,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":154649,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":154650,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":154651,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":154652,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":154653,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":154654,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":154655,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":154656,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":154657,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":154658,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":154659,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":154660,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":154661,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":154661,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":154662,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":154663,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":154664,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":154665,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":154666,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":154667,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":154668,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":154669,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":154670,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":154671,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":154672,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":154673,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":154674,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":154675,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":154676,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":154677,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":154678,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":154679,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":154680,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":154681,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":154682,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":154683,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":154684,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":154685,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":154686,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":154687,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":154688,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":154689,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"number-sections":{"_internalId":154690,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":154691,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":154692,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":154693,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":154694,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":154695,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":154696,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":154697,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":154698,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":154698,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":154699,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":154700,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":154701,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":154702,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":154703,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":154704,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":154705,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":154706,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":154707,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":154708,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":154709,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":154710,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":154711,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":154712,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":154713,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":154714,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":154715,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":154716,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":154717,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":154717,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":154718,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":154719,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,page-width,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_width$|^pageWidth$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":154721,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?opml([-+].+)?$":{"_internalId":157371,"type":"anyOf","anyOf":[{"_internalId":157369,"type":"object","description":"be an object","properties":{"eval":{"_internalId":157273,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":157274,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":157275,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":157276,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":157277,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":157278,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":157279,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":157280,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":157281,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":157282,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":157283,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":157284,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":157285,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":157286,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":157287,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":157288,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":157289,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":157290,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":157291,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":157292,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":157293,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":157294,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":157295,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":157296,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":157297,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":157298,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":157299,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":157300,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":157301,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":157302,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":157303,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":157304,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":157305,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":157306,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":157307,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":157308,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":157308,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":157309,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":157310,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":157311,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":157312,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":157313,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":157314,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":157315,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":157316,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":157317,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":157318,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":157319,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":157320,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":157321,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":157322,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":157323,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":157324,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":157325,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":157326,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":157327,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":157328,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":157329,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":157330,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":157331,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":157332,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":157333,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":157334,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":157335,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":157336,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":157337,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":157338,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":157339,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":157340,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":157341,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":157342,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":157343,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":157344,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":157344,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":157345,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":157346,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":157347,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":157348,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":157349,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":157350,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":157351,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":157352,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":157353,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":157354,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":157355,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":157356,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":157357,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":157358,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":157359,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":157360,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":157361,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":157362,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":157363,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":157364,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":157365,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":157366,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":157367,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":157367,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":157368,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":157370,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?org([-+].+)?$":{"_internalId":160020,"type":"anyOf","anyOf":[{"_internalId":160018,"type":"object","description":"be an object","properties":{"eval":{"_internalId":159922,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":159923,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":159924,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":159925,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":159926,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":159927,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":159928,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":159929,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":159930,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":159931,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":159932,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":159933,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":159934,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":159935,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":159936,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":159937,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":159938,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":159939,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":159940,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":159941,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":159942,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":159943,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":159944,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":159945,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":159946,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":159947,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":159948,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":159949,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":159950,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":159951,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":159952,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":159953,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":159954,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":159955,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":159956,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":159957,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":159957,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":159958,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":159959,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":159960,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":159961,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":159962,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":159963,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":159964,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":159965,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":159966,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":159967,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":159968,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":159969,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":159970,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":159971,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":159972,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":159973,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":159974,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":159975,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":159976,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":159977,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":159978,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":159979,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":159980,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":159981,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":159982,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":159983,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":159984,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":159985,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":159986,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":159987,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":159988,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":159989,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":159990,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":159991,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":159992,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":159993,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":159993,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":159994,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":159995,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":159996,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":159997,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":159998,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":159999,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":160000,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":160001,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":160002,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":160003,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":160004,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":160005,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":160006,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":160007,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":160008,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":160009,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":160010,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":160011,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":160012,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":160013,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":160014,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":160015,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":160016,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":160016,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":160017,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":160019,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?pdf([-+].+)?$":{"_internalId":162760,"type":"anyOf","anyOf":[{"_internalId":162758,"type":"object","description":"be an object","properties":{"eval":{"_internalId":162571,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":162572,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":162573,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":162574,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":162575,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":162576,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":162577,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":162578,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":162579,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":162580,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":162581,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":162582,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":162583,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":162584,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":162585,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":162586,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":162587,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":162588,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":162589,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":162590,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":162591,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":162592,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":162593,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":162594,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":162595,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":162596,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":162597,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":162598,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":162599,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":162600,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":162601,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":162602,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":162603,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":162604,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":162605,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":162606,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":162607,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":162608,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":162609,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":162610,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":162611,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":162612,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":162613,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":162614,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":162615,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":162616,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":162617,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":162618,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":162619,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":162620,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":162621,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":162622,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":162623,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":162624,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":162625,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":162626,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":162627,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":162628,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":162629,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":162630,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":162631,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":162632,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":162633,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":162634,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":162635,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":162636,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":162637,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":162638,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":162639,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":162640,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":162641,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":162642,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":162643,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":162644,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":162645,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":162646,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"reference-location":{"_internalId":162647,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":162648,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":162649,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":162649,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":162650,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":162651,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":162652,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":162653,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":162654,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":162655,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":162656,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":162657,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":162658,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":162659,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":162660,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":162661,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":162662,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":162663,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":162664,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":162665,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":162666,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":162667,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":162668,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":162669,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":162670,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":162671,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":162672,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":162673,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":162674,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":162675,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":162676,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":162677,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":162678,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":162679,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":162680,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":162681,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":162682,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":162683,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":162684,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":162685,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":162686,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":162687,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":162688,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":162689,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":162690,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":162691,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":162692,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"margin-left":{"_internalId":162693,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":162694,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":162695,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":162696,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":162697,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":162698,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":162699,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":162700,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":162701,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":162702,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":162703,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":162704,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":162705,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":162706,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":162707,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":162708,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":162709,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":162710,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":162711,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":162712,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":162713,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":162714,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beamerarticle":{"_internalId":162715,"type":"ref","$ref":"quarto-resource-document-options-beamerarticle","description":"quarto-resource-document-options-beamerarticle"},"quarto-required":{"_internalId":162716,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdf-standard":{"_internalId":162717,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":162718,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":162719,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":162720,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":162721,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":162722,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":162723,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":162724,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":162725,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":162726,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":162727,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":162728,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":162729,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":162730,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":162731,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":162731,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":162732,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":162733,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":162734,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":162735,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":162736,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":162737,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":162738,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":162739,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":162740,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":162741,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":162742,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-tex":{"_internalId":162743,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":162744,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":162745,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":162746,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":162747,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":162748,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":162749,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":162750,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"df-print":{"_internalId":162751,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":162752,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":162753,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":162753,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":162754,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":162755,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":162756,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":162757,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,thanks,order,citation,code-annotations,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,linkcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,CJKoptions,microtypeoptions,linestretch,links-as-notes,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,shorthands,dir,latex-auto-mk,latex-auto-install,latex-min-runs,latex-max-runs,latex-clean,latex-makeindex,latex-makeindex-opts,latex-tlmgr-opts,latex-output-dir,latex-tinytex,latex-input-paths,documentclass,classoption,pagestyle,papersize,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,keywords,subject,title-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,shift-heading-level-by,top-level-division,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,beamerarticle,quarto-required,pdf-standard,bibliography,csl,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-tex,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,use-rsvg-convert,df-print,ascii,toc,table-of-contents,toc-depth,toc-title,lof,lot","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^cjkmainfont$|^cjkmainfont$|^cjkoptions$|^cjkoptions$|^links_as_notes$|^linksAsNotes$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^latex_auto_mk$|^latexAutoMk$|^latex_auto_install$|^latexAutoInstall$|^latex_min_runs$|^latexMinRuns$|^latex_max_runs$|^latexMaxRuns$|^latex_clean$|^latexClean$|^latex_makeindex$|^latexMakeindex$|^latex_makeindex_opts$|^latexMakeindexOpts$|^latex_tlmgr_opts$|^latexTlmgrOpts$|^latex_output_dir$|^latexOutputDir$|^latex_tinytex$|^latexTinytex$|^latex_input_paths$|^latexInputPaths$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^title_meta$|^titleMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^pdf_standard$|^pdfStandard$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_tex$|^keepTex$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":162759,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?plain([-+].+)?$":{"_internalId":165409,"type":"anyOf","anyOf":[{"_internalId":165407,"type":"object","description":"be an object","properties":{"eval":{"_internalId":165311,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":165312,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":165313,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":165314,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":165315,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":165316,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":165317,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":165318,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":165319,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":165320,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":165321,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":165322,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":165323,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":165324,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":165325,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":165326,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":165327,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":165328,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":165329,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":165330,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":165331,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":165332,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":165333,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":165334,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":165335,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":165336,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":165337,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":165338,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":165339,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":165340,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":165341,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":165342,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":165343,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":165344,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":165345,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":165346,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":165346,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":165347,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":165348,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":165349,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":165350,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":165351,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":165352,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":165353,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":165354,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":165355,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":165356,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":165357,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":165358,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":165359,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":165360,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":165361,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":165362,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":165363,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":165364,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":165365,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":165366,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":165367,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":165368,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":165369,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":165370,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":165371,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":165372,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":165373,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":165374,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":165375,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":165376,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":165377,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":165378,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":165379,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":165380,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":165381,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":165382,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":165382,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":165383,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":165384,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":165385,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":165386,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":165387,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":165388,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":165389,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":165390,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":165391,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":165392,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":165393,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":165394,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":165395,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":165396,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":165397,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":165398,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":165399,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":165400,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":165401,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":165402,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":165403,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":165404,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":165405,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":165405,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":165406,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":165408,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?pptx([-+].+)?$":{"_internalId":168054,"type":"anyOf","anyOf":[{"_internalId":168052,"type":"object","description":"be an object","properties":{"eval":{"_internalId":167960,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":167961,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":167962,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":167963,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":167964,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":167965,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":167966,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":167967,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":167968,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":167969,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":167970,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":167971,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":167972,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":167973,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":167974,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":167975,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":167976,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":167977,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":167978,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":167979,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":167980,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":167981,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":167982,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":167983,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":167984,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":167985,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":167986,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":167987,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":167988,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":167989,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":167990,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":167991,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":167992,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":167993,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":167994,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":167995,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":167995,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":167996,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":167997,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":167998,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":167999,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":168000,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":168001,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":168002,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":168003,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":168004,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":168005,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":168006,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":168007,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":168008,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":168009,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":168010,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":168011,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":168012,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":168013,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":168014,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":168015,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":168016,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"keywords":{"_internalId":168017,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":168018,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":168019,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":168020,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"number-sections":{"_internalId":168021,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":168022,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":168023,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":168024,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":168025,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":168026,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":168027,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":168028,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":168029,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":168030,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":168030,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":168031,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":168032,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":168033,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":168034,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":168035,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":168036,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":168037,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":168038,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":168039,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":168040,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":168041,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":168042,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":168043,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":168044,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":168045,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":168046,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":168047,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":168048,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":168049,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":168049,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":168050,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":168051,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,keywords,subject,description,category,number-sections,shift-heading-level-by,reference-doc,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^reference_doc$|^referenceDoc$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":168053,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?revealjs([-+].+)?$":{"_internalId":170836,"type":"anyOf","anyOf":[{"_internalId":170834,"type":"object","description":"be an object","properties":{"eval":{"_internalId":170605,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":170606,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":170607,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":170608,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":170609,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":170610,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":170611,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":170612,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":170613,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":170614,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":170615,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":170616,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":170617,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":170618,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":170619,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":170620,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":170621,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":170622,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":170623,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":170624,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":170625,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":170626,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":170627,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":170628,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":170629,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":170630,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":170631,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":170632,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":170633,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":170634,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":170635,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"comments":{"_internalId":170636,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":170637,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":170638,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":170639,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":170640,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":170641,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":170642,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":170643,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":170644,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":170645,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":170646,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":170647,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":170648,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":170649,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":170650,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":170651,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":170652,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":170653,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":170654,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":170655,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":170656,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":170657,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":170658,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":170659,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":170660,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":170661,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":170662,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":170663,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":170663,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":170664,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":170665,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":170666,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":170667,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":170668,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":170669,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":170670,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":170671,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":170672,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":170673,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":170674,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":170675,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":170676,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":170677,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":170678,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":170679,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":170680,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":170681,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":170682,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":170683,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":170684,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":170685,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":170686,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":170687,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":170688,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":170689,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":170690,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":170691,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":170692,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"brand-mode":{"_internalId":170693,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"max-width":{"_internalId":170694,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":170695,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":170696,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":170697,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":170698,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"margin":{"_internalId":170699,"type":"ref","$ref":"quarto-resource-document-layout-margin","description":"quarto-resource-document-layout-margin"},"revealjs-url":{"_internalId":170700,"type":"ref","$ref":"quarto-resource-document-library-revealjs-url","description":"quarto-resource-document-library-revealjs-url"},"link-external-icon":{"_internalId":170701,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":170702,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":170703,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"mermaid":{"_internalId":170704,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":170705,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":170706,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":170707,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":170708,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":170709,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":170710,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":170711,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":170712,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":170713,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":170714,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":170715,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":170716,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":170717,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"document-css":{"_internalId":170718,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":170719,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":170720,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":170721,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":170722,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":170723,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":170724,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":170725,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":170726,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":170727,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":170728,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":170729,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":170729,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":170730,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":170731,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":170732,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":170733,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":170734,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":170735,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":170736,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":170737,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":170738,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":170739,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":170740,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":170741,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":170742,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":170743,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":170744,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":170745,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":170746,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":170747,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":170748,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":170749,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"logo":{"_internalId":170750,"type":"ref","$ref":"quarto-resource-document-reveal-content-logo","description":"quarto-resource-document-reveal-content-logo"},"footer":{"_internalId":170751,"type":"ref","$ref":"quarto-resource-document-reveal-content-footer","description":"quarto-resource-document-reveal-content-footer"},"scrollable":{"_internalId":170752,"type":"ref","$ref":"quarto-resource-document-reveal-content-scrollable","description":"quarto-resource-document-reveal-content-scrollable"},"smaller":{"_internalId":170753,"type":"ref","$ref":"quarto-resource-document-reveal-content-smaller","description":"quarto-resource-document-reveal-content-smaller"},"output-location":{"_internalId":170754,"type":"ref","$ref":"quarto-resource-document-reveal-content-output-location","description":"quarto-resource-document-reveal-content-output-location"},"embedded":{"_internalId":170755,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-embedded","description":"quarto-resource-document-reveal-hidden-embedded"},"display":{"_internalId":170756,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-display","description":"quarto-resource-document-reveal-hidden-display"},"auto-stretch":{"_internalId":170757,"type":"ref","$ref":"quarto-resource-document-reveal-layout-auto-stretch","description":"quarto-resource-document-reveal-layout-auto-stretch"},"width":{"_internalId":170758,"type":"ref","$ref":"quarto-resource-document-reveal-layout-width","description":"quarto-resource-document-reveal-layout-width"},"height":{"_internalId":170759,"type":"ref","$ref":"quarto-resource-document-reveal-layout-height","description":"quarto-resource-document-reveal-layout-height"},"min-scale":{"_internalId":170760,"type":"ref","$ref":"quarto-resource-document-reveal-layout-min-scale","description":"quarto-resource-document-reveal-layout-min-scale"},"max-scale":{"_internalId":170761,"type":"ref","$ref":"quarto-resource-document-reveal-layout-max-scale","description":"quarto-resource-document-reveal-layout-max-scale"},"center":{"_internalId":170762,"type":"ref","$ref":"quarto-resource-document-reveal-layout-center","description":"quarto-resource-document-reveal-layout-center"},"disable-layout":{"_internalId":170763,"type":"ref","$ref":"quarto-resource-document-reveal-layout-disable-layout","description":"quarto-resource-document-reveal-layout-disable-layout"},"code-block-height":{"_internalId":170764,"type":"ref","$ref":"quarto-resource-document-reveal-layout-code-block-height","description":"quarto-resource-document-reveal-layout-code-block-height"},"preview-links":{"_internalId":170765,"type":"ref","$ref":"quarto-resource-document-reveal-media-preview-links","description":"quarto-resource-document-reveal-media-preview-links"},"auto-play-media":{"_internalId":170766,"type":"ref","$ref":"quarto-resource-document-reveal-media-auto-play-media","description":"quarto-resource-document-reveal-media-auto-play-media"},"preload-iframes":{"_internalId":170767,"type":"ref","$ref":"quarto-resource-document-reveal-media-preload-iframes","description":"quarto-resource-document-reveal-media-preload-iframes"},"view-distance":{"_internalId":170768,"type":"ref","$ref":"quarto-resource-document-reveal-media-view-distance","description":"quarto-resource-document-reveal-media-view-distance"},"mobile-view-distance":{"_internalId":170769,"type":"ref","$ref":"quarto-resource-document-reveal-media-mobile-view-distance","description":"quarto-resource-document-reveal-media-mobile-view-distance"},"parallax-background-image":{"_internalId":170770,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-image","description":"quarto-resource-document-reveal-media-parallax-background-image"},"parallax-background-size":{"_internalId":170771,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-size","description":"quarto-resource-document-reveal-media-parallax-background-size"},"parallax-background-horizontal":{"_internalId":170772,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-horizontal","description":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"parallax-background-vertical":{"_internalId":170773,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-vertical","description":"quarto-resource-document-reveal-media-parallax-background-vertical"},"progress":{"_internalId":170774,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-progress","description":"quarto-resource-document-reveal-navigation-progress"},"history":{"_internalId":170775,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-history","description":"quarto-resource-document-reveal-navigation-history"},"navigation-mode":{"_internalId":170776,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-navigation-mode","description":"quarto-resource-document-reveal-navigation-navigation-mode"},"touch":{"_internalId":170777,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-touch","description":"quarto-resource-document-reveal-navigation-touch"},"keyboard":{"_internalId":170778,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-keyboard","description":"quarto-resource-document-reveal-navigation-keyboard"},"mouse-wheel":{"_internalId":170779,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-mouse-wheel","description":"quarto-resource-document-reveal-navigation-mouse-wheel"},"hide-inactive-cursor":{"_internalId":170780,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-inactive-cursor","description":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"hide-cursor-time":{"_internalId":170781,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-cursor-time","description":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"loop":{"_internalId":170782,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-loop","description":"quarto-resource-document-reveal-navigation-loop"},"shuffle":{"_internalId":170783,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-shuffle","description":"quarto-resource-document-reveal-navigation-shuffle"},"controls":{"_internalId":170784,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls","description":"quarto-resource-document-reveal-navigation-controls"},"controls-layout":{"_internalId":170785,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-layout","description":"quarto-resource-document-reveal-navigation-controls-layout"},"controls-tutorial":{"_internalId":170786,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-tutorial","description":"quarto-resource-document-reveal-navigation-controls-tutorial"},"controls-back-arrows":{"_internalId":170787,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-back-arrows","description":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"auto-slide":{"_internalId":170788,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide","description":"quarto-resource-document-reveal-navigation-auto-slide"},"auto-slide-stoppable":{"_internalId":170789,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-stoppable","description":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"auto-slide-method":{"_internalId":170790,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-method","description":"quarto-resource-document-reveal-navigation-auto-slide-method"},"default-timing":{"_internalId":170791,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-default-timing","description":"quarto-resource-document-reveal-navigation-default-timing"},"pause":{"_internalId":170792,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-pause","description":"quarto-resource-document-reveal-navigation-pause"},"help":{"_internalId":170793,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-help","description":"quarto-resource-document-reveal-navigation-help"},"hash":{"_internalId":170794,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash","description":"quarto-resource-document-reveal-navigation-hash"},"hash-type":{"_internalId":170795,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-type","description":"quarto-resource-document-reveal-navigation-hash-type"},"hash-one-based-index":{"_internalId":170796,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-one-based-index","description":"quarto-resource-document-reveal-navigation-hash-one-based-index"},"respond-to-hash-changes":{"_internalId":170797,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-respond-to-hash-changes","description":"quarto-resource-document-reveal-navigation-respond-to-hash-changes"},"fragment-in-url":{"_internalId":170798,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-fragment-in-url","description":"quarto-resource-document-reveal-navigation-fragment-in-url"},"slide-tone":{"_internalId":170799,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-slide-tone","description":"quarto-resource-document-reveal-navigation-slide-tone"},"jump-to-slide":{"_internalId":170800,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-jump-to-slide","description":"quarto-resource-document-reveal-navigation-jump-to-slide"},"pdf-max-pages-per-slide":{"_internalId":170801,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide","description":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide"},"pdf-separate-fragments":{"_internalId":170802,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-separate-fragments","description":"quarto-resource-document-reveal-print-pdf-separate-fragments"},"pdf-page-height-offset":{"_internalId":170803,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-page-height-offset","description":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"overview":{"_internalId":170804,"type":"ref","$ref":"quarto-resource-document-reveal-tools-overview","description":"quarto-resource-document-reveal-tools-overview"},"menu":{"_internalId":170805,"type":"ref","$ref":"quarto-resource-document-reveal-tools-menu","description":"quarto-resource-document-reveal-tools-menu"},"chalkboard":{"_internalId":170806,"type":"ref","$ref":"quarto-resource-document-reveal-tools-chalkboard","description":"quarto-resource-document-reveal-tools-chalkboard"},"multiplex":{"_internalId":170807,"type":"ref","$ref":"quarto-resource-document-reveal-tools-multiplex","description":"quarto-resource-document-reveal-tools-multiplex"},"scroll-view":{"_internalId":170808,"type":"ref","$ref":"quarto-resource-document-reveal-tools-scroll-view","description":"quarto-resource-document-reveal-tools-scroll-view"},"transition":{"_internalId":170809,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition","description":"quarto-resource-document-reveal-transitions-transition"},"transition-speed":{"_internalId":170810,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition-speed","description":"quarto-resource-document-reveal-transitions-transition-speed"},"background-transition":{"_internalId":170811,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-background-transition","description":"quarto-resource-document-reveal-transitions-background-transition"},"fragments":{"_internalId":170812,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-fragments","description":"quarto-resource-document-reveal-transitions-fragments"},"auto-animate":{"_internalId":170813,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate","description":"quarto-resource-document-reveal-transitions-auto-animate"},"auto-animate-easing":{"_internalId":170814,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-easing","description":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"auto-animate-duration":{"_internalId":170815,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-duration","description":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"auto-animate-unmatched":{"_internalId":170816,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-unmatched","description":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"auto-animate-styles":{"_internalId":170817,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-styles","description":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"incremental":{"_internalId":170818,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":170819,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"slide-number":{"_internalId":170820,"type":"ref","$ref":"quarto-resource-document-slides-slide-number","description":"quarto-resource-document-slides-slide-number"},"show-slide-number":{"_internalId":170821,"type":"ref","$ref":"quarto-resource-document-slides-show-slide-number","description":"quarto-resource-document-slides-show-slide-number"},"title-slide-attributes":{"_internalId":170822,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-attributes","description":"quarto-resource-document-slides-title-slide-attributes"},"title-slide-style":{"_internalId":170823,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-style","description":"quarto-resource-document-slides-title-slide-style"},"center-title-slide":{"_internalId":170824,"type":"ref","$ref":"quarto-resource-document-slides-center-title-slide","description":"quarto-resource-document-slides-center-title-slide"},"show-notes":{"_internalId":170825,"type":"ref","$ref":"quarto-resource-document-slides-show-notes","description":"quarto-resource-document-slides-show-notes"},"rtl":{"_internalId":170826,"type":"ref","$ref":"quarto-resource-document-slides-rtl","description":"quarto-resource-document-slides-rtl"},"df-print":{"_internalId":170827,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":170828,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":170829,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":170830,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":170830,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":170831,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":170832,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"axe":{"_internalId":170833,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,brand-mode,max-width,margin-left,margin-right,margin-top,margin-bottom,margin,revealjs-url,link-external-icon,link-external-newwindow,link-external-filter,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,logo,footer,scrollable,smaller,output-location,embedded,display,auto-stretch,width,height,min-scale,max-scale,center,disable-layout,code-block-height,preview-links,auto-play-media,preload-iframes,view-distance,mobile-view-distance,parallax-background-image,parallax-background-size,parallax-background-horizontal,parallax-background-vertical,progress,history,navigation-mode,touch,keyboard,mouse-wheel,hide-inactive-cursor,hide-cursor-time,loop,shuffle,controls,controls-layout,controls-tutorial,controls-back-arrows,auto-slide,auto-slide-stoppable,auto-slide-method,default-timing,pause,help,hash,hash-type,hash-one-based-index,respond-to-hash-changes,fragment-in-url,slide-tone,jump-to-slide,pdf-max-pages-per-slide,pdf-separate-fragments,pdf-page-height-offset,overview,menu,chalkboard,multiplex,scroll-view,transition,transition-speed,background-transition,fragments,auto-animate,auto-animate-easing,auto-animate-duration,auto-animate-unmatched,auto-animate-styles,incremental,slide-level,slide-number,show-slide-number,title-slide-attributes,title-slide-style,center-title-slide,show-notes,rtl,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-title,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^brand_mode$|^brandMode$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^revealjs_url$|^revealjsUrl$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$|^auto_stretch$|^autoStretch$|^min_scale$|^minScale$|^max_scale$|^maxScale$|^disable_layout$|^disableLayout$|^code_block_height$|^codeBlockHeight$|^preview_links$|^previewLinks$|^auto_play_media$|^autoPlayMedia$|^preload_iframes$|^preloadIframes$|^view_distance$|^viewDistance$|^mobile_view_distance$|^mobileViewDistance$|^parallax_background_image$|^parallaxBackgroundImage$|^parallax_background_size$|^parallaxBackgroundSize$|^parallax_background_horizontal$|^parallaxBackgroundHorizontal$|^parallax_background_vertical$|^parallaxBackgroundVertical$|^navigation_mode$|^navigationMode$|^mouse_wheel$|^mouseWheel$|^hide_inactive_cursor$|^hideInactiveCursor$|^hide_cursor_time$|^hideCursorTime$|^controls_layout$|^controlsLayout$|^controls_tutorial$|^controlsTutorial$|^controls_back_arrows$|^controlsBackArrows$|^auto_slide$|^autoSlide$|^auto_slide_stoppable$|^autoSlideStoppable$|^auto_slide_method$|^autoSlideMethod$|^default_timing$|^defaultTiming$|^hash_type$|^hashType$|^hash_one_based_index$|^hashOneBasedIndex$|^respond_to_hash_changes$|^respondToHashChanges$|^fragment_in_url$|^fragmentInUrl$|^slide_tone$|^slideTone$|^jump_to_slide$|^jumpToSlide$|^pdf_max_pages_per_slide$|^pdfMaxPagesPerSlide$|^pdf_separate_fragments$|^pdfSeparateFragments$|^pdf_page_height_offset$|^pdfPageHeightOffset$|^scroll_view$|^scrollView$|^transition_speed$|^transitionSpeed$|^background_transition$|^backgroundTransition$|^auto_animate$|^autoAnimate$|^auto_animate_easing$|^autoAnimateEasing$|^auto_animate_duration$|^autoAnimateDuration$|^auto_animate_unmatched$|^autoAnimateUnmatched$|^auto_animate_styles$|^autoAnimateStyles$|^slide_level$|^slideLevel$|^slide_number$|^slideNumber$|^show_slide_number$|^showSlideNumber$|^title_slide_attributes$|^titleSlideAttributes$|^title_slide_style$|^titleSlideStyle$|^center_title_slide$|^centerTitleSlide$|^show_notes$|^showNotes$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":170835,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?rst([-+].+)?$":{"_internalId":173486,"type":"anyOf","anyOf":[{"_internalId":173484,"type":"object","description":"be an object","properties":{"eval":{"_internalId":173387,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":173388,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":173389,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":173390,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":173391,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":173392,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":173393,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":173394,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":173395,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":173396,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":173397,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":173398,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":173399,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":173400,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":173401,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":173402,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":173403,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":173404,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":173405,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":173406,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":173407,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":173408,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":173409,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":173410,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":173411,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":173412,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":173413,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":173414,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":173415,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":173416,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":173417,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":173418,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":173419,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":173420,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"list-tables":{"_internalId":173421,"type":"ref","$ref":"quarto-resource-document-formatting-list-tables","description":"quarto-resource-document-formatting-list-tables"},"funding":{"_internalId":173422,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":173423,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":173423,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":173424,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":173425,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":173426,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":173427,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":173428,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":173429,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":173430,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":173431,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":173432,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":173433,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":173434,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":173435,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":173436,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":173437,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":173438,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":173439,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":173440,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":173441,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":173442,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":173443,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":173444,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":173445,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":173446,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":173447,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":173448,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":173449,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":173450,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":173451,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":173452,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":173453,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":173454,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":173455,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":173456,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":173457,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":173458,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":173459,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":173459,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":173460,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":173461,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":173462,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":173463,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":173464,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":173465,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":173466,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":173467,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":173468,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":173469,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":173470,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":173471,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":173472,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":173473,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":173474,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":173475,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":173476,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":173477,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":173478,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":173479,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":173480,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":173481,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":173482,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":173482,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":173483,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,list-tables,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^list_tables$|^listTables$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":173485,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?rtf([-+].+)?$":{"_internalId":176136,"type":"anyOf","anyOf":[{"_internalId":176134,"type":"object","description":"be an object","properties":{"eval":{"_internalId":176037,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":176038,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":176039,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":176040,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":176041,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":176042,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":176043,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":176044,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":176045,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":176046,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":176047,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":176048,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":176049,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":176050,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":176051,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":176052,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":176053,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":176054,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":176055,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":176056,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":176057,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":176058,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":176059,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":176060,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":176061,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":176062,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":176063,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":176064,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":176065,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":176066,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":176067,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":176068,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":176069,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":176070,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":176071,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":176072,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":176073,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":176073,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":176074,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":176075,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":176076,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":176077,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":176078,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":176079,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":176080,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":176081,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":176082,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":176083,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":176084,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":176085,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":176086,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":176087,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":176088,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":176089,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":176090,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":176091,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":176092,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":176093,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":176094,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":176095,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":176096,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":176097,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":176098,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":176099,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":176100,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":176101,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":176102,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":176103,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":176104,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":176105,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":176106,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":176107,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":176108,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":176109,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":176109,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":176110,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":176111,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":176112,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":176113,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":176114,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":176115,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":176116,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":176117,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":176118,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":176119,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":176120,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":176121,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":176122,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":176123,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":176124,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":176125,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":176126,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":176127,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":176128,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":176129,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":176130,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":176131,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":176132,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":176132,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":176133,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":176135,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?s5([-+].+)?$":{"_internalId":178837,"type":"anyOf","anyOf":[{"_internalId":178835,"type":"object","description":"be an object","properties":{"eval":{"_internalId":178687,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":178688,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":178689,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":178690,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":178691,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":178692,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":178693,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":178694,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":178695,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":178696,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":178697,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":178698,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":178699,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":178700,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":178701,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":178702,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":178703,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":178704,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":178705,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":178706,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":178707,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":178708,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":178709,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":178710,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":178711,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":178712,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":178713,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":178714,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":178715,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":178716,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":178717,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":178718,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":178719,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":178720,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":178721,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":178722,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":178723,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":178724,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":178725,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":178726,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":178727,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":178728,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":178729,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":178730,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":178731,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":178732,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":178733,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":178734,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":178735,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":178736,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":178737,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":178738,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":178739,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":178740,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":178741,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":178742,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":178743,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":178744,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":178745,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":178746,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":178746,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":178747,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":178748,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":178749,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":178750,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":178751,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":178752,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":178753,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":178754,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":178755,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":178756,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":178757,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":178758,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":178759,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":178760,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":178761,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":178762,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":178763,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":178764,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":178765,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":178766,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":178767,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":178768,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":178769,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":178770,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":178771,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":178772,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":178773,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":178774,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":178775,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":178776,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":178777,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":178778,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":178779,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":178780,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"s5-url":{"_internalId":178781,"type":"ref","$ref":"quarto-resource-document-library-s5-url","description":"quarto-resource-document-library-s5-url"},"mermaid":{"_internalId":178782,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":178783,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":178784,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":178785,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":178786,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":178787,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":178788,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":178789,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":178790,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":178791,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":178792,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":178793,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":178794,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":178795,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":178796,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":178797,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":178798,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":178799,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":178800,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":178801,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":178802,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":178803,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":178804,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":178805,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":178806,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":178806,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":178807,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":178808,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":178809,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":178810,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":178811,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":178812,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":178813,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":178814,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":178815,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":178816,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":178817,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":178818,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":178819,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":178820,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":178821,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":178822,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":178823,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":178824,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":178825,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":178826,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":178827,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":178828,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":178829,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":178830,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":178831,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":178832,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":178832,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":178833,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":178834,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,s5-url,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^s5_url$|^s5Url$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":178836,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?slideous([-+].+)?$":{"_internalId":181538,"type":"anyOf","anyOf":[{"_internalId":181536,"type":"object","description":"be an object","properties":{"eval":{"_internalId":181388,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":181389,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":181390,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":181391,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":181392,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":181393,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":181394,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":181395,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":181396,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":181397,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":181398,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":181399,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":181400,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":181401,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":181402,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":181403,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":181404,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":181405,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":181406,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":181407,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":181408,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":181409,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":181410,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":181411,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":181412,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":181413,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":181414,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":181415,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":181416,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":181417,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":181418,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":181419,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":181420,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":181421,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":181422,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":181423,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":181424,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":181425,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":181426,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":181427,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":181428,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":181429,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":181430,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":181431,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":181432,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":181433,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":181434,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":181435,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":181436,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":181437,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":181438,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":181439,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":181440,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":181441,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":181442,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":181443,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":181444,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":181445,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":181446,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":181447,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":181447,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":181448,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":181449,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":181450,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":181451,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":181452,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":181453,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":181454,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":181455,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":181456,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":181457,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":181458,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":181459,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":181460,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":181461,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":181462,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":181463,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":181464,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":181465,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":181466,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":181467,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":181468,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":181469,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":181470,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":181471,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":181472,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":181473,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":181474,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":181475,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":181476,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":181477,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":181478,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":181479,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":181480,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":181481,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"slideous-url":{"_internalId":181482,"type":"ref","$ref":"quarto-resource-document-library-slideous-url","description":"quarto-resource-document-library-slideous-url"},"mermaid":{"_internalId":181483,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":181484,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":181485,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":181486,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":181487,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":181488,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":181489,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":181490,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":181491,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":181492,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":181493,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":181494,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":181495,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":181496,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":181497,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":181498,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":181499,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":181500,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":181501,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":181502,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":181503,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":181504,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":181505,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":181506,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":181507,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":181507,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":181508,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":181509,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":181510,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":181511,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":181512,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":181513,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":181514,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":181515,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":181516,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":181517,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":181518,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":181519,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":181520,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":181521,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":181522,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":181523,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":181524,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":181525,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":181526,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":181527,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":181528,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":181529,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":181530,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":181531,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":181532,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":181533,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":181533,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":181534,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":181535,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,slideous-url,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^slideous_url$|^slideousUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":181537,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?slidy([-+].+)?$":{"_internalId":184239,"type":"anyOf","anyOf":[{"_internalId":184237,"type":"object","description":"be an object","properties":{"eval":{"_internalId":184089,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":184090,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":184091,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":184092,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":184093,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":184094,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":184095,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":184096,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":184097,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":184098,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":184099,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":184100,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":184101,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":184102,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":184103,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":184104,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":184105,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":184106,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":184107,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":184108,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":184109,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":184110,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":184111,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":184112,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":184113,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":184114,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":184115,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":184116,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":184117,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":184118,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":184119,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":184120,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":184121,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":184122,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":184123,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":184124,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":184125,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":184126,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":184127,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":184128,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":184129,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":184130,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":184131,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":184132,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":184133,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":184134,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":184135,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":184136,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":184137,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":184138,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":184139,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":184140,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":184141,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":184142,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":184143,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":184144,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":184145,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":184146,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":184147,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":184148,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":184148,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":184149,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":184150,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":184151,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":184152,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":184153,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":184154,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":184155,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":184156,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":184157,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":184158,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":184159,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":184160,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":184161,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":184162,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":184163,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":184164,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":184165,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":184166,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":184167,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":184168,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":184169,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":184170,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":184171,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":184172,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":184173,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":184174,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":184175,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":184176,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":184177,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":184178,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":184179,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":184180,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":184181,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":184182,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"slidy-url":{"_internalId":184183,"type":"ref","$ref":"quarto-resource-document-library-slidy-url","description":"quarto-resource-document-library-slidy-url"},"mermaid":{"_internalId":184184,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":184185,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":184186,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":184187,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":184188,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":184189,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":184190,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":184191,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":184192,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":184193,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":184194,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":184195,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":184196,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":184197,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":184198,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":184199,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":184200,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":184201,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":184202,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":184203,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":184204,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":184205,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":184206,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":184207,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":184208,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":184208,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":184209,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":184210,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":184211,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":184212,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":184213,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":184214,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":184215,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":184216,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":184217,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":184218,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":184219,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":184220,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":184221,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":184222,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":184223,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":184224,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":184225,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":184226,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":184227,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":184228,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":184229,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":184230,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":184231,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":184232,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":184233,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":184234,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":184234,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":184235,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":184236,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,slidy-url,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^slidy_url$|^slidyUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":184238,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?tei([-+].+)?$":{"_internalId":186889,"type":"anyOf","anyOf":[{"_internalId":186887,"type":"object","description":"be an object","properties":{"eval":{"_internalId":186790,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":186791,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":186792,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":186793,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":186794,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":186795,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":186796,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":186797,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":186798,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":186799,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":186800,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":186801,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":186802,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":186803,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":186804,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":186805,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":186806,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":186807,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":186808,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":186809,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":186810,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":186811,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":186812,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":186813,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":186814,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":186815,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":186816,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":186817,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":186818,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":186819,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":186820,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":186821,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":186822,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":186823,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":186824,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":186825,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":186825,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":186826,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":186827,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":186828,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":186829,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":186830,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":186831,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":186832,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":186833,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":186834,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":186835,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":186836,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":186837,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":186838,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":186839,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":186840,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":186841,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":186842,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":186843,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":186844,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":186845,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":186846,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":186847,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":186848,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":186849,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":186850,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":186851,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":186852,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":186853,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":186854,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":186855,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":186856,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":186857,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":186858,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":186859,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":186860,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":186861,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":186862,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":186862,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":186863,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":186864,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":186865,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":186866,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":186867,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":186868,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":186869,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":186870,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":186871,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":186872,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":186873,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":186874,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":186875,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":186876,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":186877,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":186878,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":186879,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":186880,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":186881,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":186882,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":186883,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":186884,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":186885,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":186885,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":186886,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":186888,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?texinfo([-+].+)?$":{"_internalId":189538,"type":"anyOf","anyOf":[{"_internalId":189536,"type":"object","description":"be an object","properties":{"eval":{"_internalId":189440,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":189441,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":189442,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":189443,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":189444,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":189445,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":189446,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":189447,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":189448,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":189449,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":189450,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":189451,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":189452,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":189453,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":189454,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":189455,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":189456,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":189457,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":189458,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":189459,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":189460,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":189461,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":189462,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":189463,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":189464,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":189465,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":189466,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":189467,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":189468,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":189469,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":189470,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":189471,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":189472,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":189473,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":189474,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":189475,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":189475,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":189476,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":189477,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":189478,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":189479,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":189480,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":189481,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":189482,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":189483,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":189484,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":189485,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":189486,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":189487,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":189488,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":189489,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":189490,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":189491,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":189492,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":189493,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":189494,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":189495,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":189496,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":189497,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":189498,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":189499,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":189500,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":189501,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":189502,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":189503,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":189504,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":189505,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":189506,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":189507,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":189508,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":189509,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":189510,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":189511,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":189511,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":189512,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":189513,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":189514,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":189515,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":189516,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":189517,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":189518,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":189519,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":189520,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":189521,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":189522,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":189523,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":189524,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":189525,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":189526,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":189527,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":189528,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":189529,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":189530,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":189531,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":189532,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":189533,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":189534,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":189534,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":189535,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":189537,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?textile([-+].+)?$":{"_internalId":192188,"type":"anyOf","anyOf":[{"_internalId":192186,"type":"object","description":"be an object","properties":{"eval":{"_internalId":192089,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":192090,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":192091,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":192092,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":192093,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":192094,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":192095,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":192096,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":192097,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":192098,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":192099,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":192100,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":192101,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":192102,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":192103,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":192104,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":192105,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":192106,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":192107,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":192108,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":192109,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":192110,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":192111,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":192112,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":192113,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":192114,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":192115,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":192116,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":192117,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":192118,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":192119,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":192120,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":192121,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":192122,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":192123,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":192124,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":192124,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":192125,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":192126,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":192127,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":192128,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":192129,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":192130,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":192131,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":192132,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":192133,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":192134,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":192135,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":192136,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":192137,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":192138,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":192139,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":192140,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":192141,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":192142,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":192143,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":192144,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":192145,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":192146,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":192147,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":192148,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":192149,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":192150,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":192151,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":192152,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":192153,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":192154,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":192155,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":192156,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":192157,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":192158,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":192159,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":192160,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":192160,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":192161,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":192162,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":192163,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":192164,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":192165,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":192166,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":192167,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":192168,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":192169,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":192170,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":192171,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":192172,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":192173,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":192174,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":192175,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":192176,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":192177,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":192178,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":192179,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":192180,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":192181,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":192182,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":192183,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"toc":{"_internalId":192184,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":192184,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":192185,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":192187,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?typst([-+].+)?$":{"_internalId":194875,"type":"anyOf","anyOf":[{"_internalId":194873,"type":"object","description":"be an object","properties":{"eval":{"_internalId":194739,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":194740,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"cap-location":{"_internalId":194741,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":194742,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":194743,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"output":{"_internalId":194744,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":194745,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":194746,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":194747,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":194748,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":194749,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":194750,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":194751,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract-title":{"_internalId":194752,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"thanks":{"_internalId":194753,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":194754,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":194755,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":194756,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":194757,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":194758,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":194759,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":194760,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"linkcolor":{"_internalId":194761,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":194762,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":194763,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"crossref":{"_internalId":194764,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":194765,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":194766,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":194767,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":194768,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":194769,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":194770,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":194771,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":194772,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":194773,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":194774,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":194775,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":194776,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":194777,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":194778,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":194779,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":194780,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":194781,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":194782,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":194783,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":194784,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":194785,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"codefont":{"_internalId":194786,"type":"ref","$ref":"quarto-resource-document-fonts-codefont","description":"quarto-resource-document-fonts-codefont"},"fontsize":{"_internalId":194787,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"mathfont":{"_internalId":194788,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"font-paths":{"_internalId":194789,"type":"ref","$ref":"quarto-resource-document-fonts-font-paths","description":"quarto-resource-document-fonts-font-paths"},"linestretch":{"_internalId":194790,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"reference-location":{"_internalId":194791,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":194792,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":194793,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":194793,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":194794,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":194795,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":194796,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":194797,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":194798,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":194799,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":194800,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":194801,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":194802,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":194803,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":194804,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":194805,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":194806,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":194807,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":194808,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":194809,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":194810,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":194811,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":194812,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":194813,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":194814,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":194815,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":194816,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":194817,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":194818,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":194819,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":194820,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"papersize":{"_internalId":194821,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"brand-mode":{"_internalId":194822,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"grid":{"_internalId":194823,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"margin":{"_internalId":194824,"type":"ref","$ref":"quarto-resource-document-layout-margin","description":"quarto-resource-document-layout-margin"},"number-sections":{"_internalId":194825,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"section-numbering":{"_internalId":194826,"type":"ref","$ref":"quarto-resource-document-numbering-section-numbering","description":"quarto-resource-document-numbering-section-numbering"},"shift-heading-level-by":{"_internalId":194827,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"page-numbering":{"_internalId":194828,"type":"ref","$ref":"quarto-resource-document-numbering-page-numbering","description":"quarto-resource-document-numbering-page-numbering"},"brand":{"_internalId":194829,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":194830,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdf-standard":{"_internalId":194831,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":194832,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":194833,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citation-location":{"_internalId":194834,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":194835,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"bibliographystyle":{"_internalId":194836,"type":"ref","$ref":"quarto-resource-document-references-bibliographystyle","description":"quarto-resource-document-references-bibliographystyle"},"citation-abbreviations":{"_internalId":194837,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":194838,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":194838,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":194839,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":194840,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":194841,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":194842,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":194843,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":194844,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":194845,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":194846,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":194847,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":194848,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":194849,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-typ":{"_internalId":194850,"type":"ref","$ref":"quarto-resource-document-render-keep-typ","description":"quarto-resource-document-render-keep-typ"},"extract-media":{"_internalId":194851,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":194852,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":194853,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":194854,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":194855,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":194856,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"html-pre-tag-processing":{"_internalId":194857,"type":"ref","$ref":"quarto-resource-document-render-html-pre-tag-processing","description":"quarto-resource-document-render-html-pre-tag-processing"},"css-property-processing":{"_internalId":194858,"type":"ref","$ref":"quarto-resource-document-render-css-property-processing","description":"quarto-resource-document-render-css-property-processing"},"df-print":{"_internalId":194859,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":194860,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"columns":{"_internalId":194861,"type":"ref","$ref":"quarto-resource-document-text-columns","description":"quarto-resource-document-text-columns"},"tab-stop":{"_internalId":194862,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":194863,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":194864,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":194865,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":194865,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-indent":{"_internalId":194866,"type":"ref","$ref":"quarto-resource-document-toc-toc-indent","description":"quarto-resource-document-toc-toc-indent"},"toc-depth":{"_internalId":194867,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"lof":{"_internalId":194868,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":194869,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"},"logo":{"_internalId":194870,"type":"ref","$ref":"quarto-resource-document-typst-logo","description":"quarto-resource-document-typst-logo"},"margin-geometry":{"_internalId":194871,"type":"ref","$ref":"quarto-resource-document-typst-margin-geometry","description":"quarto-resource-document-typst-margin-geometry"},"theorem-appearance":{"_internalId":194872,"type":"ref","$ref":"quarto-resource-document-typst-theorem-appearance","description":"quarto-resource-document-typst-theorem-appearance"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,cap-location,fig-cap-location,tbl-cap-location,output,warning,error,include,title,date,date-format,author,abstract-title,thanks,order,citation,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,linkcolor,filecolor,citecolor,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,codefont,fontsize,mathfont,font-paths,linestretch,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,papersize,brand-mode,grid,margin,number-sections,section-numbering,shift-heading-level-by,page-numbering,brand,quarto-required,pdf-standard,bibliography,csl,citation-location,citeproc,bibliographystyle,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-typ,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,html-pre-tag-processing,css-property-processing,df-print,wrap,columns,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-indent,toc-depth,lof,lot,logo,margin-geometry,theorem-appearance","type":"string","pattern":"(?!(^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^font_paths$|^fontPaths$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^brand_mode$|^brandMode$|^number_sections$|^numberSections$|^section_numbering$|^sectionNumbering$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^page_numbering$|^pageNumbering$|^quarto_required$|^quartoRequired$|^pdf_standard$|^pdfStandard$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_typ$|^keepTyp$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^html_pre_tag_processing$|^htmlPreTagProcessing$|^css_property_processing$|^cssPropertyProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_indent$|^tocIndent$|^toc_depth$|^tocDepth$|^margin_geometry$|^marginGeometry$|^theorem_appearance$|^theoremAppearance$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":194874,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?vimdoc([-+].+)?$":{"_internalId":197524,"type":"anyOf","anyOf":[{"_internalId":197522,"type":"object","description":"be an object","properties":{"eval":{"_internalId":197426,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":197427,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":197428,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":197429,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":197430,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":197431,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":197432,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":197433,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":197434,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":197435,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":197436,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":197437,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":197438,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":197439,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":197440,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":197441,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":197442,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":197443,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":197444,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":197445,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":197446,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":197447,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":197448,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":197449,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":197450,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":197451,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":197452,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":197453,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":197454,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":197455,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":197456,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":197457,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":197458,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":197459,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":197460,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":197461,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":197461,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":197462,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":197463,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":197464,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":197465,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":197466,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":197467,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":197468,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":197469,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":197470,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":197471,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":197472,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":197473,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":197474,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":197475,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":197476,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":197477,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":197478,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":197479,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":197480,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":197481,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":197482,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":197483,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":197484,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":197485,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":197486,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":197487,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":197488,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":197489,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":197490,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":197491,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":197492,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":197493,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":197494,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":197495,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":197496,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":197497,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":197497,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":197498,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":197499,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":197500,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":197501,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":197502,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":197503,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":197504,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":197505,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":197506,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":197507,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":197508,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":197509,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":197510,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":197511,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":197512,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":197513,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":197514,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":197515,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":197516,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":197517,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":197518,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":197519,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":197520,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":197520,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":197521,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":197523,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?xml([-+].+)?$":{"_internalId":200173,"type":"anyOf","anyOf":[{"_internalId":200171,"type":"object","description":"be an object","properties":{"eval":{"_internalId":200075,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":200076,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":200077,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":200078,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":200079,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":200080,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":200081,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":200082,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":200083,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":200084,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":200085,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":200086,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":200087,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":200088,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":200089,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":200090,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":200091,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":200092,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":200093,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":200094,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":200095,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":200096,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":200097,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":200098,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":200099,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":200100,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":200101,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":200102,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":200103,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":200104,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":200105,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":200106,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":200107,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":200108,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":200109,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":200110,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":200110,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":200111,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":200112,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":200113,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":200114,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":200115,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":200116,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":200117,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":200118,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":200119,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":200120,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":200121,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":200122,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":200123,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":200124,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":200125,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":200126,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":200127,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":200128,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":200129,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":200130,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":200131,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":200132,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":200133,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":200134,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":200135,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":200136,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":200137,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":200138,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":200139,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":200140,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":200141,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":200142,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":200143,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":200144,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":200145,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":200146,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":200146,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":200147,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":200148,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":200149,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":200150,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":200151,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":200152,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":200153,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":200154,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":200155,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":200156,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":200157,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":200158,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":200159,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":200160,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":200161,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":200162,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":200163,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":200164,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":200165,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":200166,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":200167,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":200168,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":200169,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":200169,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":200170,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":200172,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?xwiki([-+].+)?$":{"_internalId":202822,"type":"anyOf","anyOf":[{"_internalId":202820,"type":"object","description":"be an object","properties":{"eval":{"_internalId":202724,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":202725,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":202726,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":202727,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":202728,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":202729,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":202730,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":202731,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":202732,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":202733,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":202734,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":202735,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":202736,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":202737,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":202738,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":202739,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":202740,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":202741,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":202742,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":202743,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":202744,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":202745,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":202746,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":202747,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":202748,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":202749,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":202750,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":202751,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":202752,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":202753,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":202754,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":202755,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":202756,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":202757,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":202758,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":202759,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":202759,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":202760,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":202761,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":202762,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":202763,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":202764,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":202765,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":202766,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":202767,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":202768,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":202769,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":202770,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":202771,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":202772,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":202773,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":202774,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":202775,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":202776,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":202777,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":202778,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":202779,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":202780,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":202781,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":202782,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":202783,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":202784,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":202785,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":202786,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":202787,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":202788,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":202789,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":202790,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":202791,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":202792,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":202793,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":202794,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":202795,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":202795,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":202796,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":202797,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":202798,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":202799,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":202800,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":202801,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":202802,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":202803,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":202804,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":202805,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":202806,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":202807,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":202808,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":202809,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":202810,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":202811,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":202812,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":202813,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":202814,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":202815,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":202816,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":202817,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":202818,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":202818,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":202819,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":202821,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?zimwiki([-+].+)?$":{"_internalId":205471,"type":"anyOf","anyOf":[{"_internalId":205469,"type":"object","description":"be an object","properties":{"eval":{"_internalId":205373,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":205374,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":205375,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":205376,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":205377,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":205378,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":205379,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":205380,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":205381,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":205382,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":205383,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":205384,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":205385,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":205386,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":205387,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":205388,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":205389,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":205390,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":205391,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":205392,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":205393,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":205394,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":205395,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":205396,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":205397,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":205398,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":205399,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":205400,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":205401,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":205402,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":205403,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":205404,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":205405,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":205406,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":205407,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":205408,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":205408,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":205409,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":205410,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":205411,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":205412,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":205413,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":205414,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":205415,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":205416,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":205417,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":205418,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":205419,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":205420,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":205421,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":205422,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":205423,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":205424,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":205425,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":205426,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":205427,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":205428,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":205429,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":205430,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":205431,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":205432,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":205433,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":205434,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":205435,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":205436,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":205437,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":205438,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":205439,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":205440,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":205441,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":205442,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":205443,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":205444,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":205444,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":205445,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":205446,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":205447,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":205448,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":205449,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":205450,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":205451,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":205452,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":205453,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":205454,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":205455,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":205456,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":205457,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":205458,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":205459,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":205460,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":205461,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":205462,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":205463,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":205464,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":205465,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":205466,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":205467,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":205467,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":205468,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":205470,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?md([-+].+)?$":{"_internalId":208127,"type":"anyOf","anyOf":[{"_internalId":208125,"type":"object","description":"be an object","properties":{"eval":{"_internalId":208022,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":208023,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":208024,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":208025,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":208026,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":208027,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":208028,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":208029,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":208030,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":208031,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":208032,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":208033,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":208034,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":208035,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":208036,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":208037,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":208038,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":208039,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":208040,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":208041,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":208042,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":208043,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":208044,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":208045,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":208046,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":208047,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":208048,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":208049,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":208050,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":208051,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":208052,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":208053,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":208054,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":208055,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":208056,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":208057,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":208058,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":208058,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":208059,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":208060,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":208061,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":208062,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":208063,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":208064,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":208065,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":208066,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":208067,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":208068,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":208069,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":208070,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":208071,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":208072,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":208073,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":208074,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":208075,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":208076,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":208077,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":208078,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":208079,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":208080,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":208081,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":208082,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":208083,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":208084,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":208085,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":208086,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":208087,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":208088,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":208089,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":208090,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":208091,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":208092,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":208093,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":208094,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":208095,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":208096,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":208097,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":208098,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":208098,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":208099,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":208100,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":208101,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":208102,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":208103,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":208104,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":208105,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":208106,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":208107,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":208108,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":208109,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":208110,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":208111,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":208112,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":208113,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":208114,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":208115,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":208116,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":208117,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":208118,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":208119,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":208120,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":208121,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":208122,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":208123,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":208123,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":208124,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":208126,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?hugo([-+].+)?$":{"_internalId":210776,"type":"anyOf","anyOf":[{"_internalId":210774,"type":"object","description":"be an object","properties":{"eval":{"_internalId":210678,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":210679,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":210680,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":210681,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":210682,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":210683,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":210684,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":210685,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":210686,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":210687,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":210688,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":210689,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":210690,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":210691,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":210692,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":210693,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":210694,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":210695,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":210696,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":210697,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":210698,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":210699,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":210700,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":210701,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":210702,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":210703,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":210704,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":210705,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":210706,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":210707,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":210708,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":210709,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":210710,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":210711,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":210712,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":210713,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":210713,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":210714,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":210715,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":210716,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":210717,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":210718,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":210719,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":210720,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":210721,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":210722,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":210723,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":210724,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":210725,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":210726,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":210727,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":210728,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":210729,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":210730,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":210731,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":210732,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":210733,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":210734,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":210735,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":210736,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":210737,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":210738,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":210739,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":210740,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":210741,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":210742,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":210743,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":210744,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":210745,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":210746,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":210747,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":210748,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":210749,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":210749,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":210750,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":210751,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":210752,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":210753,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":210754,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":210755,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":210756,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":210757,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":210758,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":210759,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":210760,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":210761,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":210762,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":210763,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":210764,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":210765,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":210766,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":210767,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":210768,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":210769,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":210770,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":210771,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":210772,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":210772,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":210773,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":210775,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dashboard([-+].+)?$":{"_internalId":213478,"type":"anyOf","anyOf":[{"_internalId":213476,"type":"object","description":"be an object","properties":{"eval":{"_internalId":213327,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":213328,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":213329,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":213330,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":213331,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":213332,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":213333,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":213334,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":213335,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":213336,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":213337,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":213338,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":213339,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":213340,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":213341,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":213342,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":213343,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":213344,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":213345,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":213346,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":213347,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":213348,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":213349,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":213350,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":213351,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":213352,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":213353,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":213354,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":213355,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":213356,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"comments":{"_internalId":213357,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":213358,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":213359,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"logo":{"_internalId":213360,"type":"ref","$ref":"quarto-resource-document-dashboard-logo","description":"quarto-resource-document-dashboard-logo"},"orientation":{"_internalId":213361,"type":"ref","$ref":"quarto-resource-document-dashboard-orientation","description":"quarto-resource-document-dashboard-orientation"},"scrolling":{"_internalId":213362,"type":"ref","$ref":"quarto-resource-document-dashboard-scrolling","description":"quarto-resource-document-dashboard-scrolling"},"expandable":{"_internalId":213363,"type":"ref","$ref":"quarto-resource-document-dashboard-expandable","description":"quarto-resource-document-dashboard-expandable"},"nav-buttons":{"_internalId":213364,"type":"ref","$ref":"quarto-resource-document-dashboard-nav-buttons","description":"quarto-resource-document-dashboard-nav-buttons"},"editor":{"_internalId":213365,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":213366,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":213367,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":213368,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":213369,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":213370,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":213371,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":213372,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":213373,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":213374,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":213375,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":213376,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":213377,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":213378,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":213379,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":213380,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":213381,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":213382,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":213383,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":213384,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":213385,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":213386,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":213387,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":213388,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":213389,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":213389,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":213390,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":213391,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":213392,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":213393,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":213394,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":213395,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":213396,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":213397,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":213398,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":213399,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":213400,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":213401,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":213402,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":213403,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":213404,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":213405,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":213406,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":213407,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":213408,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":213409,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":213410,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":213411,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":213412,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":213413,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":213414,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":213415,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":213416,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":213417,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":213418,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":213419,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":213420,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":213421,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":213422,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":213423,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"mermaid":{"_internalId":213424,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":213425,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":213426,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":213427,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":213428,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":213429,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":213430,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":213431,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":213432,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":213433,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":213434,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":213435,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":213436,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":213437,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"document-css":{"_internalId":213438,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":213439,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":213440,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":213441,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":213442,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":213443,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":213444,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":213445,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":213446,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":213447,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":213448,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":213449,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":213449,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":213450,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":213451,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":213452,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":213453,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":213454,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":213455,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":213456,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":213457,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":213458,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":213459,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":213460,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":213461,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":213462,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":213463,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":213464,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":213465,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":213466,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":213467,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":213468,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":213469,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":213470,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":213471,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":213472,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":213473,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":213473,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":213474,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":213475,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,order,citation,code-copy,code-link,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,comments,crossref,crossrefs-hover,logo,orientation,scrolling,expandable,nav-buttons,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^nav_buttons$|^navButtons$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":213477,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?email([-+].+)?$":{"_internalId":216128,"type":"anyOf","anyOf":[{"_internalId":216126,"type":"object","description":"be an object","properties":{"eval":{"_internalId":216029,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":216030,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":216031,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":216032,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":216033,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":216034,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":216035,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":216036,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":216037,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":216038,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":216039,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":216040,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":216041,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":216042,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":216043,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":216044,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":216045,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":216046,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":216047,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":216048,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":216049,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":216050,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":216051,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":216052,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":216053,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":216054,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":216055,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":216056,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":216057,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":216058,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":216059,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":216060,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":216061,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":216062,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":216063,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":216064,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":216064,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":216065,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":216066,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":216067,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":216068,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":216069,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":216070,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":216071,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":216072,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":216073,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":216074,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":216075,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":216076,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":216077,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":216078,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":216079,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":216080,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":216081,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":216082,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":216083,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":216084,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":216085,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":216086,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":216087,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":216088,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":216089,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":216090,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":216091,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":216092,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":216093,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":216094,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":216095,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":216096,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":216097,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":216098,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":216099,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":216100,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":216100,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":216101,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":216102,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":216103,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":216104,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":216105,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":216106,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":216107,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":216108,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":216109,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":216110,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":216111,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":216112,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":216113,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":216114,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":216115,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":216116,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":216117,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":216118,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":216119,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":216120,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":216121,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":216122,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":216123,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":216123,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":216124,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"email-version":{"_internalId":216125,"type":"ref","$ref":"quarto-resource-document-email-email-version","description":"quarto-resource-document-email-email-version"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth,email-version","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^email_version$|^emailVersion$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":216127,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"}},"additionalProperties":false,"tags":{"completions":{"ansi":{"type":"key","display":"ansi","value":"ansi: ","description":"be 'ansi'","suggest_on_accept":true},"asciidoc":{"type":"key","display":"asciidoc","value":"asciidoc: ","description":"be 'asciidoc'","suggest_on_accept":true},"asciidoc_legacy":{"type":"key","display":"asciidoc_legacy","value":"asciidoc_legacy: ","description":"be 'asciidoc_legacy'","suggest_on_accept":true},"asciidoctor":{"type":"key","display":"asciidoctor","value":"asciidoctor: ","description":"be 'asciidoctor'","suggest_on_accept":true},"bbcode":{"type":"key","display":"bbcode","value":"bbcode: ","description":"be 'bbcode'","suggest_on_accept":true},"bbcode_fluxbb":{"type":"key","display":"bbcode_fluxbb","value":"bbcode_fluxbb: ","description":"be 'bbcode_fluxbb'","suggest_on_accept":true},"bbcode_hubzilla":{"type":"key","display":"bbcode_hubzilla","value":"bbcode_hubzilla: ","description":"be 'bbcode_hubzilla'","suggest_on_accept":true},"bbcode_phpbb":{"type":"key","display":"bbcode_phpbb","value":"bbcode_phpbb: ","description":"be 'bbcode_phpbb'","suggest_on_accept":true},"bbcode_steam":{"type":"key","display":"bbcode_steam","value":"bbcode_steam: ","description":"be 'bbcode_steam'","suggest_on_accept":true},"bbcode_xenforo":{"type":"key","display":"bbcode_xenforo","value":"bbcode_xenforo: ","description":"be 'bbcode_xenforo'","suggest_on_accept":true},"beamer":{"type":"key","display":"beamer","value":"beamer: ","description":"be 'beamer'","suggest_on_accept":true},"biblatex":{"type":"key","display":"biblatex","value":"biblatex: ","description":"be 'biblatex'","suggest_on_accept":true},"bibtex":{"type":"key","display":"bibtex","value":"bibtex: ","description":"be 'bibtex'","suggest_on_accept":true},"chunkedhtml":{"type":"key","display":"chunkedhtml","value":"chunkedhtml: ","description":"be 'chunkedhtml'","suggest_on_accept":true},"commonmark":{"type":"key","display":"commonmark","value":"commonmark: ","description":"be 'commonmark'","suggest_on_accept":true},"commonmark_x":{"type":"key","display":"commonmark_x","value":"commonmark_x: ","description":"be 'commonmark_x'","suggest_on_accept":true},"context":{"type":"key","display":"context","value":"context: ","description":"be 'context'","suggest_on_accept":true},"csljson":{"type":"key","display":"csljson","value":"csljson: ","description":"be 'csljson'","suggest_on_accept":true},"djot":{"type":"key","display":"djot","value":"djot: ","description":"be 'djot'","suggest_on_accept":true},"docbook":{"type":"key","display":"docbook","value":"docbook: ","description":"be 'docbook'","suggest_on_accept":true},"docx":{"type":"key","display":"docx","value":"docx: ","description":"be 'docx'","suggest_on_accept":true},"dokuwiki":{"type":"key","display":"dokuwiki","value":"dokuwiki: ","description":"be 'dokuwiki'","suggest_on_accept":true},"dzslides":{"type":"key","display":"dzslides","value":"dzslides: ","description":"be 'dzslides'","suggest_on_accept":true},"epub":{"type":"key","display":"epub","value":"epub: ","description":"be 'epub'","suggest_on_accept":true},"fb2":{"type":"key","display":"fb2","value":"fb2: ","description":"be 'fb2'","suggest_on_accept":true},"gfm":{"type":"key","display":"gfm","value":"gfm: ","description":"be 'gfm'","suggest_on_accept":true},"haddock":{"type":"key","display":"haddock","value":"haddock: ","description":"be 'haddock'","suggest_on_accept":true},"html":{"type":"key","display":"html","value":"html: ","description":"be 'html'","suggest_on_accept":true},"icml":{"type":"key","display":"icml","value":"icml: ","description":"be 'icml'","suggest_on_accept":true},"ipynb":{"type":"key","display":"ipynb","value":"ipynb: ","description":"be 'ipynb'","suggest_on_accept":true},"jats":{"type":"key","display":"jats","value":"jats: ","description":"be 'jats'","suggest_on_accept":true},"jats_archiving":{"type":"key","display":"jats_archiving","value":"jats_archiving: ","description":"be 'jats_archiving'","suggest_on_accept":true},"jats_articleauthoring":{"type":"key","display":"jats_articleauthoring","value":"jats_articleauthoring: ","description":"be 'jats_articleauthoring'","suggest_on_accept":true},"jats_publishing":{"type":"key","display":"jats_publishing","value":"jats_publishing: ","description":"be 'jats_publishing'","suggest_on_accept":true},"jira":{"type":"key","display":"jira","value":"jira: ","description":"be 'jira'","suggest_on_accept":true},"json":{"type":"key","display":"json","value":"json: ","description":"be 'json'","suggest_on_accept":true},"latex":{"type":"key","display":"latex","value":"latex: ","description":"be 'latex'","suggest_on_accept":true},"man":{"type":"key","display":"man","value":"man: ","description":"be 'man'","suggest_on_accept":true},"markdown":{"type":"key","display":"markdown","value":"markdown: ","description":"be 'markdown'","suggest_on_accept":true},"markdown_github":{"type":"key","display":"markdown_github","value":"markdown_github: ","description":"be 'markdown_github'","suggest_on_accept":true},"markdown_mmd":{"type":"key","display":"markdown_mmd","value":"markdown_mmd: ","description":"be 'markdown_mmd'","suggest_on_accept":true},"markdown_phpextra":{"type":"key","display":"markdown_phpextra","value":"markdown_phpextra: ","description":"be 'markdown_phpextra'","suggest_on_accept":true},"markdown_strict":{"type":"key","display":"markdown_strict","value":"markdown_strict: ","description":"be 'markdown_strict'","suggest_on_accept":true},"markua":{"type":"key","display":"markua","value":"markua: ","description":"be 'markua'","suggest_on_accept":true},"mediawiki":{"type":"key","display":"mediawiki","value":"mediawiki: ","description":"be 'mediawiki'","suggest_on_accept":true},"ms":{"type":"key","display":"ms","value":"ms: ","description":"be 'ms'","suggest_on_accept":true},"muse":{"type":"key","display":"muse","value":"muse: ","description":"be 'muse'","suggest_on_accept":true},"native":{"type":"key","display":"native","value":"native: ","description":"be 'native'","suggest_on_accept":true},"odt":{"type":"key","display":"odt","value":"odt: ","description":"be 'odt'","suggest_on_accept":true},"opendocument":{"type":"key","display":"opendocument","value":"opendocument: ","description":"be 'opendocument'","suggest_on_accept":true},"opml":{"type":"key","display":"opml","value":"opml: ","description":"be 'opml'","suggest_on_accept":true},"org":{"type":"key","display":"org","value":"org: ","description":"be 'org'","suggest_on_accept":true},"pdf":{"type":"key","display":"pdf","value":"pdf: ","description":"be 'pdf'","suggest_on_accept":true},"plain":{"type":"key","display":"plain","value":"plain: ","description":"be 'plain'","suggest_on_accept":true},"pptx":{"type":"key","display":"pptx","value":"pptx: ","description":"be 'pptx'","suggest_on_accept":true},"revealjs":{"type":"key","display":"revealjs","value":"revealjs: ","description":"be 'revealjs'","suggest_on_accept":true},"rst":{"type":"key","display":"rst","value":"rst: ","description":"be 'rst'","suggest_on_accept":true},"rtf":{"type":"key","display":"rtf","value":"rtf: ","description":"be 'rtf'","suggest_on_accept":true},"s5":{"type":"key","display":"s5","value":"s5: ","description":"be 's5'","suggest_on_accept":true},"slideous":{"type":"key","display":"slideous","value":"slideous: ","description":"be 'slideous'","suggest_on_accept":true},"slidy":{"type":"key","display":"slidy","value":"slidy: ","description":"be 'slidy'","suggest_on_accept":true},"tei":{"type":"key","display":"tei","value":"tei: ","description":"be 'tei'","suggest_on_accept":true},"texinfo":{"type":"key","display":"texinfo","value":"texinfo: ","description":"be 'texinfo'","suggest_on_accept":true},"textile":{"type":"key","display":"textile","value":"textile: ","description":"be 'textile'","suggest_on_accept":true},"typst":{"type":"key","display":"typst","value":"typst: ","description":"be 'typst'","suggest_on_accept":true},"vimdoc":{"type":"key","display":"vimdoc","value":"vimdoc: ","description":"be 'vimdoc'","suggest_on_accept":true},"xml":{"type":"key","display":"xml","value":"xml: ","description":"be 'xml'","suggest_on_accept":true},"xwiki":{"type":"key","display":"xwiki","value":"xwiki: ","description":"be 'xwiki'","suggest_on_accept":true},"zimwiki":{"type":"key","display":"zimwiki","value":"zimwiki: ","description":"be 'zimwiki'","suggest_on_accept":true},"md":{"type":"key","display":"md","value":"md: ","description":"be 'md'","suggest_on_accept":true},"hugo":{"type":"key","display":"hugo","value":"hugo: ","description":"be 'hugo'","suggest_on_accept":true},"dashboard":{"type":"key","display":"dashboard","value":"dashboard: ","description":"be 'dashboard'","suggest_on_accept":true},"email":{"type":"key","display":"email","value":"email: ","description":"be 'email'","suggest_on_accept":true}}}}],"description":"be all of: an object"}],"description":"be at least one of: the name of a pandoc-supported output format, an object, all of: an object","errorMessage":"${value} is not a valid output format.","$id":"front-matter-format"},"front-matter":{"_internalId":216665,"type":"anyOf","anyOf":[{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true},{"_internalId":216664,"type":"allOf","allOf":[{"_internalId":216215,"type":"object","description":"be a Quarto YAML front matter object","properties":{"execute":{"_internalId":5595,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},"format":{"_internalId":216214,"type":"ref","$ref":"front-matter-format","description":"be at least one of: the name of a pandoc-supported output format, an object, all of: an object"}},"patternProperties":{}},{"_internalId":216662,"type":"object","description":"be an object","properties":{"eval":{"_internalId":216216,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":216217,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":216218,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":216219,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":216220,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":216221,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":216222,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":216223,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":216224,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":216225,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":216226,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":216227,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":216228,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":216229,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":216230,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":216231,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":216232,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":216233,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":216234,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":216235,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":216236,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":216237,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":216238,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":216239,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":216240,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":216451,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":216242,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":216243,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"institute":{"_internalId":216244,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"abstract":{"_internalId":216245,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":216246,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"notes":{"_internalId":216247,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":216248,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"doi":{"_internalId":216249,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"thanks":{"_internalId":216250,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":216251,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":216252,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":216253,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":216254,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":216255,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":216256,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":216257,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":216258,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":216259,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":216260,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":216261,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":216262,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":216263,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":216264,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":216265,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":216266,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":216267,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":216268,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"filecolor":{"_internalId":216269,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":216270,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":216271,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":216272,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":216273,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"contrastcolor":{"_internalId":216274,"type":"ref","$ref":"quarto-resource-document-colors-contrastcolor","description":"quarto-resource-document-colors-contrastcolor"},"comments":{"_internalId":216275,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":216276,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":216277,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"logo":{"_internalId":216658,"type":"ref","$ref":"quarto-resource-document-typst-logo","description":"quarto-resource-document-typst-logo"},"orientation":{"_internalId":216279,"type":"ref","$ref":"quarto-resource-document-dashboard-orientation","description":"quarto-resource-document-dashboard-orientation"},"scrolling":{"_internalId":216280,"type":"ref","$ref":"quarto-resource-document-dashboard-scrolling","description":"quarto-resource-document-dashboard-scrolling"},"expandable":{"_internalId":216281,"type":"ref","$ref":"quarto-resource-document-dashboard-expandable","description":"quarto-resource-document-dashboard-expandable"},"nav-buttons":{"_internalId":216282,"type":"ref","$ref":"quarto-resource-document-dashboard-nav-buttons","description":"quarto-resource-document-dashboard-nav-buttons"},"editor":{"_internalId":216283,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":216284,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":216285,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":216286,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":216287,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":216288,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"type":{"_internalId":216289,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"relation":{"_internalId":216290,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":216291,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":216292,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":216293,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":216294,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":216295,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":216296,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":216297,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":216298,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":216299,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":216300,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":216301,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":216302,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":216303,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":216304,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":216305,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":216306,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":216307,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":216308,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":216309,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":216310,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":216311,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":216312,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":216313,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":216314,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":216315,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":216316,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":216317,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":216318,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":216319,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":216320,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":216321,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":216322,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"codefont":{"_internalId":216323,"type":"ref","$ref":"quarto-resource-document-fonts-codefont","description":"quarto-resource-document-fonts-codefont"},"fontsize":{"_internalId":216324,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":216325,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":216326,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":216327,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":216328,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":216329,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":216330,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":216331,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":216332,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":216333,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":216334,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"font-paths":{"_internalId":216335,"type":"ref","$ref":"quarto-resource-document-fonts-font-paths","description":"quarto-resource-document-fonts-font-paths"},"CJKoptions":{"_internalId":216336,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":216337,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"pointsize":{"_internalId":216338,"type":"ref","$ref":"quarto-resource-document-fonts-pointsize","description":"quarto-resource-document-fonts-pointsize"},"lineheight":{"_internalId":216339,"type":"ref","$ref":"quarto-resource-document-fonts-lineheight","description":"quarto-resource-document-fonts-lineheight"},"linestretch":{"_internalId":216340,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"interlinespace":{"_internalId":216341,"type":"ref","$ref":"quarto-resource-document-fonts-interlinespace","description":"quarto-resource-document-fonts-interlinespace"},"linkstyle":{"_internalId":216342,"type":"ref","$ref":"quarto-resource-document-fonts-linkstyle","description":"quarto-resource-document-fonts-linkstyle"},"whitespace":{"_internalId":216343,"type":"ref","$ref":"quarto-resource-document-fonts-whitespace","description":"quarto-resource-document-fonts-whitespace"},"footnotes-hover":{"_internalId":216344,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"links-as-notes":{"_internalId":216345,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"reference-location":{"_internalId":216346,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"indenting":{"_internalId":216347,"type":"ref","$ref":"quarto-resource-document-formatting-indenting","description":"quarto-resource-document-formatting-indenting"},"adjusting":{"_internalId":216348,"type":"ref","$ref":"quarto-resource-document-formatting-adjusting","description":"quarto-resource-document-formatting-adjusting"},"hyphenate":{"_internalId":216349,"type":"ref","$ref":"quarto-resource-document-formatting-hyphenate","description":"quarto-resource-document-formatting-hyphenate"},"list-tables":{"_internalId":216350,"type":"ref","$ref":"quarto-resource-document-formatting-list-tables","description":"quarto-resource-document-formatting-list-tables"},"split-level":{"_internalId":216351,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":216352,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":216353,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":216353,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":216354,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":216355,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":216356,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":216357,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":216358,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":216359,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":216360,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":216361,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":216362,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":216363,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":216364,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":216365,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":216366,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":216367,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"track-changes":{"_internalId":216368,"type":"ref","$ref":"quarto-resource-document-hidden-track-changes","description":"quarto-resource-document-hidden-track-changes"},"keep-source":{"_internalId":216369,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":216370,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"prefer-html":{"_internalId":216371,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":216372,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":216373,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":216374,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":216375,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":216376,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":216377,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":216378,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":216379,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":216380,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"headertext":{"_internalId":216381,"type":"ref","$ref":"quarto-resource-document-includes-headertext","description":"quarto-resource-document-includes-headertext"},"footertext":{"_internalId":216382,"type":"ref","$ref":"quarto-resource-document-includes-footertext","description":"quarto-resource-document-includes-footertext"},"includesource":{"_internalId":216383,"type":"ref","$ref":"quarto-resource-document-includes-includesource","description":"quarto-resource-document-includes-includesource"},"footer":{"_internalId":216557,"type":"ref","$ref":"quarto-resource-document-reveal-content-footer","description":"quarto-resource-document-reveal-content-footer"},"header":{"_internalId":216385,"type":"ref","$ref":"quarto-resource-document-includes-header","description":"quarto-resource-document-includes-header"},"metadata-file":{"_internalId":216386,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":216387,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":216388,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":216389,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":216390,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":216391,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":216392,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":216393,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":216394,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":216395,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":216396,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":216397,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":216398,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":216399,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":216400,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":216401,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":216402,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":216403,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":216404,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":216405,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":216406,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"brand-mode":{"_internalId":216407,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"layout":{"_internalId":216408,"type":"ref","$ref":"quarto-resource-document-layout-layout","description":"quarto-resource-document-layout-layout"},"page-layout":{"_internalId":216409,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"page-width":{"_internalId":216410,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"grid":{"_internalId":216411,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":216412,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":216413,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":216414,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":216415,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":216416,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":216417,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":216418,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":216419,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":216420,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":216421,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":216422,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"margin":{"_internalId":216423,"type":"ref","$ref":"quarto-resource-document-layout-margin","description":"quarto-resource-document-layout-margin"},"geometry":{"_internalId":216424,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":216425,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":216426,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":216427,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"revealjs-url":{"_internalId":216428,"type":"ref","$ref":"quarto-resource-document-library-revealjs-url","description":"quarto-resource-document-library-revealjs-url"},"s5-url":{"_internalId":216429,"type":"ref","$ref":"quarto-resource-document-library-s5-url","description":"quarto-resource-document-library-s5-url"},"slidy-url":{"_internalId":216430,"type":"ref","$ref":"quarto-resource-document-library-slidy-url","description":"quarto-resource-document-library-slidy-url"},"slideous-url":{"_internalId":216431,"type":"ref","$ref":"quarto-resource-document-library-slideous-url","description":"quarto-resource-document-library-slideous-url"},"lightbox":{"_internalId":216432,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":216433,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":216434,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":216435,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":216436,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":216437,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":216438,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":216439,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-subarticles":{"_internalId":216440,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"notebook-view":{"_internalId":216441,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":216442,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":216443,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":216444,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":216445,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":216446,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":216447,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":216448,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":216449,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":216450,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"license":{"_internalId":216452,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"title-meta":{"_internalId":216453,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"pagetitle":{"_internalId":216454,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":216455,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":216456,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":216457,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":216458,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":216459,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":216460,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":216461,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"number-offset":{"_internalId":216462,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"section-numbering":{"_internalId":216463,"type":"ref","$ref":"quarto-resource-document-numbering-section-numbering","description":"quarto-resource-document-numbering-section-numbering"},"shift-heading-level-by":{"_internalId":216464,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"page-numbering":{"_internalId":216465,"type":"ref","$ref":"quarto-resource-document-numbering-page-numbering","description":"quarto-resource-document-numbering-page-numbering"},"pagenumbering":{"_internalId":216466,"type":"ref","$ref":"quarto-resource-document-numbering-pagenumbering","description":"quarto-resource-document-numbering-pagenumbering"},"top-level-division":{"_internalId":216467,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"ojs-engine":{"_internalId":216468,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"reference-doc":{"_internalId":216469,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":216470,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":216471,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":216472,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":216473,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":216474,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":216475,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":216476,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":216477,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":216478,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":216479,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":216480,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":216481,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":216482,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":216483,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":216484,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"pdf-engine":{"_internalId":216485,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":216486,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":216487,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beamerarticle":{"_internalId":216488,"type":"ref","$ref":"quarto-resource-document-options-beamerarticle","description":"quarto-resource-document-options-beamerarticle"},"beameroption":{"_internalId":216489,"type":"ref","$ref":"quarto-resource-document-options-beameroption","description":"quarto-resource-document-options-beameroption"},"aspectratio":{"_internalId":216490,"type":"ref","$ref":"quarto-resource-document-options-aspectratio","description":"quarto-resource-document-options-aspectratio"},"titlegraphic":{"_internalId":216492,"type":"ref","$ref":"quarto-resource-document-options-titlegraphic","description":"quarto-resource-document-options-titlegraphic"},"navigation":{"_internalId":216493,"type":"ref","$ref":"quarto-resource-document-options-navigation","description":"quarto-resource-document-options-navigation"},"section-titles":{"_internalId":216494,"type":"ref","$ref":"quarto-resource-document-options-section-titles","description":"quarto-resource-document-options-section-titles"},"colortheme":{"_internalId":216495,"type":"ref","$ref":"quarto-resource-document-options-colortheme","description":"quarto-resource-document-options-colortheme"},"colorthemeoptions":{"_internalId":216496,"type":"ref","$ref":"quarto-resource-document-options-colorthemeoptions","description":"quarto-resource-document-options-colorthemeoptions"},"fonttheme":{"_internalId":216497,"type":"ref","$ref":"quarto-resource-document-options-fonttheme","description":"quarto-resource-document-options-fonttheme"},"fontthemeoptions":{"_internalId":216498,"type":"ref","$ref":"quarto-resource-document-options-fontthemeoptions","description":"quarto-resource-document-options-fontthemeoptions"},"innertheme":{"_internalId":216499,"type":"ref","$ref":"quarto-resource-document-options-innertheme","description":"quarto-resource-document-options-innertheme"},"innerthemeoptions":{"_internalId":216500,"type":"ref","$ref":"quarto-resource-document-options-innerthemeoptions","description":"quarto-resource-document-options-innerthemeoptions"},"outertheme":{"_internalId":216501,"type":"ref","$ref":"quarto-resource-document-options-outertheme","description":"quarto-resource-document-options-outertheme"},"outerthemeoptions":{"_internalId":216502,"type":"ref","$ref":"quarto-resource-document-options-outerthemeoptions","description":"quarto-resource-document-options-outerthemeoptions"},"themeoptions":{"_internalId":216503,"type":"ref","$ref":"quarto-resource-document-options-themeoptions","description":"quarto-resource-document-options-themeoptions"},"section":{"_internalId":216504,"type":"ref","$ref":"quarto-resource-document-options-section","description":"quarto-resource-document-options-section"},"variant":{"_internalId":216505,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":216506,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"ipynb-output":{"_internalId":216507,"type":"ref","$ref":"quarto-resource-document-options-ipynb-output","description":"quarto-resource-document-options-ipynb-output"},"quarto-required":{"_internalId":216508,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":216509,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"pdfa":{"_internalId":216510,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfa","description":"quarto-resource-document-pdfa-pdfa"},"pdfaiccprofile":{"_internalId":216511,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaiccprofile","description":"quarto-resource-document-pdfa-pdfaiccprofile"},"pdfaintent":{"_internalId":216512,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaintent","description":"quarto-resource-document-pdfa-pdfaintent"},"pdf-standard":{"_internalId":216513,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":216514,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":216515,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":216516,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":216517,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"cite-method":{"_internalId":216518,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":216519,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":216520,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":216521,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":216522,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"bibliographystyle":{"_internalId":216523,"type":"ref","$ref":"quarto-resource-document-references-bibliographystyle","description":"quarto-resource-document-references-bibliographystyle"},"biblio-title":{"_internalId":216524,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":216525,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":216526,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":216527,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":216528,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":216529,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":216530,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":216530,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":216531,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":216532,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":216533,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":216534,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":216535,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":216536,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":216537,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":216538,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":216539,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":216540,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":216541,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":216542,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":216543,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":216544,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-typ":{"_internalId":216545,"type":"ref","$ref":"quarto-resource-document-render-keep-typ","description":"quarto-resource-document-render-keep-typ"},"keep-tex":{"_internalId":216546,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":216547,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":216548,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":216549,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":216550,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":216551,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":216552,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"html-pre-tag-processing":{"_internalId":216553,"type":"ref","$ref":"quarto-resource-document-render-html-pre-tag-processing","description":"quarto-resource-document-render-html-pre-tag-processing"},"css-property-processing":{"_internalId":216554,"type":"ref","$ref":"quarto-resource-document-render-css-property-processing","description":"quarto-resource-document-render-css-property-processing"},"use-rsvg-convert":{"_internalId":216555,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"scrollable":{"_internalId":216558,"type":"ref","$ref":"quarto-resource-document-reveal-content-scrollable","description":"quarto-resource-document-reveal-content-scrollable"},"smaller":{"_internalId":216559,"type":"ref","$ref":"quarto-resource-document-reveal-content-smaller","description":"quarto-resource-document-reveal-content-smaller"},"output-location":{"_internalId":216560,"type":"ref","$ref":"quarto-resource-document-reveal-content-output-location","description":"quarto-resource-document-reveal-content-output-location"},"embedded":{"_internalId":216561,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-embedded","description":"quarto-resource-document-reveal-hidden-embedded"},"display":{"_internalId":216562,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-display","description":"quarto-resource-document-reveal-hidden-display"},"auto-stretch":{"_internalId":216563,"type":"ref","$ref":"quarto-resource-document-reveal-layout-auto-stretch","description":"quarto-resource-document-reveal-layout-auto-stretch"},"width":{"_internalId":216564,"type":"ref","$ref":"quarto-resource-document-reveal-layout-width","description":"quarto-resource-document-reveal-layout-width"},"height":{"_internalId":216565,"type":"ref","$ref":"quarto-resource-document-reveal-layout-height","description":"quarto-resource-document-reveal-layout-height"},"min-scale":{"_internalId":216566,"type":"ref","$ref":"quarto-resource-document-reveal-layout-min-scale","description":"quarto-resource-document-reveal-layout-min-scale"},"max-scale":{"_internalId":216567,"type":"ref","$ref":"quarto-resource-document-reveal-layout-max-scale","description":"quarto-resource-document-reveal-layout-max-scale"},"center":{"_internalId":216568,"type":"ref","$ref":"quarto-resource-document-reveal-layout-center","description":"quarto-resource-document-reveal-layout-center"},"disable-layout":{"_internalId":216569,"type":"ref","$ref":"quarto-resource-document-reveal-layout-disable-layout","description":"quarto-resource-document-reveal-layout-disable-layout"},"code-block-height":{"_internalId":216570,"type":"ref","$ref":"quarto-resource-document-reveal-layout-code-block-height","description":"quarto-resource-document-reveal-layout-code-block-height"},"preview-links":{"_internalId":216571,"type":"ref","$ref":"quarto-resource-document-reveal-media-preview-links","description":"quarto-resource-document-reveal-media-preview-links"},"auto-play-media":{"_internalId":216572,"type":"ref","$ref":"quarto-resource-document-reveal-media-auto-play-media","description":"quarto-resource-document-reveal-media-auto-play-media"},"preload-iframes":{"_internalId":216573,"type":"ref","$ref":"quarto-resource-document-reveal-media-preload-iframes","description":"quarto-resource-document-reveal-media-preload-iframes"},"view-distance":{"_internalId":216574,"type":"ref","$ref":"quarto-resource-document-reveal-media-view-distance","description":"quarto-resource-document-reveal-media-view-distance"},"mobile-view-distance":{"_internalId":216575,"type":"ref","$ref":"quarto-resource-document-reveal-media-mobile-view-distance","description":"quarto-resource-document-reveal-media-mobile-view-distance"},"parallax-background-image":{"_internalId":216576,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-image","description":"quarto-resource-document-reveal-media-parallax-background-image"},"parallax-background-size":{"_internalId":216577,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-size","description":"quarto-resource-document-reveal-media-parallax-background-size"},"parallax-background-horizontal":{"_internalId":216578,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-horizontal","description":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"parallax-background-vertical":{"_internalId":216579,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-vertical","description":"quarto-resource-document-reveal-media-parallax-background-vertical"},"progress":{"_internalId":216580,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-progress","description":"quarto-resource-document-reveal-navigation-progress"},"history":{"_internalId":216581,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-history","description":"quarto-resource-document-reveal-navigation-history"},"navigation-mode":{"_internalId":216582,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-navigation-mode","description":"quarto-resource-document-reveal-navigation-navigation-mode"},"touch":{"_internalId":216583,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-touch","description":"quarto-resource-document-reveal-navigation-touch"},"keyboard":{"_internalId":216584,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-keyboard","description":"quarto-resource-document-reveal-navigation-keyboard"},"mouse-wheel":{"_internalId":216585,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-mouse-wheel","description":"quarto-resource-document-reveal-navigation-mouse-wheel"},"hide-inactive-cursor":{"_internalId":216586,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-inactive-cursor","description":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"hide-cursor-time":{"_internalId":216587,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-cursor-time","description":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"loop":{"_internalId":216588,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-loop","description":"quarto-resource-document-reveal-navigation-loop"},"shuffle":{"_internalId":216589,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-shuffle","description":"quarto-resource-document-reveal-navigation-shuffle"},"controls":{"_internalId":216590,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls","description":"quarto-resource-document-reveal-navigation-controls"},"controls-layout":{"_internalId":216591,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-layout","description":"quarto-resource-document-reveal-navigation-controls-layout"},"controls-tutorial":{"_internalId":216592,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-tutorial","description":"quarto-resource-document-reveal-navigation-controls-tutorial"},"controls-back-arrows":{"_internalId":216593,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-back-arrows","description":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"auto-slide":{"_internalId":216594,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide","description":"quarto-resource-document-reveal-navigation-auto-slide"},"auto-slide-stoppable":{"_internalId":216595,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-stoppable","description":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"auto-slide-method":{"_internalId":216596,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-method","description":"quarto-resource-document-reveal-navigation-auto-slide-method"},"default-timing":{"_internalId":216597,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-default-timing","description":"quarto-resource-document-reveal-navigation-default-timing"},"pause":{"_internalId":216598,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-pause","description":"quarto-resource-document-reveal-navigation-pause"},"help":{"_internalId":216599,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-help","description":"quarto-resource-document-reveal-navigation-help"},"hash":{"_internalId":216600,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash","description":"quarto-resource-document-reveal-navigation-hash"},"hash-type":{"_internalId":216601,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-type","description":"quarto-resource-document-reveal-navigation-hash-type"},"hash-one-based-index":{"_internalId":216602,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-one-based-index","description":"quarto-resource-document-reveal-navigation-hash-one-based-index"},"respond-to-hash-changes":{"_internalId":216603,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-respond-to-hash-changes","description":"quarto-resource-document-reveal-navigation-respond-to-hash-changes"},"fragment-in-url":{"_internalId":216604,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-fragment-in-url","description":"quarto-resource-document-reveal-navigation-fragment-in-url"},"slide-tone":{"_internalId":216605,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-slide-tone","description":"quarto-resource-document-reveal-navigation-slide-tone"},"jump-to-slide":{"_internalId":216606,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-jump-to-slide","description":"quarto-resource-document-reveal-navigation-jump-to-slide"},"pdf-max-pages-per-slide":{"_internalId":216607,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide","description":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide"},"pdf-separate-fragments":{"_internalId":216608,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-separate-fragments","description":"quarto-resource-document-reveal-print-pdf-separate-fragments"},"pdf-page-height-offset":{"_internalId":216609,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-page-height-offset","description":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"overview":{"_internalId":216610,"type":"ref","$ref":"quarto-resource-document-reveal-tools-overview","description":"quarto-resource-document-reveal-tools-overview"},"menu":{"_internalId":216611,"type":"ref","$ref":"quarto-resource-document-reveal-tools-menu","description":"quarto-resource-document-reveal-tools-menu"},"chalkboard":{"_internalId":216612,"type":"ref","$ref":"quarto-resource-document-reveal-tools-chalkboard","description":"quarto-resource-document-reveal-tools-chalkboard"},"multiplex":{"_internalId":216613,"type":"ref","$ref":"quarto-resource-document-reveal-tools-multiplex","description":"quarto-resource-document-reveal-tools-multiplex"},"scroll-view":{"_internalId":216614,"type":"ref","$ref":"quarto-resource-document-reveal-tools-scroll-view","description":"quarto-resource-document-reveal-tools-scroll-view"},"transition":{"_internalId":216615,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition","description":"quarto-resource-document-reveal-transitions-transition"},"transition-speed":{"_internalId":216616,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition-speed","description":"quarto-resource-document-reveal-transitions-transition-speed"},"background-transition":{"_internalId":216617,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-background-transition","description":"quarto-resource-document-reveal-transitions-background-transition"},"fragments":{"_internalId":216618,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-fragments","description":"quarto-resource-document-reveal-transitions-fragments"},"auto-animate":{"_internalId":216619,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate","description":"quarto-resource-document-reveal-transitions-auto-animate"},"auto-animate-easing":{"_internalId":216620,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-easing","description":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"auto-animate-duration":{"_internalId":216621,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-duration","description":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"auto-animate-unmatched":{"_internalId":216622,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-unmatched","description":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"auto-animate-styles":{"_internalId":216623,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-styles","description":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"incremental":{"_internalId":216624,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":216625,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"slide-number":{"_internalId":216626,"type":"ref","$ref":"quarto-resource-document-slides-slide-number","description":"quarto-resource-document-slides-slide-number"},"show-slide-number":{"_internalId":216627,"type":"ref","$ref":"quarto-resource-document-slides-show-slide-number","description":"quarto-resource-document-slides-show-slide-number"},"title-slide-attributes":{"_internalId":216628,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-attributes","description":"quarto-resource-document-slides-title-slide-attributes"},"title-slide-style":{"_internalId":216629,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-style","description":"quarto-resource-document-slides-title-slide-style"},"center-title-slide":{"_internalId":216630,"type":"ref","$ref":"quarto-resource-document-slides-center-title-slide","description":"quarto-resource-document-slides-center-title-slide"},"show-notes":{"_internalId":216631,"type":"ref","$ref":"quarto-resource-document-slides-show-notes","description":"quarto-resource-document-slides-show-notes"},"rtl":{"_internalId":216632,"type":"ref","$ref":"quarto-resource-document-slides-rtl","description":"quarto-resource-document-slides-rtl"},"df-print":{"_internalId":216633,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":216634,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"columns":{"_internalId":216635,"type":"ref","$ref":"quarto-resource-document-text-columns","description":"quarto-resource-document-text-columns"},"tab-stop":{"_internalId":216636,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":216637,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":216638,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":216639,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":216640,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":216641,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":216641,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-indent":{"_internalId":216642,"type":"ref","$ref":"quarto-resource-document-toc-toc-indent","description":"quarto-resource-document-toc-toc-indent"},"toc-depth":{"_internalId":216643,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":216644,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":216645,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":216646,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"lof":{"_internalId":216647,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":216648,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"},"search":{"_internalId":216649,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":216650,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":216651,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":216652,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":216653,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":216654,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":216655,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":216656,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":216657,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"},"margin-geometry":{"_internalId":216659,"type":"ref","$ref":"quarto-resource-document-typst-margin-geometry","description":"quarto-resource-document-typst-margin-geometry"},"theorem-appearance":{"_internalId":216660,"type":"ref","$ref":"quarto-resource-document-typst-theorem-appearance","description":"quarto-resource-document-typst-theorem-appearance"},"email-version":{"_internalId":216661,"type":"ref","$ref":"quarto-resource-document-email-email-version","description":"quarto-resource-document-email-email-version"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,affiliation,copyright,article,journal,institute,abstract,abstract-title,notes,tags,doi,thanks,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,contrastcolor,comments,crossref,crossrefs-hover,logo,orientation,scrolling,expandable,nav-buttons,editor,editor_options,zotero,identifier,creator,contributor,type,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,codefont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,font-paths,CJKoptions,microtypeoptions,pointsize,lineheight,linestretch,interlinespace,linkstyle,whitespace,footnotes-hover,links-as-notes,reference-location,indenting,adjusting,hyphenate,list-tables,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,track-changes,keep-source,keep-hidden,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,headertext,footertext,includesource,footer,header,metadata-file,metadata-files,lang,language,shorthands,dir,latex-auto-mk,latex-auto-install,latex-min-runs,latex-max-runs,latex-clean,latex-makeindex,latex-makeindex-opts,latex-tlmgr-opts,latex-output-dir,latex-tinytex,latex-input-paths,documentclass,classoption,pagestyle,papersize,brand-mode,layout,page-layout,page-width,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,margin,geometry,hyperrefoptions,indent,block-headings,revealjs-url,s5-url,slidy-url,slideous-url,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-subarticles,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,subject,description,category,license,title-meta,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,number-offset,section-numbering,shift-heading-level-by,page-numbering,pagenumbering,top-level-division,ojs-engine,reference-doc,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,pdf-engine,pdf-engine-opt,pdf-engine-opts,beamerarticle,beameroption,aspectratio,titlegraphic,navigation,section-titles,colortheme,colorthemeoptions,fonttheme,fontthemeoptions,innertheme,innerthemeoptions,outertheme,outerthemeoptions,themeoptions,section,variant,markdown-headings,ipynb-output,quarto-required,preview-mode,pdfa,pdfaiccprofile,pdfaintent,pdf-standard,bibliography,csl,citations-hover,citation-location,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,bibliographystyle,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-typ,keep-tex,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,html-pre-tag-processing,css-property-processing,use-rsvg-convert,scrollable,smaller,output-location,embedded,display,auto-stretch,width,height,min-scale,max-scale,center,disable-layout,code-block-height,preview-links,auto-play-media,preload-iframes,view-distance,mobile-view-distance,parallax-background-image,parallax-background-size,parallax-background-horizontal,parallax-background-vertical,progress,history,navigation-mode,touch,keyboard,mouse-wheel,hide-inactive-cursor,hide-cursor-time,loop,shuffle,controls,controls-layout,controls-tutorial,controls-back-arrows,auto-slide,auto-slide-stoppable,auto-slide-method,default-timing,pause,help,hash,hash-type,hash-one-based-index,respond-to-hash-changes,fragment-in-url,slide-tone,jump-to-slide,pdf-max-pages-per-slide,pdf-separate-fragments,pdf-page-height-offset,overview,menu,chalkboard,multiplex,scroll-view,transition,transition-speed,background-transition,fragments,auto-animate,auto-animate-easing,auto-animate-duration,auto-animate-unmatched,auto-animate-styles,incremental,slide-level,slide-number,show-slide-number,title-slide-attributes,title-slide-style,center-title-slide,show-notes,rtl,df-print,wrap,columns,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-indent,toc-depth,toc-location,toc-title,toc-expand,lof,lot,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe,margin-geometry,theorem-appearance,email-version","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^nav_buttons$|^navButtons$|^editor-options$|^editorOptions$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^cjkmainfont$|^cjkmainfont$|^font_paths$|^fontPaths$|^cjkoptions$|^cjkoptions$|^footnotes_hover$|^footnotesHover$|^links_as_notes$|^linksAsNotes$|^reference_location$|^referenceLocation$|^list_tables$|^listTables$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^track_changes$|^trackChanges$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^latex_auto_mk$|^latexAutoMk$|^latex_auto_install$|^latexAutoInstall$|^latex_min_runs$|^latexMinRuns$|^latex_max_runs$|^latexMaxRuns$|^latex_clean$|^latexClean$|^latex_makeindex$|^latexMakeindex$|^latex_makeindex_opts$|^latexMakeindexOpts$|^latex_tlmgr_opts$|^latexTlmgrOpts$|^latex_output_dir$|^latexOutputDir$|^latex_tinytex$|^latexTinytex$|^latex_input_paths$|^latexInputPaths$|^brand_mode$|^brandMode$|^page_layout$|^pageLayout$|^page_width$|^pageWidth$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^revealjs_url$|^revealjsUrl$|^s5_url$|^s5Url$|^slidy_url$|^slidyUrl$|^slideous_url$|^slideousUrl$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_subarticles$|^notebookSubarticles$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_meta$|^titleMeta$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^section_numbering$|^sectionNumbering$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^page_numbering$|^pageNumbering$|^top_level_division$|^topLevelDivision$|^ojs_engine$|^ojsEngine$|^reference_doc$|^referenceDoc$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^section_titles$|^sectionTitles$|^markdown_headings$|^markdownHeadings$|^ipynb_output$|^ipynbOutput$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^pdf_standard$|^pdfStandard$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_typ$|^keepTyp$|^keep_tex$|^keepTex$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^html_pre_tag_processing$|^htmlPreTagProcessing$|^css_property_processing$|^cssPropertyProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^output_location$|^outputLocation$|^auto_stretch$|^autoStretch$|^min_scale$|^minScale$|^max_scale$|^maxScale$|^disable_layout$|^disableLayout$|^code_block_height$|^codeBlockHeight$|^preview_links$|^previewLinks$|^auto_play_media$|^autoPlayMedia$|^preload_iframes$|^preloadIframes$|^view_distance$|^viewDistance$|^mobile_view_distance$|^mobileViewDistance$|^parallax_background_image$|^parallaxBackgroundImage$|^parallax_background_size$|^parallaxBackgroundSize$|^parallax_background_horizontal$|^parallaxBackgroundHorizontal$|^parallax_background_vertical$|^parallaxBackgroundVertical$|^navigation_mode$|^navigationMode$|^mouse_wheel$|^mouseWheel$|^hide_inactive_cursor$|^hideInactiveCursor$|^hide_cursor_time$|^hideCursorTime$|^controls_layout$|^controlsLayout$|^controls_tutorial$|^controlsTutorial$|^controls_back_arrows$|^controlsBackArrows$|^auto_slide$|^autoSlide$|^auto_slide_stoppable$|^autoSlideStoppable$|^auto_slide_method$|^autoSlideMethod$|^default_timing$|^defaultTiming$|^hash_type$|^hashType$|^hash_one_based_index$|^hashOneBasedIndex$|^respond_to_hash_changes$|^respondToHashChanges$|^fragment_in_url$|^fragmentInUrl$|^slide_tone$|^slideTone$|^jump_to_slide$|^jumpToSlide$|^pdf_max_pages_per_slide$|^pdfMaxPagesPerSlide$|^pdf_separate_fragments$|^pdfSeparateFragments$|^pdf_page_height_offset$|^pdfPageHeightOffset$|^scroll_view$|^scrollView$|^transition_speed$|^transitionSpeed$|^background_transition$|^backgroundTransition$|^auto_animate$|^autoAnimate$|^auto_animate_easing$|^autoAnimateEasing$|^auto_animate_duration$|^autoAnimateDuration$|^auto_animate_unmatched$|^autoAnimateUnmatched$|^auto_animate_styles$|^autoAnimateStyles$|^slide_level$|^slideLevel$|^slide_number$|^slideNumber$|^show_slide_number$|^showSlideNumber$|^title_slide_attributes$|^titleSlideAttributes$|^title_slide_style$|^titleSlideStyle$|^center_title_slide$|^centerTitleSlide$|^show_notes$|^showNotes$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_indent$|^tocIndent$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$|^margin_geometry$|^marginGeometry$|^theorem_appearance$|^theoremAppearance$|^email_version$|^emailVersion$))","tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":5595,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},{"_internalId":216663,"type":"ref","$ref":"quarto-dev-schema","description":""}],"description":"be all of: a Quarto YAML front matter object, an object, a front-matter-execute object, ref"}],"description":"be at least one of: the null value, all of: a Quarto YAML front matter object, an object, a front-matter-execute object, ref","$id":"front-matter"},"project-config-fields":{"_internalId":216759,"type":"object","description":"be an object","properties":{"project":{"_internalId":216731,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string"},"type":{"type":"string","description":"be a string","completions":["default","website","book","manuscript"],"tags":{"description":"Project type (`default`, `website`, `book`, or `manuscript`)"},"documentation":"Project type (default, website,\nbook, or manuscript)"},"render":{"_internalId":216679,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Files to render (defaults to all files)"},"documentation":"Files to render (defaults to all files)"},"execute-dir":{"_internalId":216682,"type":"enum","enum":["file","project"],"description":"be one of: `file`, `project`","completions":["file","project"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Working directory for computations","long":"Control the working directory for computations. \n\n- `file`: Use the directory of the file that is currently executing.\n- `project`: Use the root directory of the project.\n"}},"documentation":"Working directory for computations"},"output-dir":{"type":"string","description":"be a string","tags":{"description":"Output directory"},"documentation":"Output directory"},"lib-dir":{"type":"string","description":"be a string","tags":{"description":"HTML library (JS/CSS/etc.) directory"},"documentation":"HTML library (JS/CSS/etc.) directory"},"resources":{"_internalId":216694,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Additional file resources to be copied to output directory"},{"_internalId":216693,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"Additional file resources to be copied to output directory"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"brand":{"_internalId":216699,"type":"ref","$ref":"brand-path-only-light-dark","description":"be brand-path-only-light-dark","tags":{"description":"Path to brand.yml or object with light and dark paths to brand.yml\n"},"documentation":"Path to brand.yml or object with light and dark paths to\nbrand.yml"},"preview":{"_internalId":216704,"type":"ref","$ref":"project-preview","description":"be project-preview","tags":{"description":"Options for `quarto preview`"},"documentation":"Options for quarto preview"},"pre-render":{"_internalId":216712,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":216711,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a pre-render step"},"documentation":"Scripts to run as a pre-render step"},"post-render":{"_internalId":216720,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":216719,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a post-render step"},"documentation":"Scripts to run as a post-render step"},"detect":{"_internalId":216730,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":216729,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},"completions":[],"tags":{"hidden":true,"description":"Array of paths used to detect the project type within a directory"},"documentation":"Array of paths used to detect the project type within a directory"}},"patternProperties":{},"closed":true,"documentation":"Project configuration.","tags":{"description":"Project configuration."}},"website":{"_internalId":216734,"type":"ref","$ref":"base-website","description":"be base-website","documentation":"Website configuration.","tags":{"description":"Website configuration."}},"book":{"_internalId":1706,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Book title"},"documentation":"Book title"},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"Description metadata for HTML version of book"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"The path to the favicon for this website"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Base URL for published website"},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"Base URL for website source code repository"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"The value of the target attribute for repo links"},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"The value of the rel attribute for repo links"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"Subdirectory of repository containing website"},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"Branch of website source code (defaults to main)"},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"URL to use for the ‘report an issue’ repository action."},"repo-actions":{"_internalId":511,"type":"anyOf","anyOf":[{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Links to source repository actions"},{"_internalId":510,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":509,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Links to source repository actions"}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},"llms-txt":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Generate llms.txt and .llms.md files for LLM-friendly content consumption.\n"},"documentation":"Generate llms.txt and .llms.md files for LLM-friendly content\nconsumption."},"google-analytics":{"_internalId":537,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":536,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"The Google tracking Id or measurement Id of this website."},"storage":{"_internalId":528,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"Storage options for Google Analytics data"},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"Anonymize the user ip address."},"version":{"_internalId":535,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"The version number of Google Analytics to use."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"Enable Google Analytics for this website"},"plausible-analytics":{"_internalId":547,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":546,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Path to a file containing the Plausible Analytics script snippet"}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},"announcement":{"_internalId":577,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":576,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement"},"documentation":"The content of the announcement"},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"Whether this announcement may be dismissed by the user."},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"The icon to display in the announcement"},"position":{"_internalId":570,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"The position of the announcement."},"type":{"_internalId":575,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"Provides an announcement displayed at the top of the page."},"cookie-consent":{"_internalId":609,"type":"anyOf","anyOf":[{"_internalId":582,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":608,"type":"object","description":"be an object","properties":{"type":{"_internalId":589,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"The type of consent that should be requested"},"style":{"_internalId":592,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"The style of the consent banner that is displayed"},"palette":{"_internalId":595,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"The url to the website’s cookie or privacy policy."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"The text to display for the cookie preferences link in the website\nfooter."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"Request cookie consent before enabling scripts that set cookies"},"search":{"_internalId":696,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":695,"type":"object","description":"be an object","properties":{"location":{"_internalId":618,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"Location for search widget (navbar or\nsidebar)"},"type":{"_internalId":621,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"Type of search UI (overlay or textbox)"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"Number of matches to display (defaults to 20)"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"Matches after which to collapse additional results"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"Provide button for copying search link"},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"keyboard-shortcut":{"_internalId":643,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},{"_internalId":642,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":653,"type":"anyOf","anyOf":[{"_internalId":650,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."},"algolia":{"_internalId":694,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"The name of the index to use when performing a search"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"The unique ID used by Algolia to identify your application"},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"The Search-Only API key to use to connect to Algolia"},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Enable tracking of Algolia analytics events"},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},"index-fields":{"_internalId":690,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"Field that contains the URL of index entries"},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"Field that contains the title of index entries"},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Field that contains the text of index entries"},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Field that contains the section of index entries"}},"patternProperties":{},"closed":true},"params":{"_internalId":693,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"Additional parameters to pass when executing a search"}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"Use external Algolia search index"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Provide full text search for website"},"navbar":{"_internalId":750,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":749,"type":"object","description":"be an object","properties":{"title":{"_internalId":709,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified."},"documentation":"The navbar title. Uses the project title if none is specified."},"logo":{"_internalId":712,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Alternate text for the logo image."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"The navbar’s background color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"The navbar’s foreground color (named or hex color)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"Include a search box in the navbar."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Always show the navbar (keeping it pinned)."},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"Collapse the navbar into a menu when the display becomes narrow."},"collapse-below":{"_internalId":729,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"left":{"_internalId":735,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":734,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"List of items for the left side of the navbar."},"right":{"_internalId":741,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":740,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"List of items for the right side of the navbar."},"toggle-position":{"_internalId":746,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"Top navigation options"},"sidebar":{"_internalId":821,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":820,"type":"anyOf","anyOf":[{"_internalId":818,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The identifier for this sidebar."},"title":{"_internalId":767,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The sidebar title. Uses the project title if none is specified."},"logo":{"_internalId":770,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Alternate text for the logo image."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Include a search control in the sidebar."},"tools":{"_internalId":782,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":781,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of sidebar tools"},"contents":{"_internalId":785,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"List of items for the sidebar"},"style":{"_internalId":788,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The style of sidebar (docked or\nfloating)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s background color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"alignment":{"_internalId":801,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"header":{"_internalId":811,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":810,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place above sidebar content (text or file path)"},"footer":{"_internalId":817,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":816,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":819,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":818,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The identifier for this sidebar."},"title":{"_internalId":767,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified."},"documentation":"The sidebar title. Uses the project title if none is specified."},"logo":{"_internalId":770,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Specification of image that will be displayed in the sidebar."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"Alternate text for the logo image."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Include a search control in the sidebar."},"tools":{"_internalId":782,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":781,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"List of sidebar tools"},"contents":{"_internalId":785,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"List of items for the sidebar"},"style":{"_internalId":788,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"The style of sidebar (docked or\nfloating)."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"The sidebar’s background color (named or hex color)."},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"The sidebar’s foreground color (named or hex color)."},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"alignment":{"_internalId":801,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"header":{"_internalId":811,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":810,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Markdown to place above sidebar content (text or file path)"},"footer":{"_internalId":817,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":816,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Markdown to place below sidebar content (text or file path)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"Side navigation options"},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Markdown to insert below each page’s body."},"margin-header":{"_internalId":831,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":830,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"Markdown to place above margin content (text or file path)"},"margin-footer":{"_internalId":837,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":836,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"Markdown to place below margin content (text or file path)"},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"Provide next and previous article links in footer"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"Provide a ‘back to top’ navigation button"},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"page-footer":{"_internalId":851,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":850,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"Shared page footer"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"},"comments":{"_internalId":860,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":868,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":867,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Publish open graph metadata"},"twitter-card":{"_internalId":876,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":875,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"Publish twitter card metadata"},"other-links":{"_internalId":881,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"A list of other links to appear below the TOC."},"code-links":{"_internalId":891,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":890,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"A list of code links to appear with this document."},"drafts":{"_internalId":899,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":898,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"A list of input documents that should be treated as drafts"},"draft-mode":{"_internalId":904,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"How to handle drafts that are encountered."},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Book subtitle"},"author":{"_internalId":924,"type":"anyOf","anyOf":[{"_internalId":922,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":920,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Author or authors of the book"},{"_internalId":923,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":922,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":920,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Author or authors of the book"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string","tags":{"description":"Book publication date"},"documentation":"Book publication date"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Format string for dates in the book"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Book abstract"},"chapters":{"_internalId":937,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Book part and chapter files"},"appendices":{"_internalId":942,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"Book appendix files"},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"Book references file"},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"Cover image (used in HTML and ePub formats)"},"cover-image-alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for cover image (used in HTML format)"},"documentation":"Alternative text for cover image (used in HTML format)"},"sharing":{"_internalId":957,"type":"anyOf","anyOf":[{"_internalId":955,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},{"_internalId":956,"type":"array","description":"be an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","items":{"_internalId":955,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"}}],"description":"be at least one of: one of: `twitter`, `facebook`, `linkedin`, an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","tags":{"complete-from":["anyOf",0]}},"downloads":{"_internalId":964,"type":"anyOf","anyOf":[{"_internalId":962,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},{"_internalId":963,"type":"array","description":"be an array of values, where each element must be one of: `pdf`, `epub`, `docx`","items":{"_internalId":962,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"}}],"description":"be at least one of: one of: `pdf`, `epub`, `docx`, an array of values, where each element must be one of: `pdf`, `epub`, `docx`","tags":{"complete-from":["anyOf",0]}},"tools":{"_internalId":970,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":969,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Custom tools for navbar or sidebar"},"documentation":"Custom tools for navbar or sidebar"},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"The Digital Object Identifier for this book."},"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"A url to the abstract for this item."},"accessed":{"_internalId":1415,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Date the item has been accessed."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Archive storing the item"},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Collection the item is part of within an archive."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Geographic location of the archive."},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},"available-date":{"_internalId":1438,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Date the item was initially available"},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Call number (to locate the item in a library)."},"chair":{"_internalId":1443,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"chapter-number":{"_internalId":1446,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"citation-number":{"_internalId":1455,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor).","completions":[]},"collection-editor":{"_internalId":1458,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"collection-number":{"_internalId":1461,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"compiler":{"_internalId":1466,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"composer":{"_internalId":1469,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"Composer (e.g. of a musical score)."},"container-author":{"_internalId":1472,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Title of the container holding the item."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Short/abbreviated form of container-title;","completions":[]},"contributor":{"_internalId":1479,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"curator":{"_internalId":1482,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Curator of an exhibit or collection (e.g. in a museum)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"director":{"_internalId":1487,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Director (e.g. of a film)."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1496,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"editor":{"_internalId":1499,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"The editor of the item."},"editorial-director":{"_internalId":1502,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"editor-translator":{"_internalId":1505,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"Combined editor and translator of a work."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1512,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Date the event related to an item took place."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"executive-producer":{"_internalId":1519,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"Executive producer of the item (e.g. of a television series)."},"first-reference-note-number":{"_internalId":1524,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"A url to the full text for this item."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Type, class, or subtype of the item"},"guest":{"_internalId":1531,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Guest (e.g. on a TV show or podcast)."},"host":{"_internalId":1534,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"id":{"_internalId":1541,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"A value which uniquely identifies this item."},"documentation":"A value which uniquely identifies this item."},"illustrator":{"_internalId":1544,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"interviewer":{"_internalId":1547,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"Interviewer (e.g. of an interview)."},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"International Standard Serial Number."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1562,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Issue number of the item or container holding the item"},"issued":{"_internalId":1565,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Date the item was issued/published."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Keyword(s) or tag(s) attached to the item."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The language of the item (used only for citation of the item)."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"The license information applicable to an item."},"locator":{"_internalId":1576,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"A cite-specific pinpointer within the item."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"narrator":{"_internalId":1581,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Narrator (e.g. of an audio book)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"number":{"_internalId":1586,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"Number identifying the item (e.g. a report number)."},"number-of-pages":{"_internalId":1589,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Total number of pages of the cited item."},"number-of-volumes":{"_internalId":1592,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"organizer":{"_internalId":1595,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"original-author":{"_internalId":1598,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"The original creator of a work."},"original-date":{"_internalId":1601,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Issue date of the original version."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"page":{"_internalId":1610,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"page-first":{"_internalId":1613,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"page-last":{"_internalId":1616,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"part-number":{"_internalId":1619,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Title of the specific part of an item being cited."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"A url to the pdf for this item."},"performer":{"_internalId":1626,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"PubMed Central reference number."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"PubMed reference number."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1641,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Printing number of the item or container holding the item."},"producer":{"_internalId":1644,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"A public url for this item."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"The publisher of the item."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"The geographic location of the publisher."},"recipient":{"_internalId":1653,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Recipient (e.g. of a letter)."},"reviewed-author":{"_internalId":1656,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Author of the item reviewed by the current item."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Title of the item reviewed by the current item."},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"Scale of e.g. a map or model."},"script-writer":{"_internalId":1665,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"section":{"_internalId":1668,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"series-creator":{"_internalId":1671,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Creator of a series (e.g. of a television series)."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"submitted":{"_internalId":1678,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"supplement-number":{"_internalId":1681,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"Short/abbreviated form oftitle.","completions":[]},"translator":{"_internalId":1686,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"Translator"},"type":{"_internalId":1689,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"The type\nof the item."},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1698,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"volume":{"_internalId":1701,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Title of the volume of the item or container holding the item."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Book configuration."},"documentation":"Book configuration."},"manuscript":{"_internalId":216744,"type":"ref","$ref":"manuscript-schema","description":"be manuscript-schema","documentation":"Manuscript configuration","tags":{"description":"Manuscript configuration"}},"type":{"_internalId":216747,"type":"enum","enum":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"description":"be 'cd93424f-d5ba-4e95-91c6-1890eab59fc7'","completions":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"exhaustiveCompletions":true,"documentation":"internal-schema-hack","tags":{"description":"internal-schema-hack","hidden":true}},"engines":{"_internalId":216758,"type":"array","description":"be an array of values, where each element must be at least one of: a string, external-engine","items":{"_internalId":216757,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":216756,"type":"ref","$ref":"external-engine","description":"be external-engine"}],"description":"be at least one of: a string, external-engine"},"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’.","tags":{"description":"List execution engines you want to give priority when determining which engine should render a notebook. If two engines have support for a notebook, the one listed earlier will be chosen. Quarto's default order is 'knitr', 'jupyter', 'markdown', 'julia'."}}},"patternProperties":{},"$id":"project-config-fields"},"project-config":{"_internalId":216790,"type":"allOf","allOf":[{"_internalId":216788,"type":"object","description":"be a Quarto YAML front matter object","properties":{"execute":{"_internalId":216785,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},"format":{"_internalId":216786,"type":"ref","$ref":"front-matter-format","description":"be at least one of: the name of a pandoc-supported output format, an object, all of: an object"},"profile":{"_internalId":216787,"type":"ref","$ref":"project-profile","description":"Specify a default profile and profile groups"}},"patternProperties":{}},{"_internalId":216785,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},{"_internalId":216789,"type":"ref","$ref":"front-matter","description":"be at least one of: the null value, all of: a Quarto YAML front matter object, an object, a front-matter-execute object, ref"},{"_internalId":216760,"type":"ref","$ref":"project-config-fields","description":"be an object"}],"description":"be a project configuration object","$id":"project-config"},"engine-markdown":{"_internalId":216838,"type":"object","description":"be an object","properties":{"label":{"_internalId":216792,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":216793,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":216794,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"title":{"_internalId":216795,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":216796,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":216797,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":216798,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":216799,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":216800,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":216801,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":216802,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":216803,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":216804,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":216805,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":216806,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":216807,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":216808,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":216809,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":216810,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":216811,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":216812,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":216813,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":216814,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":216815,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":216816,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":216817,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":216818,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":216819,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":216820,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":216821,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":216822,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":216823,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":216824,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":216825,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":216826,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":216827,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":216828,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":216829,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":216830,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"html-table-processing":{"_internalId":216831,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":216832,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":216833,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":216834,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":216835,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":216836,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":216837,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,title,padding,expandable,width,height,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,html-table-processing,output,warning,error,include,panel,output-location","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-markdown"},"engine-knitr":{"_internalId":216933,"type":"object","description":"be an object","properties":{"label":{"_internalId":216840,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":216841,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":216842,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"cache":{"_internalId":216843,"type":"ref","$ref":"quarto-resource-cell-cache-cache","description":"quarto-resource-cell-cache-cache"},"cache-path":{"_internalId":216844,"type":"ref","$ref":"quarto-resource-cell-cache-cache-path","description":"quarto-resource-cell-cache-cache-path"},"cache-vars":{"_internalId":216845,"type":"ref","$ref":"quarto-resource-cell-cache-cache-vars","description":"quarto-resource-cell-cache-cache-vars"},"cache-globals":{"_internalId":216846,"type":"ref","$ref":"quarto-resource-cell-cache-cache-globals","description":"quarto-resource-cell-cache-cache-globals"},"cache-lazy":{"_internalId":216847,"type":"ref","$ref":"quarto-resource-cell-cache-cache-lazy","description":"quarto-resource-cell-cache-cache-lazy"},"cache-rebuild":{"_internalId":216848,"type":"ref","$ref":"quarto-resource-cell-cache-cache-rebuild","description":"quarto-resource-cell-cache-cache-rebuild"},"cache-comments":{"_internalId":216849,"type":"ref","$ref":"quarto-resource-cell-cache-cache-comments","description":"quarto-resource-cell-cache-cache-comments"},"dependson":{"_internalId":216850,"type":"ref","$ref":"quarto-resource-cell-cache-dependson","description":"quarto-resource-cell-cache-dependson"},"autodep":{"_internalId":216851,"type":"ref","$ref":"quarto-resource-cell-cache-autodep","description":"quarto-resource-cell-cache-autodep"},"title":{"_internalId":216852,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":216853,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":216854,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":216855,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":216856,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":216857,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":216858,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":216859,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":216860,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":216861,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":216862,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":216863,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":216864,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":216865,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":216866,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"tidy":{"_internalId":216867,"type":"ref","$ref":"quarto-resource-cell-codeoutput-tidy","description":"quarto-resource-cell-codeoutput-tidy"},"tidy-opts":{"_internalId":216868,"type":"ref","$ref":"quarto-resource-cell-codeoutput-tidy-opts","description":"quarto-resource-cell-codeoutput-tidy-opts"},"collapse":{"_internalId":216869,"type":"ref","$ref":"quarto-resource-cell-codeoutput-collapse","description":"quarto-resource-cell-codeoutput-collapse"},"prompt":{"_internalId":216870,"type":"ref","$ref":"quarto-resource-cell-codeoutput-prompt","description":"quarto-resource-cell-codeoutput-prompt"},"highlight":{"_internalId":216871,"type":"ref","$ref":"quarto-resource-cell-codeoutput-highlight","description":"quarto-resource-cell-codeoutput-highlight"},"class-source":{"_internalId":216872,"type":"ref","$ref":"quarto-resource-cell-codeoutput-class-source","description":"quarto-resource-cell-codeoutput-class-source"},"attr-source":{"_internalId":216873,"type":"ref","$ref":"quarto-resource-cell-codeoutput-attr-source","description":"quarto-resource-cell-codeoutput-attr-source"},"fig-width":{"_internalId":216874,"type":"ref","$ref":"quarto-resource-cell-figure-fig-width","description":"quarto-resource-cell-figure-fig-width"},"fig-height":{"_internalId":216875,"type":"ref","$ref":"quarto-resource-cell-figure-fig-height","description":"quarto-resource-cell-figure-fig-height"},"fig-cap":{"_internalId":216876,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":216877,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":216878,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":216879,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":216880,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":216881,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":216882,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":216883,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"fig-format":{"_internalId":216884,"type":"ref","$ref":"quarto-resource-cell-figure-fig-format","description":"quarto-resource-cell-figure-fig-format"},"fig-dpi":{"_internalId":216885,"type":"ref","$ref":"quarto-resource-cell-figure-fig-dpi","description":"quarto-resource-cell-figure-fig-dpi"},"fig-asp":{"_internalId":216886,"type":"ref","$ref":"quarto-resource-cell-figure-fig-asp","description":"quarto-resource-cell-figure-fig-asp"},"out-width":{"_internalId":216887,"type":"ref","$ref":"quarto-resource-cell-figure-out-width","description":"quarto-resource-cell-figure-out-width"},"out-height":{"_internalId":216888,"type":"ref","$ref":"quarto-resource-cell-figure-out-height","description":"quarto-resource-cell-figure-out-height"},"fig-keep":{"_internalId":216889,"type":"ref","$ref":"quarto-resource-cell-figure-fig-keep","description":"quarto-resource-cell-figure-fig-keep"},"fig-show":{"_internalId":216890,"type":"ref","$ref":"quarto-resource-cell-figure-fig-show","description":"quarto-resource-cell-figure-fig-show"},"out-extra":{"_internalId":216891,"type":"ref","$ref":"quarto-resource-cell-figure-out-extra","description":"quarto-resource-cell-figure-out-extra"},"external":{"_internalId":216892,"type":"ref","$ref":"quarto-resource-cell-figure-external","description":"quarto-resource-cell-figure-external"},"sanitize":{"_internalId":216893,"type":"ref","$ref":"quarto-resource-cell-figure-sanitize","description":"quarto-resource-cell-figure-sanitize"},"interval":{"_internalId":216894,"type":"ref","$ref":"quarto-resource-cell-figure-interval","description":"quarto-resource-cell-figure-interval"},"aniopts":{"_internalId":216895,"type":"ref","$ref":"quarto-resource-cell-figure-aniopts","description":"quarto-resource-cell-figure-aniopts"},"animation-hook":{"_internalId":216896,"type":"ref","$ref":"quarto-resource-cell-figure-animation-hook","description":"quarto-resource-cell-figure-animation-hook"},"child":{"_internalId":216897,"type":"ref","$ref":"quarto-resource-cell-include-child","description":"quarto-resource-cell-include-child"},"file":{"_internalId":216898,"type":"ref","$ref":"quarto-resource-cell-include-file","description":"quarto-resource-cell-include-file"},"code":{"_internalId":216899,"type":"ref","$ref":"quarto-resource-cell-include-code","description":"quarto-resource-cell-include-code"},"purl":{"_internalId":216900,"type":"ref","$ref":"quarto-resource-cell-include-purl","description":"quarto-resource-cell-include-purl"},"layout":{"_internalId":216901,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":216902,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":216903,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":216904,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":216905,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":216906,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":216907,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":216908,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":216909,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":216910,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":216911,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":216912,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":216913,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"tbl-colwidths":{"_internalId":216914,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"html-table-processing":{"_internalId":216915,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":216916,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":216917,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":216918,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":216919,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":216920,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":216921,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"},"message":{"_internalId":216922,"type":"ref","$ref":"quarto-resource-cell-textoutput-message","description":"quarto-resource-cell-textoutput-message"},"results":{"_internalId":216923,"type":"ref","$ref":"quarto-resource-cell-textoutput-results","description":"quarto-resource-cell-textoutput-results"},"comment":{"_internalId":216924,"type":"ref","$ref":"quarto-resource-cell-textoutput-comment","description":"quarto-resource-cell-textoutput-comment"},"class-output":{"_internalId":216925,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-output","description":"quarto-resource-cell-textoutput-class-output"},"attr-output":{"_internalId":216926,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-output","description":"quarto-resource-cell-textoutput-attr-output"},"class-warning":{"_internalId":216927,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-warning","description":"quarto-resource-cell-textoutput-class-warning"},"attr-warning":{"_internalId":216928,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-warning","description":"quarto-resource-cell-textoutput-attr-warning"},"class-message":{"_internalId":216929,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-message","description":"quarto-resource-cell-textoutput-class-message"},"attr-message":{"_internalId":216930,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-message","description":"quarto-resource-cell-textoutput-attr-message"},"class-error":{"_internalId":216931,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-error","description":"quarto-resource-cell-textoutput-class-error"},"attr-error":{"_internalId":216932,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-error","description":"quarto-resource-cell-textoutput-attr-error"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,cache,cache-path,cache-vars,cache-globals,cache-lazy,cache-rebuild,cache-comments,dependson,autodep,title,padding,expandable,width,height,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,tidy,tidy-opts,collapse,prompt,highlight,class-source,attr-source,fig-width,fig-height,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,fig-format,fig-dpi,fig-asp,out-width,out-height,fig-keep,fig-show,out-extra,external,sanitize,interval,aniopts,animation-hook,child,file,code,purl,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,tbl-colwidths,html-table-processing,output,warning,error,include,panel,output-location,message,results,comment,class-output,attr-output,class-warning,attr-warning,class-message,attr-message,class-error,attr-error","type":"string","pattern":"(?!(^cache_path$|^cachePath$|^cache_vars$|^cacheVars$|^cache_globals$|^cacheGlobals$|^cache_lazy$|^cacheLazy$|^cache_rebuild$|^cacheRebuild$|^cache_comments$|^cacheComments$|^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^tidy_opts$|^tidyOpts$|^class_source$|^classSource$|^attr_source$|^attrSource$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^out_width$|^outWidth$|^out_height$|^outHeight$|^fig_keep$|^figKeep$|^fig_show$|^figShow$|^out_extra$|^outExtra$|^animation_hook$|^animationHook$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^tbl_colwidths$|^tblColwidths$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$|^class_output$|^classOutput$|^attr_output$|^attrOutput$|^class_warning$|^classWarning$|^attr_warning$|^attrWarning$|^class_message$|^classMessage$|^attr_message$|^attrMessage$|^class_error$|^classError$|^attr_error$|^attrError$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-knitr"},"engine-jupyter":{"_internalId":216986,"type":"object","description":"be an object","properties":{"label":{"_internalId":216935,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":216936,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":216937,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"tags":{"_internalId":216938,"type":"ref","$ref":"quarto-resource-cell-attributes-tags","description":"quarto-resource-cell-attributes-tags"},"id":{"_internalId":216939,"type":"ref","$ref":"quarto-resource-cell-attributes-id","description":"quarto-resource-cell-attributes-id"},"export":{"_internalId":216940,"type":"ref","$ref":"quarto-resource-cell-attributes-export","description":"quarto-resource-cell-attributes-export"},"title":{"_internalId":216941,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":216942,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":216943,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":216944,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":216945,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"context":{"_internalId":216946,"type":"ref","$ref":"quarto-resource-cell-card-context","description":"quarto-resource-cell-card-context"},"content":{"_internalId":216947,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":216948,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":216949,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":216950,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":216951,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":216952,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":216953,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":216954,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":216955,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":216956,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":216957,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":216958,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":216959,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":216960,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":216961,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":216962,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":216963,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":216964,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":216965,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":216966,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":216967,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":216968,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":216969,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":216970,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":216971,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":216972,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":216973,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":216974,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":216975,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":216976,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":216977,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"tbl-colwidths":{"_internalId":216978,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"html-table-processing":{"_internalId":216979,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":216980,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":216981,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":216982,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":216983,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":216984,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":216985,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,tags,id,export,title,padding,expandable,width,height,context,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,tbl-colwidths,html-table-processing,output,warning,error,include,panel,output-location","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^tbl_colwidths$|^tblColwidths$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-jupyter"},"engine-julia":{"_internalId":217034,"type":"object","description":"be an object","properties":{"label":{"_internalId":216988,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":216989,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":216990,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"title":{"_internalId":216991,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":216992,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":216993,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":216994,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":216995,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":216996,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":216997,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":216998,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":216999,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":217000,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":217001,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":217002,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":217003,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":217004,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":217005,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":217006,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":217007,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":217008,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":217009,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":217010,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":217011,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":217012,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":217013,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":217014,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":217015,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":217016,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":217017,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":217018,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":217019,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":217020,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":217021,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":217022,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":217023,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":217024,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":217025,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":217026,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"html-table-processing":{"_internalId":217027,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":217028,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":217029,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":217030,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":217031,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":217032,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":217033,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,title,padding,expandable,width,height,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,html-table-processing,output,warning,error,include,panel,output-location","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-julia"},"plugin-reveal":{"_internalId":7,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"name":{"type":"string","description":"be a string"},"register":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},"script":{"_internalId":4,"type":"anyOf","anyOf":[{"_internalId":2,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"async":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["path"]}],"description":"be at least one of: a string, an object"},{"_internalId":3,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":2,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"async":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["path"]}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object"},"stylesheet":{"_internalId":6,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string"},"self-contained":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["name"],"propertyNames":{"errorMessage":"property ${value} does not match case convention path,name,register,script,stylesheet,self-contained","type":"string","pattern":"(?!(^self_contained$|^selfContained$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"plugin-reveal"}} \ No newline at end of file +{"date":{"_internalId":19,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":18,"type":"object","description":"be an object","properties":{"value":{"type":"string","description":"be a string"},"format":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["value"]}],"description":"be at least one of: a string, an object","$id":"date"},"date-format":{"type":"string","description":"be a string","$id":"date-format"},"math-methods":{"_internalId":26,"type":"enum","enum":["plain","webtex","gladtex","mathml","mathjax","katex"],"description":"be one of: `plain`, `webtex`, `gladtex`, `mathml`, `mathjax`, `katex`","completions":["plain","webtex","gladtex","mathml","mathjax","katex"],"exhaustiveCompletions":true,"$id":"math-methods"},"pandoc-format-request-headers":{"_internalId":34,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":33,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},"$id":"pandoc-format-request-headers"},"pandoc-format-output-file":{"_internalId":42,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":41,"type":"enum","enum":[null],"description":"be 'null'","completions":[],"exhaustiveCompletions":true,"tags":{"hidden":true}}],"description":"be at least one of: a string, 'null'","$id":"pandoc-format-output-file"},"filter-entry-point":{"_internalId":45,"type":"enum","enum":["pre-ast","post-ast","pre-quarto","post-quarto","pre-render","post-render","pre-finalize","post-finalize"],"description":"be one of: `pre-ast`, `post-ast`, `pre-quarto`, `post-quarto`, `pre-render`, `post-render`, `pre-finalize`, `post-finalize`","completions":["pre-ast","post-ast","pre-quarto","post-quarto","pre-render","post-render","pre-finalize","post-finalize"],"exhaustiveCompletions":true,"$id":"filter-entry-point"},"pandoc-format-filters":{"_internalId":76,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":75,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":58,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string"},"path":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["path"]},{"_internalId":68,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string"},"path":{"type":"string","description":"be a string"},"at":{"_internalId":67,"type":"ref","$ref":"filter-entry-point","description":"be filter-entry-point"}},"patternProperties":{},"required":["path","at"]},{"_internalId":74,"type":"object","description":"be an object","properties":{"type":{"_internalId":73,"type":"enum","enum":["citeproc"],"description":"be 'citeproc'","completions":["citeproc"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["type"],"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},"$id":"pandoc-format-filters"},"pandoc-shortcodes":{"_internalId":81,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"$id":"pandoc-shortcodes"},"page-column":{"_internalId":84,"type":"enum","enum":["body","body-outset","body-outset-left","body-outset-right","page","page-left","page-right","page-inset","page-inset-left","page-inset-right","screen","screen-left","screen-right","screen-inset","screen-inset-shaded","screen-inset-left","screen-inset-right","margin"],"description":"be one of: `body`, `body-outset`, `body-outset-left`, `body-outset-right`, `page`, `page-left`, `page-right`, `page-inset`, `page-inset-left`, `page-inset-right`, `screen`, `screen-left`, `screen-right`, `screen-inset`, `screen-inset-shaded`, `screen-inset-left`, `screen-inset-right`, `margin`","completions":["body","body-outset","body-outset-left","body-outset-right","page","page-left","page-right","page-inset","page-inset-left","page-inset-right","screen","screen-left","screen-right","screen-inset","screen-inset-shaded","screen-inset-left","screen-inset-right","margin"],"exhaustiveCompletions":true,"$id":"page-column"},"contents-auto":{"_internalId":98,"type":"object","description":"be an object","properties":{"auto":{"_internalId":97,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":96,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":95,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: a string, an array of values, where each element must be a string","tags":{"description":{"short":"Automatically generate sidebar contents.","long":"Automatically generate sidebar contents. Pass `true` to include all documents\nin the site, a directory name to include only documents in that directory, \nor a glob (or list of globs) to include documents based on a pattern. \n\nSubdirectories will create sections (use an `index.qmd` in the directory to\nprovide its title). Order will be alphabetical unless a numeric `order` field\nis provided in document metadata.\n"}},"documentation":"Automatically generate sidebar contents."}},"patternProperties":{},"$id":"contents-auto"},"navigation-item":{"_internalId":106,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":105,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"}],"description":"be at least one of: a string, navigation-item-object","$id":"navigation-item"},"navigation-item-object":{"_internalId":135,"type":"object","description":"be an object","properties":{"aria-label":{"type":"string","description":"be a string","tags":{"description":"Accessible label for the item."},"documentation":"Accessible label for the item."},"file":{"type":"string","description":"be a string","tags":{"description":"Alias for href\n","hidden":true},"documentation":"Alias for href","completions":[]},"href":{"type":"string","description":"be a string","tags":{"description":"Link to file contained with the project or external URL\n"},"documentation":"Link to file contained with the project or external URL"},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)","long":"Name of bootstrap icon (e.g. `github`, `bluesky`, `share`)\nSee for a list of available icons\n"}},"documentation":"Name of bootstrap icon (e.g. github,\nbluesky, share)"},"id":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"menu":{"_internalId":126,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":125,"type":"ref","$ref":"navigation-item","description":"be navigation-item"}},"text":{"type":"string","description":"be a string","tags":{"description":"Text to display for item (defaults to the\ndocument title if not provided). Supports markdown formatting.\n"},"documentation":"Text to display for item (defaults to the document title if not\nprovided). Supports markdown formatting."},"url":{"type":"string","description":"be a string","tags":{"description":"Alias for href\n","hidden":true},"documentation":"Alias for href","completions":[]},"rel":{"type":"string","description":"be a string","tags":{"description":"Value for rel attribute. Multiple space-separated values are permitted.\nSee \nfor a details.\n"},"documentation":"Value for rel attribute. Multiple space-separated values are\npermitted. See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel\nfor a details."},"target":{"type":"string","description":"be a string","tags":{"description":"Value for target attribute.\nSee \nfor details.\n"},"documentation":"Value for target attribute. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target\nfor details."}},"patternProperties":{},"closed":true,"$id":"navigation-item-object"},"giscus-themes":{"_internalId":138,"type":"enum","enum":["light","light_high_contrast","light_protanopia","light_tritanopia","dark","dark_high_contrast","dark_protanopia","dark_tritanopia","dark_dimmed","transparent_dark","cobalt","purple_dark","noborder_light","noborder_dark","noborder_gray","preferred_color_scheme"],"description":"be one of: `light`, `light_high_contrast`, `light_protanopia`, `light_tritanopia`, `dark`, `dark_high_contrast`, `dark_protanopia`, `dark_tritanopia`, `dark_dimmed`, `transparent_dark`, `cobalt`, `purple_dark`, `noborder_light`, `noborder_dark`, `noborder_gray`, `preferred_color_scheme`","completions":["light","light_high_contrast","light_protanopia","light_tritanopia","dark","dark_high_contrast","dark_protanopia","dark_tritanopia","dark_dimmed","transparent_dark","cobalt","purple_dark","noborder_light","noborder_dark","noborder_gray","preferred_color_scheme"],"exhaustiveCompletions":true,"$id":"giscus-themes"},"giscus-configuration":{"_internalId":195,"type":"object","description":"be an object","properties":{"repo":{"type":"string","description":"be a string","tags":{"description":{"short":"The Github repo that will be used to store comments.","long":"The Github repo that will be used to store comments.\n\nIn order to work correctly, the repo must be public, with the giscus app installed, and \nthe discussions feature must be enabled.\n"}},"documentation":"The Github repo that will be used to store comments."},"repo-id":{"type":"string","description":"be a string","tags":{"description":{"short":"The Github repository identifier.","long":"The Github repository identifier.\n\nYou can quickly find this by using the configuration tool at [https://giscus.app](https://giscus.app).\nIf this is not provided, Quarto will attempt to discover it at render time.\n"}},"documentation":"The Github repository identifier."},"category":{"type":"string","description":"be a string","tags":{"description":{"short":"The discussion category where new discussions will be created.","long":"The discussion category where new discussions will be created. It is recommended \nto use a category with the **Announcements** type so that new discussions \ncan only be created by maintainers and giscus.\n"}},"documentation":"The discussion category where new discussions will be created."},"category-id":{"type":"string","description":"be a string","tags":{"description":{"short":"The Github category identifier.","long":"The Github category identifier.\n\nYou can quickly find this by using the configuration tool at [https://giscus.app](https://giscus.app).\nIf this is not provided, Quarto will attempt to discover it at render time.\n"}},"documentation":"The Github category identifier."},"mapping":{"_internalId":157,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","completions":["pathname","url","title","og:title"],"tags":{"description":{"short":"The mapping between the page and the embedded discussion.","long":"The mapping between the page and the embedded discussion. \n\n- `pathname`: The discussion title contains the page path\n- `url`: The discussion title contains the page url\n- `title`: The discussion title contains the page title\n- `og:title`: The discussion title contains the `og:title` metadata value\n- any other string or number: Any other strings will be passed through verbatim and a discussion title\ncontaining that value will be used. Numbers will be treated\nas a discussion number and automatic discussion creation is not supported.\n"}},"documentation":"The mapping between the page and the embedded discussion."},"reactions-enabled":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Display reactions for the discussion's main post before the comments."},"documentation":"Display reactions for the discussion’s main post before the\ncomments."},"loading":{"_internalId":162,"type":"enum","enum":["lazy"],"description":"be 'lazy'","completions":["lazy"],"exhaustiveCompletions":true,"tags":{"description":"Specify `loading: lazy` to defer loading comments until the user scrolls near the comments container."},"documentation":"Specify loading: lazy to defer loading comments until\nthe user scrolls near the comments container."},"input-position":{"_internalId":165,"type":"enum","enum":["top","bottom"],"description":"be one of: `top`, `bottom`","completions":["top","bottom"],"exhaustiveCompletions":true,"tags":{"description":"Place the comment input box above or below the comments."},"documentation":"Place the comment input box above or below the comments."},"theme":{"_internalId":192,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":172,"type":"ref","$ref":"giscus-themes","description":"be giscus-themes"},{"_internalId":191,"type":"object","description":"be an object","properties":{"light":{"_internalId":182,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":181,"type":"ref","$ref":"giscus-themes","description":"be giscus-themes"}],"description":"be at least one of: a string, giscus-themes","tags":{"description":"The light theme name."},"documentation":"The light theme name."},"dark":{"_internalId":190,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":189,"type":"ref","$ref":"giscus-themes","description":"be giscus-themes"}],"description":"be at least one of: a string, giscus-themes","tags":{"description":"The dark theme name."},"documentation":"The dark theme name."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, giscus-themes, an object","tags":{"description":{"short":"The giscus theme to use when displaying comments.","long":"The giscus theme to use when displaying comments. Light and dark themes are supported. If a single theme is provided by name, it will be used as light and dark theme. To use different themes, use `light` and `dark` key: \n\n```yaml\nwebsite:\n comments:\n giscus:\n theme:\n light: light # giscus theme used for light website theme\n dark: dark_dimmed # giscus theme used for dark website theme\n```\n"}},"documentation":"The giscus theme to use when displaying comments."},"language":{"type":"string","description":"be a string","tags":{"description":"The language that should be used when displaying the commenting interface."},"documentation":"The language that should be used when displaying the commenting\ninterface."}},"patternProperties":{},"required":["repo"],"closed":true,"$id":"giscus-configuration"},"external-engine":{"_internalId":202,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to the TypeScript module for the execution engine"},"documentation":"Path to the TypeScript module for the execution engine"}},"patternProperties":{},"required":["path"],"closed":true,"tags":{"description":"An execution engine not pre-loaded in Quarto"},"documentation":"An execution engine not pre-loaded in Quarto","$id":"external-engine"},"document-comments-configuration":{"_internalId":344,"type":"anyOf","anyOf":[{"_internalId":207,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":343,"type":"object","description":"be an object","properties":{"utterances":{"_internalId":220,"type":"object","description":"be an object","properties":{"repo":{"type":"string","description":"be a string","tags":{"description":"The Github repo that will be used to store comments."},"documentation":"The Github repo that will be used to store comments."},"label":{"type":"string","description":"be a string","tags":{"description":"The label that will be assigned to issues created by Utterances."},"documentation":"The label that will be assigned to issues created by Utterances."},"theme":{"type":"string","description":"be a string","completions":["github-light","github-dark","github-dark-orange","icy-dark","dark-blue","photon-dark","body-light","gruvbox-dark"],"tags":{"description":{"short":"The Github theme that should be used for Utterances.","long":"The Github theme that should be used for Utterances\n(`github-light`, `github-dark`, `github-dark-orange`,\n`icy-dark`, `dark-blue`, `photon-dark`, `body-light`,\nor `gruvbox-dark`)\n"}},"documentation":"The Github theme that should be used for Utterances."},"issue-term":{"type":"string","description":"be a string","completions":["pathname","url","title","og:title"],"tags":{"description":{"short":"How posts should be mapped to Github issues","long":"How posts should be mapped to Github issues\n(`pathname`, `url`, `title` or `og:title`)\n"}},"documentation":"How posts should be mapped to Github issues"}},"patternProperties":{},"required":["repo"],"closed":true},"giscus":{"_internalId":223,"type":"ref","$ref":"giscus-configuration","description":"be giscus-configuration"},"beblob":{"_internalId":246,"type":"object","description":"be an object","properties":{"client-id":{"type":"string","description":"be a string","tags":{"description":"The GitLab OAuth Application ID used to authenticate commenters."},"documentation":"Override the default hypothesis client url with a custom client\nurl."},"redirect-uri":{"type":"string","description":"be a string","tags":{"description":"The redirect URI registered for the GitLab OAuth Application\n(must match the value configured in GitLab, typically your site URL).\n"},"documentation":"Controls whether the sidebar opens automatically on startup."},"project-name":{"type":"string","description":"be a string","tags":{"description":"The GitLab project (e.g. `group/project`) that will be used to store comments as issues."},"documentation":"Controls whether the in-document highlights are shown by default\n(always, whenSidebarOpen or\nnever)"},"issue-mapping-strategy":{"type":"string","description":"be a string","completions":["url","pageTitle","issueId"],"tags":{"description":{"short":"How pages are mapped to GitLab issues.","long":"How pages are mapped to GitLab issues\n(`url`, `pageTitle`, or `issueId`).\n"}},"documentation":"Controls the overall look of the sidebar (classic or\nclean)"},"issue-id":{"type":"string","description":"be a string","tags":{"description":"The GitLab issue id to use. Required only when `issue-mapping-strategy` is `issueId`."},"documentation":"Controls whether the experimental New Note button should be shown in\nthe notes tab in the sidebar."},"gitlab-url":{"type":"string","description":"be a string","tags":{"description":"The base URL of the GitLab instance (use this for self-managed GitLab). Defaults to `https://gitlab.com`."},"documentation":"Specify a URL to direct a user to, in a new tab. when they click on\nthe annotation author link in the header of an annotation."},"theme":{"type":"string","description":"be a string","completions":["dark","white","light","classic"],"tags":{"description":{"short":"The theme that should be used for BeBlob.","long":"The theme that should be used for BeBlob\n(`dark`, `white`, `light`, or `classic`).\n"}},"documentation":"Alternative annotation services which the client should connect to\ninstead of connecting to the public Hypothesis service at\nhypothes.is."},"dev-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Load the BeBlob assets locally from your own server instead of from the CDN."},"documentation":"The base URL of the service API."},"version":{"type":"string","description":"be a string","tags":{"description":"The BeBlob version to load from the CDN."},"documentation":"The domain name which the annotation service is associated with."},"client-url":{"type":"string","description":"be a string","tags":{"description":"Override the default BeBlob client url with a custom client url (e.g. a self-hosted bundle)."},"documentation":"An OAuth 2 grant token which the client can send to the service in\norder to get an access token for making authenticated requests to the\nservice."}},"patternProperties":{},"required":["client-id","redirect-uri","project-name"],"closed":true},"hypothesis":{"_internalId":342,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":341,"type":"object","description":"be an object","properties":{"client-url":{"type":"string","description":"be a string","tags":{"description":"Override the default hypothesis client url with a custom client url."},"documentation":"A flag indicating whether users should be able to leave groups of\nwhich they are a member."},"openSidebar":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Controls whether the sidebar opens automatically on startup."},"documentation":"A flag indicating whether annotation cards should show links that\ntake the user to see an annotation in context."},"showHighlights":{"_internalId":264,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":263,"type":"enum","enum":["always","whenSidebarOpen","never"],"description":"be one of: `always`, `whenSidebarOpen`, `never`","completions":["always","whenSidebarOpen","never"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `always`, `whenSidebarOpen`, `never`","tags":{"description":"Controls whether the in-document highlights are shown by default (`always`, `whenSidebarOpen` or `never`)"},"documentation":"An array of Group IDs or the literal string\n$rpc:requestGroups"},"theme":{"_internalId":267,"type":"enum","enum":["classic","clean"],"description":"be one of: `classic`, `clean`","completions":["classic","clean"],"exhaustiveCompletions":true,"tags":{"description":"Controls the overall look of the sidebar (`classic` or `clean`)"},"documentation":"The URL to an image for the annotation service. This image will\nappear to the left of the name of the currently selected group."},"enableExperimentalNewNoteButton":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Controls whether the experimental New Note button \nshould be shown in the notes tab in the sidebar.\n"},"documentation":"Settings to adjust the commenting sidebar’s look and feel."},"usernameUrl":{"type":"string","description":"be a string","tags":{"description":"Specify a URL to direct a user to, \nin a new tab. when they click on the annotation author \nlink in the header of an annotation.\n"},"documentation":"Secondary color for elements of the commenting UI."},"services":{"_internalId":302,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":301,"type":"object","description":"be an object","properties":{"apiUrl":{"type":"string","description":"be a string","tags":{"description":"The base URL of the service API."},"documentation":"The background color for call to action buttons."},"authority":{"type":"string","description":"be a string","tags":{"description":"The domain name which the annotation service is associated with."},"documentation":"The font family for selection text in the annotation card."},"grantToken":{"type":"string","description":"be a string","tags":{"description":"An OAuth 2 grant token which the client can send to the service in order to get an access token for making authenticated requests to the service."},"documentation":"The font family for the actual annotation value that the user writes\nabout the page or selection."},"allowLeavingGroups":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"A flag indicating whether users should be able to leave groups of which they are a member."},"documentation":"A CSS selector specifying the containing element into which the\nsidebar iframe will be placed."},"enableShareLinks":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"A flag indicating whether annotation cards should show links that take the user to see an annotation in context."},"documentation":"Defines a focused filter set for the available annotations on a\npage."},"groups":{"_internalId":298,"type":"anyOf","anyOf":[{"_internalId":292,"type":"enum","enum":["$rpc:requestGroups"],"description":"be '$rpc:requestGroups'","completions":["$rpc:requestGroups"],"exhaustiveCompletions":true},{"_internalId":297,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: '$rpc:requestGroups', an array of values, where each element must be a string","tags":{"description":"An array of Group IDs or the literal string `$rpc:requestGroups`"},"documentation":"The username of the user to focus on."},"icon":{"type":"string","description":"be a string","tags":{"description":"The URL to an image for the annotation service. This image will appear to the left of the name of the currently selected group."},"documentation":"The userid of the user to focus on."}},"patternProperties":{},"required":["apiUrl","authority","grantToken"],"propertyNames":{"errorMessage":"property ${value} does not match case convention apiUrl,authority,grantToken,allowLeavingGroups,enableShareLinks,groups,icon","type":"string","pattern":"(?!(^api_url$|^api-url$|^grant_token$|^grant-token$|^allow_leaving_groups$|^allow-leaving-groups$|^enable_share_links$|^enable-share-links$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Alternative annotation services which the client should \nconnect to instead of connecting to the public Hypothesis \nservice at hypothes.is.\n"},"documentation":"The main background color of the commenting UI."}},"branding":{"_internalId":315,"type":"object","description":"be an object","properties":{"accentColor":{"type":"string","description":"be a string","tags":{"description":"Secondary color for elements of the commenting UI."},"documentation":"Host url and port number of receiving iframe"},"appBackgroundColor":{"type":"string","description":"be a string","tags":{"description":"The main background color of the commenting UI."},"documentation":"Number of nested iframes deep the client is relative from the\nreceiving iframe."},"ctaBackgroundColor":{"type":"string","description":"be a string","tags":{"description":"The background color for call to action buttons."},"documentation":"The root URL from which assets are loaded."},"selectionFontFamily":{"type":"string","description":"be a string","tags":{"description":"The font family for selection text in the annotation card."},"documentation":"The URL for the sidebar application which displays annotations."},"annotationFontFamily":{"type":"string","description":"be a string","tags":{"description":"The font family for the actual annotation value that the user writes about the page or selection."},"documentation":"The title of the page"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention accentColor,appBackgroundColor,ctaBackgroundColor,selectionFontFamily,annotationFontFamily","type":"string","pattern":"(?!(^accent_color$|^accent-color$|^app_background_color$|^app-background-color$|^cta_background_color$|^cta-background-color$|^selection_font_family$|^selection-font-family$|^annotation_font_family$|^annotation-font-family$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Settings to adjust the commenting sidebar's look and feel."},"documentation":"The display name of the user to focus on."},"externalContainerSelector":{"type":"string","description":"be a string","tags":{"description":"A CSS selector specifying the containing element into which the sidebar iframe will be placed."},"documentation":"A short description of the content."},"focus":{"_internalId":329,"type":"object","description":"be an object","properties":{"user":{"_internalId":328,"type":"object","description":"be an object","properties":{"username":{"type":"string","description":"be a string","tags":{"description":"The username of the user to focus on."},"documentation":"The alt text for the preview image."},"userid":{"type":"string","description":"be a string","tags":{"description":"The userid of the user to focus on."},"documentation":"Image width (pixels)"},"displayName":{"type":"string","description":"be a string","tags":{"description":"The display name of the user to focus on."},"documentation":"Image height (pixels)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention username,userid,displayName","type":"string","pattern":"(?!(^display_name$|^display-name$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}}},"patternProperties":{},"required":["user"],"tags":{"description":"Defines a focused filter set for the available annotations on a page."},"documentation":"The path to a preview image for the content."},"requestConfigFromFrame":{"_internalId":336,"type":"object","description":"be an object","properties":{"origin":{"type":"string","description":"be a string","tags":{"description":"Host url and port number of receiving iframe"},"documentation":"Port to listen on (defaults to random value between 3000 and\n8000)"},"ancestorLevel":{"type":"number","description":"be a number","tags":{"description":"Number of nested iframes deep the client is relative from the receiving iframe."},"documentation":"Hostname to bind to (defaults to 127.0.0.1)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention origin,ancestorLevel","type":"string","pattern":"(?!(^ancestor_level$|^ancestor-level$))","tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["capitalizationCase"],"error-importance":-5,"case-detection":true}},"assetRoot":{"type":"string","description":"be a string","tags":{"description":"The root URL from which assets are loaded."},"documentation":"Use an exernal application to preview the project."},"sidebarAppUrl":{"type":"string","description":"be a string","tags":{"description":"The URL for the sidebar application which displays annotations."},"documentation":"Open a web browser to view the preview (defaults to true)"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object"}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', an object","$id":"document-comments-configuration"},"social-metadata":{"_internalId":359,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title of the page","long":"The title of the page. Note that by default Quarto will automatically \nuse the title metadata from the page. Specify this field if you’d like \nto override the title for this provider.\n"}},"documentation":"Footer center content. Supports markdown formatting."},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"A short description of the content.","long":"A short description of the content. Note that by default Quarto will\nautomatically use the description metadata from the page. Specify this\nfield if you’d like to override the description for this provider.\n"}},"documentation":"Footer border (true, false, or a border\ncolor)"},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a preview image for the content.","long":"The path to a preview image for the content. By default, Quarto will use\nthe `image` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"Footer background color"},"image-alt":{"type":"string","description":"be a string","tags":{"description":{"short":"The alt text for the preview image.","long":"The alt text for the preview image. By default, Quarto will use\nthe `image-alt` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"Footer foreground color"},"image-width":{"type":"number","description":"be a number","tags":{"description":"Image width (pixels)"},"documentation":"Website title"},"image-height":{"type":"number","description":"be a number","tags":{"description":"Image height (pixels)"},"documentation":"Website description"}},"patternProperties":{},"closed":true,"$id":"social-metadata"},"page-footer-region":{"_internalId":370,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":369,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":368,"type":"ref","$ref":"navigation-item","description":"be navigation-item"}}],"description":"be at least one of: a string, an array of values, where each element must be navigation-item","$id":"page-footer-region"},"sidebar-contents":{"_internalId":405,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":377,"type":"ref","$ref":"contents-auto","description":"be contents-auto"},{"_internalId":404,"type":"array","description":"be an array of values, where each element must be at least one of: navigation-item, a string, an object, contents-auto","items":{"_internalId":403,"type":"anyOf","anyOf":[{"_internalId":384,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},{"type":"string","description":"be a string"},{"_internalId":399,"type":"object","description":"be an object","properties":{"section":{"_internalId":395,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, the null value"},"contents":{"_internalId":398,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents"}},"patternProperties":{},"closed":true},{"_internalId":402,"type":"ref","$ref":"contents-auto","description":"be contents-auto"}],"description":"be at least one of: navigation-item, a string, an object, contents-auto"}}],"description":"be at least one of: a string, contents-auto, an array of values, where each element must be at least one of: navigation-item, a string, an object, contents-auto","$id":"sidebar-contents"},"project-preview":{"_internalId":425,"type":"object","description":"be an object","properties":{"port":{"type":"number","description":"be a number","tags":{"description":"Port to listen on (defaults to random value between 3000 and 8000)"},"documentation":"Regular expression for detecting when the server is ready."},"host":{"type":"string","description":"be a string","tags":{"description":"Hostname to bind to (defaults to 127.0.0.1)"},"documentation":"Sites published from project"},"serve":{"_internalId":416,"type":"ref","$ref":"project-serve","description":"be project-serve","tags":{"description":"Use an exernal application to preview the project."},"documentation":"Unique identifier for site"},"browser":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Open a web browser to view the preview (defaults to true)"},"documentation":"Published URL for site"},"watch-inputs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Re-render input files when they change (defaults to true)"},"documentation":"The title of the page"},"navigate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Navigate the browser automatically when outputs are updated (defaults to true)"},"documentation":"A short description of the content."},"timeout":{"type":"number","description":"be a number","tags":{"description":"Time (in seconds) after which to exit if there are no active clients"},"documentation":"The path to a preview image for the content."}},"patternProperties":{},"closed":true,"$id":"project-preview"},"project-serve":{"_internalId":437,"type":"object","description":"be an object","properties":{"cmd":{"type":"string","description":"be a string","tags":{"description":"Serve project preview using the specified command.\nInterpolate the `--port` into the command using `{port}`.\n"},"documentation":"The alt text for the preview image."},"args":{"type":"string","description":"be a string","tags":{"description":"Additional command line arguments for preview command."},"documentation":"Image width (pixels)"},"env":{"_internalId":434,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Environment variables to set for preview command."},"documentation":"Image height (pixels)"},"ready":{"type":"string","description":"be a string","tags":{"description":"Regular expression for detecting when the server is ready."},"documentation":"Card style"}},"patternProperties":{},"required":["cmd","ready"],"closed":true,"$id":"project-serve"},"publish":{"_internalId":448,"type":"object","description":"be an object","properties":{"netlify":{"_internalId":447,"type":"array","description":"be an array of values, where each element must be publish-record","items":{"_internalId":446,"type":"ref","$ref":"publish-record","description":"be publish-record"}}},"patternProperties":{},"closed":true,"tags":{"description":"Sites published from project"},"documentation":"@username of the content creator (must be a quoted\nstring)","$id":"publish"},"publish-record":{"_internalId":455,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier for site"},"documentation":"@username of the website (must be a quoted string)"},"url":{"type":"string","description":"be a string","tags":{"description":"Published URL for site"},"documentation":"The title of the page"}},"patternProperties":{},"closed":true,"$id":"publish-record"},"twitter-card-config":{"_internalId":359,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title of the page","long":"The title of the page. Note that by default Quarto will automatically \nuse the title metadata from the page. Specify this field if you’d like \nto override the title for this provider.\n"}},"documentation":"Footer center content. Supports markdown formatting."},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"A short description of the content.","long":"A short description of the content. Note that by default Quarto will\nautomatically use the description metadata from the page. Specify this\nfield if you’d like to override the description for this provider.\n"}},"documentation":"Footer border (true, false, or a border\ncolor)"},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a preview image for the content.","long":"The path to a preview image for the content. By default, Quarto will use\nthe `image` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"Footer background color"},"image-alt":{"type":"string","description":"be a string","tags":{"description":{"short":"The alt text for the preview image.","long":"The alt text for the preview image. By default, Quarto will use\nthe `image-alt` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"Footer foreground color"},"image-width":{"type":"number","description":"be a number","tags":{"description":"Image width (pixels)"},"documentation":"Website title"},"image-height":{"type":"number","description":"be a number","tags":{"description":"Image height (pixels)"},"documentation":"Website description"},"card-style":{"_internalId":460,"type":"enum","enum":["summary","summary_large_image"],"description":"be one of: `summary`, `summary_large_image`","completions":["summary","summary_large_image"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Card style","long":"Card style (`summary` or `summary_large_image`).\n\nIf this is not provided, the best style will automatically\nselected based upon other metadata. You can learn more about Twitter Card\nstyles [here](https://developer.twitter.com/en/docs/twitter-for-websites/cards/overview/abouts-cards).\n"}},"documentation":"Name that should be displayed for the overall site"},"creator":{"type":"string","description":"be a string","tags":{"description":"`@username` of the content creator (must be a quoted string)"},"documentation":"Footer left content. Supports markdown formatting."},"site":{"type":"string","description":"be a string","tags":{"description":"`@username` of the website (must be a quoted string)"},"documentation":"Footer right content. Supports markdown formatting."}},"patternProperties":{},"closed":true,"$id":"twitter-card-config"},"open-graph-config":{"_internalId":359,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title of the page","long":"The title of the page. Note that by default Quarto will automatically \nuse the title metadata from the page. Specify this field if you’d like \nto override the title for this provider.\n"}},"documentation":"Footer center content. Supports markdown formatting."},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"A short description of the content.","long":"A short description of the content. Note that by default Quarto will\nautomatically use the description metadata from the page. Specify this\nfield if you’d like to override the description for this provider.\n"}},"documentation":"Footer border (true, false, or a border\ncolor)"},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a preview image for the content.","long":"The path to a preview image for the content. By default, Quarto will use\nthe `image` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"Footer background color"},"image-alt":{"type":"string","description":"be a string","tags":{"description":{"short":"The alt text for the preview image.","long":"The alt text for the preview image. By default, Quarto will use\nthe `image-alt` value from the format metadata. If you provide an \nimage, you may also optionally provide an `image-width` and `image-height`.\n"}},"documentation":"Footer foreground color"},"image-width":{"type":"number","description":"be a number","tags":{"description":"Image width (pixels)"},"documentation":"Website title"},"image-height":{"type":"number","description":"be a number","tags":{"description":"Image height (pixels)"},"documentation":"Website description"},"locale":{"type":"string","description":"be a string","tags":{"description":"Locale of open graph metadata"},"documentation":"The path to the favicon for this website"},"site-name":{"type":"string","description":"be a string","tags":{"description":{"short":"Name that should be displayed for the overall site","long":"Name that should be displayed for the overall site. If not explicitly \nprovided in the `open-graph` metadata, Quarto will use the website or\nbook `title` by default.\n"}},"documentation":"Base URL for published website"}},"patternProperties":{},"closed":true,"$id":"open-graph-config"},"page-footer":{"_internalId":503,"type":"object","description":"be an object","properties":{"left":{"_internalId":481,"type":"ref","$ref":"page-footer-region","description":"be page-footer-region","tags":{"description":"Footer left content. Supports markdown formatting."},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"right":{"_internalId":484,"type":"ref","$ref":"page-footer-region","description":"be page-footer-region","tags":{"description":"Footer right content. Supports markdown formatting."},"documentation":"Base URL for website source code repository"},"center":{"_internalId":487,"type":"ref","$ref":"page-footer-region","description":"be page-footer-region","tags":{"description":"Footer center content. Supports markdown formatting."},"documentation":"The value of the target attribute for repo links"},"border":{"_internalId":494,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"description":"Footer border (`true`, `false`, or a border color)"},"documentation":"The value of the rel attribute for repo links"},"background":{"type":"string","description":"be a string","tags":{"description":"Footer background color"},"documentation":"Subdirectory of repository containing website"},"foreground":{"type":"string","description":"be a string","tags":{"description":"Footer foreground color"},"documentation":"Branch of website source code (defaults to main)"}},"patternProperties":{},"closed":true,"$id":"page-footer"},"base-website":{"_internalId":928,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Website title"},"documentation":"URL to use for the ‘report an issue’ repository action."},"description":{"type":"string","description":"be a string","tags":{"description":"Website description"},"documentation":"Links to source repository actions"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Links to source repository actions"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Generate llms.txt and .llms.md files for LLM-friendly content\nconsumption."},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"Enable Google Analytics for this website"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"The Google tracking Id or measurement Id of this website."},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Storage options for Google Analytics data"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"Anonymize the user ip address."},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"The version number of Google Analytics to use."},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},"repo-actions":{"_internalId":534,"type":"anyOf","anyOf":[{"_internalId":532,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Provides an announcement displayed at the top of the page."},{"_internalId":533,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":532,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Provides an announcement displayed at the top of the page."}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"The content of the announcement. Supports markdown formatting."},"llms-txt":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Generate llms.txt and .llms.md files for LLM-friendly content consumption.\n"},"documentation":"Whether this announcement may be dismissed by the user."},"google-analytics":{"_internalId":560,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":559,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"The position of the announcement."},"storage":{"_internalId":551,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"Request cookie consent before enabling scripts that set cookies"},"version":{"_internalId":558,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"The type of consent that should be requested"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"The icon to display in the announcement"},"plausible-analytics":{"_internalId":570,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":569,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"The style of the consent banner that is displayed"},"announcement":{"_internalId":600,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":599,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement. Supports markdown formatting."},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"The text to display for the cookie preferences link in the website\nfooter."},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"Provide full text search for website"},"position":{"_internalId":593,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"Location for search widget (navbar or\nsidebar)"},"type":{"_internalId":598,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"Type of search UI (overlay or textbox)"}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"The url to the website’s cookie or privacy policy."},"cookie-consent":{"_internalId":632,"type":"anyOf","anyOf":[{"_internalId":605,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":631,"type":"object","description":"be an object","properties":{"type":{"_internalId":612,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"Matches after which to collapse additional results"},"style":{"_internalId":615,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"Provide button for copying search link"},"palette":{"_internalId":618,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"Number of matches to display (defaults to 20)"},"search":{"_internalId":719,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":718,"type":"object","description":"be an object","properties":{"location":{"_internalId":641,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"The name of the index to use when performing a search"},"type":{"_internalId":644,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"The unique ID used by Algolia to identify your application"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"The Search-Only API key to use to connect to Algolia"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"Enable tracking of Algolia analytics events"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"Field that contains the URL of index entries"},"keyboard-shortcut":{"_internalId":666,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Field that contains the text of index entries"},{"_internalId":665,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Field that contains the text of index entries"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":676,"type":"anyOf","anyOf":[{"_internalId":673,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Field that contains the section of index entries"},"algolia":{"_internalId":717,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"Top navigation options"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"The navbar title. Uses the project title if none is specified.\nSupports markdown formatting."},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Alternate text for the logo image."},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"index-fields":{"_internalId":713,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"The navbar’s background color (named or hex color)."},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"The navbar’s foreground color (named or hex color)."},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Include a search box in the navbar."},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Always show the navbar (keeping it pinned)."}},"patternProperties":{},"closed":true},"params":{"_internalId":716,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"Collapse the navbar into a menu when the display becomes narrow."}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"Additional parameters to pass when executing a search"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Use external Algolia search index"},"navbar":{"_internalId":773,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":772,"type":"object","description":"be an object","properties":{"title":{"_internalId":732,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified. Supports markdown formatting."},"documentation":"List of items for the left side of the navbar."},"logo":{"_internalId":735,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"List of items for the right side of the navbar."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"Side navigation options"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"The identifier for this sidebar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Specification of image that will be displayed in the sidebar."},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"Alternate text for the logo image."},"collapse-below":{"_internalId":752,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"left":{"_internalId":758,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":757,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"Include a search control in the sidebar."},"right":{"_internalId":764,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":763,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"List of sidebar tools"},"toggle-position":{"_internalId":769,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"List of items for the sidebar"},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"The style of sidebar (docked or\nfloating)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"sidebar":{"_internalId":844,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":843,"type":"anyOf","anyOf":[{"_internalId":841,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar’s foreground color (named or hex color)."},"title":{"_internalId":790,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified. Supports markdown formatting."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"logo":{"_internalId":793,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Markdown to place above sidebar content (text or file path)"},"tools":{"_internalId":805,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":804,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"Markdown to place below sidebar content (text or file path)"},"contents":{"_internalId":808,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"style":{"_internalId":811,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to insert below each page’s body."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place above margin content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to place below margin content (text or file path)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Provide next and previous article links in footer"},"alignment":{"_internalId":824,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Provide a ‘back to top’ navigation button"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Shared page footer"},"header":{"_internalId":834,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":833,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"footer":{"_internalId":840,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":839,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":842,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":841,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar’s foreground color (named or hex color)."},"title":{"_internalId":790,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified. Supports markdown formatting."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"logo":{"_internalId":793,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Markdown to place above sidebar content (text or file path)"},"tools":{"_internalId":805,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":804,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"Markdown to place below sidebar content (text or file path)"},"contents":{"_internalId":808,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"style":{"_internalId":811,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to insert below each page’s body."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place above margin content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to place below margin content (text or file path)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Provide next and previous article links in footer"},"alignment":{"_internalId":824,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Provide a ‘back to top’ navigation button"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Shared page footer"},"header":{"_internalId":834,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":833,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"footer":{"_internalId":840,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":839,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"The sidebar’s background color (named or hex color)."},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Publish open graph metadata"},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Publish twitter card metadata"},"margin-header":{"_internalId":854,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":853,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"A list of other links to appear below the TOC."},"margin-footer":{"_internalId":860,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":859,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"A list of code links to appear with this document."},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"A list of input documents that should be treated as drafts"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"How to handle drafts that are encountered."},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"Book subtitle"},"page-footer":{"_internalId":874,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":873,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"Author or authors of the book"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Author or authors of the book"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Book publication date"},"comments":{"_internalId":883,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":891,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":890,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Format string for dates in the book"},"twitter-card":{"_internalId":899,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":898,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"Book abstract"},"other-links":{"_internalId":904,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"Book part and chapter files"},"code-links":{"_internalId":914,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":913,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"Book appendix files"},"drafts":{"_internalId":922,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":921,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"Book references file"},"draft-mode":{"_internalId":927,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"}},"patternProperties":{},"closed":true,"$id":"base-website"},"book-schema":{"_internalId":928,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Book title"},"documentation":"URL to use for the ‘report an issue’ repository action."},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"Links to source repository actions"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Links to source repository actions"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Generate llms.txt and .llms.md files for LLM-friendly content\nconsumption."},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"Enable Google Analytics for this website"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"The Google tracking Id or measurement Id of this website."},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Storage options for Google Analytics data"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"Anonymize the user ip address."},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"The version number of Google Analytics to use."},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},"repo-actions":{"_internalId":534,"type":"anyOf","anyOf":[{"_internalId":532,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Provides an announcement displayed at the top of the page."},{"_internalId":533,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":532,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Provides an announcement displayed at the top of the page."}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"The content of the announcement. Supports markdown formatting."},"llms-txt":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Generate llms.txt and .llms.md files for LLM-friendly content consumption.\n"},"documentation":"Whether this announcement may be dismissed by the user."},"google-analytics":{"_internalId":560,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":559,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"The position of the announcement."},"storage":{"_internalId":551,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"Request cookie consent before enabling scripts that set cookies"},"version":{"_internalId":558,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"The type of consent that should be requested"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"The icon to display in the announcement"},"plausible-analytics":{"_internalId":570,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":569,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"The style of the consent banner that is displayed"},"announcement":{"_internalId":600,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":599,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement. Supports markdown formatting."},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"The text to display for the cookie preferences link in the website\nfooter."},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"Provide full text search for website"},"position":{"_internalId":593,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"Location for search widget (navbar or\nsidebar)"},"type":{"_internalId":598,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"Type of search UI (overlay or textbox)"}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"The url to the website’s cookie or privacy policy."},"cookie-consent":{"_internalId":632,"type":"anyOf","anyOf":[{"_internalId":605,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":631,"type":"object","description":"be an object","properties":{"type":{"_internalId":612,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"Matches after which to collapse additional results"},"style":{"_internalId":615,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"Provide button for copying search link"},"palette":{"_internalId":618,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"Number of matches to display (defaults to 20)"},"search":{"_internalId":719,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":718,"type":"object","description":"be an object","properties":{"location":{"_internalId":641,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"The name of the index to use when performing a search"},"type":{"_internalId":644,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"The unique ID used by Algolia to identify your application"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"The Search-Only API key to use to connect to Algolia"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"Enable tracking of Algolia analytics events"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"Field that contains the URL of index entries"},"keyboard-shortcut":{"_internalId":666,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Field that contains the text of index entries"},{"_internalId":665,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Field that contains the text of index entries"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":676,"type":"anyOf","anyOf":[{"_internalId":673,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Field that contains the section of index entries"},"algolia":{"_internalId":717,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"Top navigation options"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"The navbar title. Uses the project title if none is specified.\nSupports markdown formatting."},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Alternate text for the logo image."},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"index-fields":{"_internalId":713,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"The navbar’s background color (named or hex color)."},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"The navbar’s foreground color (named or hex color)."},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Include a search box in the navbar."},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Always show the navbar (keeping it pinned)."}},"patternProperties":{},"closed":true},"params":{"_internalId":716,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"Collapse the navbar into a menu when the display becomes narrow."}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"Additional parameters to pass when executing a search"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Use external Algolia search index"},"navbar":{"_internalId":773,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":772,"type":"object","description":"be an object","properties":{"title":{"_internalId":732,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified. Supports markdown formatting."},"documentation":"List of items for the left side of the navbar."},"logo":{"_internalId":735,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"List of items for the right side of the navbar."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"Side navigation options"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"The identifier for this sidebar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Specification of image that will be displayed in the sidebar."},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"Alternate text for the logo image."},"collapse-below":{"_internalId":752,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"left":{"_internalId":758,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":757,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"Include a search control in the sidebar."},"right":{"_internalId":764,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":763,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"List of sidebar tools"},"toggle-position":{"_internalId":769,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"List of items for the sidebar"},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"The style of sidebar (docked or\nfloating)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"sidebar":{"_internalId":844,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":843,"type":"anyOf","anyOf":[{"_internalId":841,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar’s foreground color (named or hex color)."},"title":{"_internalId":790,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified. Supports markdown formatting."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"logo":{"_internalId":793,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Markdown to place above sidebar content (text or file path)"},"tools":{"_internalId":805,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":804,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"Markdown to place below sidebar content (text or file path)"},"contents":{"_internalId":808,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"style":{"_internalId":811,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to insert below each page’s body."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place above margin content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to place below margin content (text or file path)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Provide next and previous article links in footer"},"alignment":{"_internalId":824,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Provide a ‘back to top’ navigation button"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Shared page footer"},"header":{"_internalId":834,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":833,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"footer":{"_internalId":840,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":839,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":842,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":841,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar’s foreground color (named or hex color)."},"title":{"_internalId":790,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified. Supports markdown formatting."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"logo":{"_internalId":793,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Markdown to place above sidebar content (text or file path)"},"tools":{"_internalId":805,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":804,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"Markdown to place below sidebar content (text or file path)"},"contents":{"_internalId":808,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"style":{"_internalId":811,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to insert below each page’s body."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place above margin content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to place below margin content (text or file path)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Provide next and previous article links in footer"},"alignment":{"_internalId":824,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Provide a ‘back to top’ navigation button"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Shared page footer"},"header":{"_internalId":834,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":833,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"footer":{"_internalId":840,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":839,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"The sidebar’s background color (named or hex color)."},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Publish open graph metadata"},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Publish twitter card metadata"},"margin-header":{"_internalId":854,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":853,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"A list of other links to appear below the TOC."},"margin-footer":{"_internalId":860,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":859,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"A list of code links to appear with this document."},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"A list of input documents that should be treated as drafts"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"How to handle drafts that are encountered."},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"Book subtitle"},"page-footer":{"_internalId":874,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":873,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"Author or authors of the book"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Author or authors of the book"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Book publication date"},"comments":{"_internalId":883,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":891,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":890,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Format string for dates in the book"},"twitter-card":{"_internalId":899,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":898,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"Book abstract"},"other-links":{"_internalId":904,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"Book part and chapter files"},"code-links":{"_internalId":914,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":913,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"Book appendix files"},"drafts":{"_internalId":922,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":921,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"Book references file"},"draft-mode":{"_internalId":927,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Cover image (used in HTML and ePub formats)"},"author":{"_internalId":947,"type":"anyOf","anyOf":[{"_internalId":945,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":943,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},{"_internalId":946,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":945,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":943,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string","tags":{"description":"Book publication date"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},"chapters":{"_internalId":960,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Custom tools for navbar or sidebar"},"appendices":{"_internalId":965,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"The Digital Object Identifier for this book."},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"A url to the abstract for this item."},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Date the item has been accessed."},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"cover-image-alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for cover image (used in HTML format)"},"documentation":"Archive storing the item"},"sharing":{"_internalId":980,"type":"anyOf","anyOf":[{"_internalId":978,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},{"_internalId":979,"type":"array","description":"be an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","items":{"_internalId":978,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."}}],"description":"be at least one of: one of: `twitter`, `facebook`, `linkedin`, an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","tags":{"complete-from":["anyOf",0]}},"downloads":{"_internalId":987,"type":"anyOf","anyOf":[{"_internalId":985,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},{"_internalId":986,"type":"array","description":"be an array of values, where each element must be one of: `pdf`, `epub`, `docx`","items":{"_internalId":985,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."}}],"description":"be at least one of: one of: `pdf`, `epub`, `docx`, an array of values, where each element must be one of: `pdf`, `epub`, `docx`","tags":{"complete-from":["anyOf",0]}},"tools":{"_internalId":993,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":992,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Custom tools for navbar or sidebar"},"documentation":"Date the item was initially available"},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"Call number (to locate the item in a library)."}},"patternProperties":{},"closed":true,"$id":"book-schema"},"chapter-item":{"_internalId":1015,"type":"anyOf","anyOf":[{"_internalId":1003,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},{"_internalId":1014,"type":"object","description":"be an object","properties":{"part":{"type":"string","description":"be a string","tags":{"description":"Part title or path to input file"},"documentation":"The role of this creator or contributor."},"chapters":{"_internalId":1013,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":1012,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Path to chapter input file"},"documentation":"An alternate version of the creator or contributor text used for\nalphabatizing."}},"patternProperties":{},"required":["part"]}],"description":"be at least one of: navigation-item, an object","$id":"chapter-item"},"chapter-list":{"_internalId":1021,"type":"array","description":"be an array of values, where each element must be chapter-item","items":{"_internalId":1020,"type":"ref","$ref":"chapter-item","description":"be chapter-item"},"$id":"chapter-list"},"other-links":{"_internalId":1037,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1036,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text for the link."},"documentation":"The text describing the creator or contributor (for example, creator\nname)."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The target id for the about page."},"icon":{"type":"string","description":"be a string","tags":{"description":"The bootstrap icon name for the link."},"documentation":"The template to use to layout this about page."},"rel":{"type":"string","description":"be a string","tags":{"description":"The rel attribute value for the link."},"documentation":"The path to the main image on the about page."},"target":{"type":"string","description":"be a string","tags":{"description":"The target attribute value for the link."},"documentation":"The alt text for the main image on the about page."}},"patternProperties":{},"required":["text","href"]},"$id":"other-links"},"crossref-labels-schema":{"type":"string","description":"be a string","completions":["alpha","arabic","roman"],"$id":"crossref-labels-schema"},"epub-contributor":{"_internalId":1057,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1056,"type":"anyOf","anyOf":[{"_internalId":1054,"type":"object","description":"be an object","properties":{"role":{"type":"string","description":"be a string","tags":{"description":{"short":"The role of this creator or contributor.","long":"The role of this creator or contributor using \n[MARC relators](https://loc.gov/marc/relators/relaterm.html). Human readable\ntranslations to commonly used relators (e.g. 'author', 'editor') will \nattempt to be automatically translated.\n"}},"documentation":"The id of this listing."},"file-as":{"type":"string","description":"be a string","tags":{"description":"An alternate version of the creator or contributor text used for alphabatizing."},"documentation":"The type of listing to create."},"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the creator or contributor (for example, creator name)."},"documentation":"The files or path globs of Quarto documents or YAML files that should\nbe included in the listing."}},"patternProperties":{},"closed":true},{"_internalId":1055,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1054,"type":"object","description":"be an object","properties":{"role":{"type":"string","description":"be a string","tags":{"description":{"short":"The role of this creator or contributor.","long":"The role of this creator or contributor using \n[MARC relators](https://loc.gov/marc/relators/relaterm.html). Human readable\ntranslations to commonly used relators (e.g. 'author', 'editor') will \nattempt to be automatically translated.\n"}},"documentation":"The id of this listing."},"file-as":{"type":"string","description":"be a string","tags":{"description":"An alternate version of the creator or contributor text used for alphabatizing."},"documentation":"The type of listing to create."},"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the creator or contributor (for example, creator name)."},"documentation":"The files or path globs of Quarto documents or YAML files that should\nbe included in the listing."}},"patternProperties":{},"closed":true}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: a string, at least one of: an object, an array of values, where each element must be an object","$id":"epub-contributor"},"format-language":{"_internalId":1184,"type":"object","description":"be a format language description object","properties":{"toc-title-document":{"type":"string","description":"be a string"},"toc-title-website":{"type":"string","description":"be a string"},"related-formats-title":{"type":"string","description":"be a string"},"related-notebooks-title":{"type":"string","description":"be a string"},"callout-tip-title":{"type":"string","description":"be a string"},"callout-note-title":{"type":"string","description":"be a string"},"callout-warning-title":{"type":"string","description":"be a string"},"callout-important-title":{"type":"string","description":"be a string"},"callout-caution-title":{"type":"string","description":"be a string"},"section-title-abstract":{"type":"string","description":"be a string"},"section-title-footnotes":{"type":"string","description":"be a string"},"section-title-appendices":{"type":"string","description":"be a string"},"code-summary":{"type":"string","description":"be a string"},"code-tools-menu-caption":{"type":"string","description":"be a string"},"code-tools-show-all-code":{"type":"string","description":"be a string"},"code-tools-hide-all-code":{"type":"string","description":"be a string"},"code-tools-view-source":{"type":"string","description":"be a string"},"code-tools-source-code":{"type":"string","description":"be a string"},"search-no-results-text":{"type":"string","description":"be a string"},"copy-button-tooltip":{"type":"string","description":"be a string"},"copy-button-tooltip-success":{"type":"string","description":"be a string"},"repo-action-links-edit":{"type":"string","description":"be a string"},"repo-action-links-source":{"type":"string","description":"be a string"},"repo-action-links-issue":{"type":"string","description":"be a string"},"search-matching-documents-text":{"type":"string","description":"be a string"},"search-copy-link-title":{"type":"string","description":"be a string"},"search-hide-matches-text":{"type":"string","description":"be a string"},"search-more-match-text":{"type":"string","description":"be a string"},"search-more-matches-text":{"type":"string","description":"be a string"},"search-clear-button-title":{"type":"string","description":"be a string"},"search-text-placeholder":{"type":"string","description":"be a string"},"search-detached-cancel-button-title":{"type":"string","description":"be a string"},"search-submit-button-title":{"type":"string","description":"be a string"},"crossref-fig-title":{"type":"string","description":"be a string"},"crossref-tbl-title":{"type":"string","description":"be a string"},"crossref-lst-title":{"type":"string","description":"be a string"},"crossref-thm-title":{"type":"string","description":"be a string"},"crossref-lem-title":{"type":"string","description":"be a string"},"crossref-cor-title":{"type":"string","description":"be a string"},"crossref-prp-title":{"type":"string","description":"be a string"},"crossref-cnj-title":{"type":"string","description":"be a string"},"crossref-def-title":{"type":"string","description":"be a string"},"crossref-exm-title":{"type":"string","description":"be a string"},"crossref-exr-title":{"type":"string","description":"be a string"},"crossref-fig-prefix":{"type":"string","description":"be a string"},"crossref-tbl-prefix":{"type":"string","description":"be a string"},"crossref-lst-prefix":{"type":"string","description":"be a string"},"crossref-ch-prefix":{"type":"string","description":"be a string"},"crossref-apx-prefix":{"type":"string","description":"be a string"},"crossref-sec-prefix":{"type":"string","description":"be a string"},"crossref-eq-prefix":{"type":"string","description":"be a string"},"crossref-thm-prefix":{"type":"string","description":"be a string"},"crossref-lem-prefix":{"type":"string","description":"be a string"},"crossref-cor-prefix":{"type":"string","description":"be a string"},"crossref-prp-prefix":{"type":"string","description":"be a string"},"crossref-cnj-prefix":{"type":"string","description":"be a string"},"crossref-def-prefix":{"type":"string","description":"be a string"},"crossref-exm-prefix":{"type":"string","description":"be a string"},"crossref-exr-prefix":{"type":"string","description":"be a string"},"crossref-lof-title":{"type":"string","description":"be a string"},"crossref-lot-title":{"type":"string","description":"be a string"},"crossref-lol-title":{"type":"string","description":"be a string"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention toc-title-document,toc-title-website,related-formats-title,related-notebooks-title,callout-tip-title,callout-note-title,callout-warning-title,callout-important-title,callout-caution-title,section-title-abstract,section-title-footnotes,section-title-appendices,code-summary,code-tools-menu-caption,code-tools-show-all-code,code-tools-hide-all-code,code-tools-view-source,code-tools-source-code,search-no-results-text,copy-button-tooltip,copy-button-tooltip-success,repo-action-links-edit,repo-action-links-source,repo-action-links-issue,search-matching-documents-text,search-copy-link-title,search-hide-matches-text,search-more-match-text,search-more-matches-text,search-clear-button-title,search-text-placeholder,search-detached-cancel-button-title,search-submit-button-title,crossref-fig-title,crossref-tbl-title,crossref-lst-title,crossref-thm-title,crossref-lem-title,crossref-cor-title,crossref-prp-title,crossref-cnj-title,crossref-def-title,crossref-exm-title,crossref-exr-title,crossref-fig-prefix,crossref-tbl-prefix,crossref-lst-prefix,crossref-ch-prefix,crossref-apx-prefix,crossref-sec-prefix,crossref-eq-prefix,crossref-thm-prefix,crossref-lem-prefix,crossref-cor-prefix,crossref-prp-prefix,crossref-cnj-prefix,crossref-def-prefix,crossref-exm-prefix,crossref-exr-prefix,crossref-lof-title,crossref-lot-title,crossref-lol-title","type":"string","pattern":"(?!(^toc_title_document$|^tocTitleDocument$|^toc_title_website$|^tocTitleWebsite$|^related_formats_title$|^relatedFormatsTitle$|^related_notebooks_title$|^relatedNotebooksTitle$|^callout_tip_title$|^calloutTipTitle$|^callout_note_title$|^calloutNoteTitle$|^callout_warning_title$|^calloutWarningTitle$|^callout_important_title$|^calloutImportantTitle$|^callout_caution_title$|^calloutCautionTitle$|^section_title_abstract$|^sectionTitleAbstract$|^section_title_footnotes$|^sectionTitleFootnotes$|^section_title_appendices$|^sectionTitleAppendices$|^code_summary$|^codeSummary$|^code_tools_menu_caption$|^codeToolsMenuCaption$|^code_tools_show_all_code$|^codeToolsShowAllCode$|^code_tools_hide_all_code$|^codeToolsHideAllCode$|^code_tools_view_source$|^codeToolsViewSource$|^code_tools_source_code$|^codeToolsSourceCode$|^search_no_results_text$|^searchNoResultsText$|^copy_button_tooltip$|^copyButtonTooltip$|^copy_button_tooltip_success$|^copyButtonTooltipSuccess$|^repo_action_links_edit$|^repoActionLinksEdit$|^repo_action_links_source$|^repoActionLinksSource$|^repo_action_links_issue$|^repoActionLinksIssue$|^search_matching_documents_text$|^searchMatchingDocumentsText$|^search_copy_link_title$|^searchCopyLinkTitle$|^search_hide_matches_text$|^searchHideMatchesText$|^search_more_match_text$|^searchMoreMatchText$|^search_more_matches_text$|^searchMoreMatchesText$|^search_clear_button_title$|^searchClearButtonTitle$|^search_text_placeholder$|^searchTextPlaceholder$|^search_detached_cancel_button_title$|^searchDetachedCancelButtonTitle$|^search_submit_button_title$|^searchSubmitButtonTitle$|^crossref_fig_title$|^crossrefFigTitle$|^crossref_tbl_title$|^crossrefTblTitle$|^crossref_lst_title$|^crossrefLstTitle$|^crossref_thm_title$|^crossrefThmTitle$|^crossref_lem_title$|^crossrefLemTitle$|^crossref_cor_title$|^crossrefCorTitle$|^crossref_prp_title$|^crossrefPrpTitle$|^crossref_cnj_title$|^crossrefCnjTitle$|^crossref_def_title$|^crossrefDefTitle$|^crossref_exm_title$|^crossrefExmTitle$|^crossref_exr_title$|^crossrefExrTitle$|^crossref_fig_prefix$|^crossrefFigPrefix$|^crossref_tbl_prefix$|^crossrefTblPrefix$|^crossref_lst_prefix$|^crossrefLstPrefix$|^crossref_ch_prefix$|^crossrefChPrefix$|^crossref_apx_prefix$|^crossrefApxPrefix$|^crossref_sec_prefix$|^crossrefSecPrefix$|^crossref_eq_prefix$|^crossrefEqPrefix$|^crossref_thm_prefix$|^crossrefThmPrefix$|^crossref_lem_prefix$|^crossrefLemPrefix$|^crossref_cor_prefix$|^crossrefCorPrefix$|^crossref_prp_prefix$|^crossrefPrpPrefix$|^crossref_cnj_prefix$|^crossrefCnjPrefix$|^crossref_def_prefix$|^crossrefDefPrefix$|^crossref_exm_prefix$|^crossrefExmPrefix$|^crossref_exr_prefix$|^crossrefExrPrefix$|^crossref_lof_title$|^crossrefLofTitle$|^crossref_lot_title$|^crossrefLotTitle$|^crossref_lol_title$|^crossrefLolTitle$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"format-language"},"website-about":{"_internalId":1214,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":{"short":"The target id for the about page.","long":"The target id of this about page. When the about page is rendered, it will \nplace read the contents of a `div` with this id into the about template that you \nhave selected (and replace the contents with the rendered about content).\n\nIf no such `div` is defined on the page, a `div` with this id will be created \nand appended to the end of the page.\n"}},"documentation":"Sort items in the listing by these fields."},"template":{"_internalId":1196,"type":"anyOf","anyOf":[{"_internalId":1193,"type":"enum","enum":["jolla","trestles","solana","marquee","broadside"],"description":"be one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`","completions":["jolla","trestles","solana","marquee","broadside"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`, a string","tags":{"description":{"short":"The template to use to layout this about page.","long":"The template to use to layout this about page. Choose from:\n\n- `jolla`\n- `trestles`\n- `solana`\n- `marquee`\n- `broadside`\n"}},"documentation":"The maximum number of items to include in this listing."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to the main image on the about page.","long":"The path to the main image on the about page. If not specified, \nthe `image` provided for the document itself will be used.\n"}},"documentation":"The number of items to display on a page."},"image-alt":{"type":"string","description":"be a string","tags":{"description":"The alt text for the main image on the about page."},"documentation":"Shows or hides the sorting control for the listing."},"image-title":{"type":"string","description":"be a string","tags":{"description":"The title for the main image on the about page."},"documentation":"Shows or hides the filtering control for the listing."},"image-width":{"type":"string","description":"be a string","tags":{"description":{"short":"A valid CSS width for the about page image.","long":"A valid CSS width for the about page image.\n"}},"documentation":"Display item categories from this listing in the margin of the\npage."},"image-shape":{"_internalId":1207,"type":"enum","enum":["rectangle","round","rounded"],"description":"be one of: `rectangle`, `round`, `rounded`","completions":["rectangle","round","rounded"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The shape of the image on the about page.","long":"The shape of the image on the about page.\n\n- `rectangle`\n- `round`\n- `rounded`\n"}},"documentation":"Enables an RSS feed for the listing."},"links":{"_internalId":1213,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":1212,"type":"ref","$ref":"navigation-item","description":"be navigation-item"}}},"patternProperties":{},"required":["template"],"closed":true,"$id":"website-about"},"website-listing":{"_internalId":1369,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":{"short":"The id of this listing.","long":"The id of this listing. When the listing is rendered, it will \nplace the contents into a `div` with this id. If no such `div` is defined on the \npage, a `div` with this id will be created and appended to the end of the page.\n\nIf no `id` is provided for a listing, Quarto will synthesize one when rendering the page.\n"}},"documentation":"The number of items to include in your feed. Defaults to 20."},"type":{"_internalId":1221,"type":"enum","enum":["default","table","grid","custom"],"description":"be one of: `default`, `table`, `grid`, `custom`","completions":["default","table","grid","custom"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of listing to create.","long":"The type of listing to create. Choose one of:\n\n- `default`: A blog style list of items\n- `table`: A table of items\n- `grid`: A grid of item cards\n- `custom`: A custom template, provided by the `template` field\n"}},"documentation":"Whether to include full or partial content in the feed."},"contents":{"_internalId":1233,"type":"anyOf","anyOf":[{"_internalId":1231,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1230,"type":"ref","$ref":"website-listing-contents-object","description":"be website-listing-contents-object"}],"description":"be at least one of: a string, website-listing-contents-object"},{"_internalId":1232,"type":"array","description":"be an array of values, where each element must be at least one of: a string, website-listing-contents-object","items":{"_internalId":1231,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1230,"type":"ref","$ref":"website-listing-contents-object","description":"be website-listing-contents-object"}],"description":"be at least one of: a string, website-listing-contents-object"}}],"description":"be at least one of: at least one of: a string, website-listing-contents-object, an array of values, where each element must be at least one of: a string, website-listing-contents-object","tags":{"complete-from":["anyOf",0],"description":"The files or path globs of Quarto documents or YAML files that should be included in the listing."},"documentation":"The title for this feed."},"sort":{"_internalId":1244,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1243,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1242,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: a string, an array of values, where each element must be a string","tags":{"description":{"short":"Sort items in the listing by these fields.","long":"Sort items in the listing by these fields. The sort key is made up of a \nfield name followed by a direction `asc` or `desc`.\n\nFor example:\n`date asc`\n\nUse `sort:false` to use the unsorted original order of items.\n"}},"documentation":"The path to an image for this feed."},"max-items":{"type":"number","description":"be a number","tags":{"description":"The maximum number of items to include in this listing."},"documentation":"The description of this feed."},"page-size":{"type":"number","description":"be a number","tags":{"description":"The number of items to display on a page."},"documentation":"The language of the feed."},"sort-ui":{"_internalId":1258,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1257,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: `true` or `false`, an array of values, where each element must be a string","tags":{"description":{"short":"Shows or hides the sorting control for the listing.","long":"Shows or hides the sorting control for the listing. To control the \nfields that will be displayed in the sorting control, provide a list\nof field names.\n"}},"documentation":"A list of categories for which to create separate RSS feeds\ncontaining only posts with that category"},"filter-ui":{"_internalId":1268,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1267,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: `true` or `false`, an array of values, where each element must be a string","tags":{"description":{"short":"Shows or hides the filtering control for the listing.","long":"Shows or hides the filtering control for the listing. To control the \nfields that will be used to filter the listing, provide a list\nof field names. By default all fields of the listing will be used\nwhen filtering.\n"}},"documentation":"A list of categories for which to create separate RSS feeds\ncontaining only posts with that category"},"categories":{"_internalId":1276,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1275,"type":"enum","enum":["numbered","unnumbered","cloud"],"description":"be one of: `numbered`, `unnumbered`, `cloud`","completions":["numbered","unnumbered","cloud"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `numbered`, `unnumbered`, `cloud`","tags":{"description":{"short":"Display item categories from this listing in the margin of the page.","long":"Display item categories from this listing in the margin of the page.\n\n - `numbered`: Category list with number of items\n - `unnumbered`: Category list\n - `cloud`: Word cloud style categories\n"}},"documentation":"The path to an XML stylesheet (XSL file) used to style the RSS\nfeed."},"feed":{"_internalId":1305,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1304,"type":"object","description":"be an object","properties":{"items":{"type":"number","description":"be a number","tags":{"description":"The number of items to include in your feed. Defaults to 20.\n"},"documentation":"The maximum length (in characters) of the description displayed in\nthe listing."},"type":{"_internalId":1287,"type":"enum","enum":["full","partial","metadata"],"description":"be one of: `full`, `partial`, `metadata`","completions":["full","partial","metadata"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Whether to include full or partial content in the feed.","long":"Whether to include full or partial content in the feed.\n\n- `full` (default): Include the complete content of the document in the feed.\n- `partial`: Include only the first paragraph of the document in the feed.\n- `metadata`: Use only the title, description, and other document metadata in the feed.\n"}},"documentation":"The default image to use if an item in the listing doesn’t have an\nimage."},"title":{"type":"string","description":"be a string","tags":{"description":{"short":"The title for this feed.","long":"The title for this feed. Defaults to the site title provided the Quarto project.\n"}},"documentation":"If false, images in the listing will be loaded immediately. If true,\nimages will be loaded as they come into view."},"image":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to an image for this feed.","long":"The path to an image for this feed. If not specified, the image for the page the listing \nappears on will be used, otherwise an image will be used if specified for the site \nin the Quarto project.\n"}},"documentation":"In default type listings, whether to place the image on\nthe right or left side of the post content (left or\nright)."},"description":{"type":"string","description":"be a string","tags":{"description":{"short":"The description of this feed.","long":"The description of this feed. If not specified, the description for the page the \nlisting appears on will be used, otherwise the description \nof the site will be used if specified in the Quarto project.\n"}},"documentation":"The height of the image being displayed."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the feed.","long":"The language of the feed. Omitted if not specified. \nSee [https://www.rssboard.org/rss-language-codes](https://www.rssboard.org/rss-language-codes)\nfor a list of valid language codes.\n"}},"documentation":"In grid type listings, the number of columns in the grid\ndisplay."},"categories":{"_internalId":1301,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"A list of categories for which to create separate RSS feeds containing only posts with that category"},"documentation":"In grid type listings, the alignment of the content\nwithin the card."},{"_internalId":1300,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"A list of categories for which to create separate RSS feeds containing only posts with that category"},"documentation":"In grid type listings, the alignment of the content\nwithin the card."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"xml-stylesheet":{"type":"string","description":"be a string","tags":{"description":"The path to an XML stylesheet (XSL file) used to style the RSS feed."},"documentation":"In table type listings, display the table rows with\nalternating background colors."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Enables an RSS feed for the listing."},"documentation":"The date format to use when displaying dates (e.g. d-M-yyy)."},"date-format":{"type":"string","description":"be a string","tags":{"description":{"short":"The date format to use when displaying dates (e.g. d-M-yyy).","long":"The date format to use when displaying dates (e.g. d-M-yyy). \nLearn more about supported date formatting values [here](https://quarto.org/docs/reference/dates.html).\n"}},"documentation":"In table type listings, highlight rows of the table when\nthe user hovers the mouse over them."},"max-description-length":{"type":"number","description":"be a number","tags":{"description":{"short":"The maximum length (in characters) of the description displayed in the listing.","long":"The maximum length (in characters) of the description displayed in the listing.\nDefaults to 175.\n"}},"documentation":"The path to a custom listing template."},"image-placeholder":{"type":"string","description":"be a string","tags":{"description":"The default image to use if an item in the listing doesn't have an image."},"documentation":"Parameters that are passed to the custom template."},"image-lazy-loading":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"If false, images in the listing will be loaded immediately. If true, images will be loaded as they come into view."},"documentation":"The list of fields to include in this listing"},"image-align":{"_internalId":1316,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"In `default` type listings, whether to place the image on the right or left side of the post content (`left` or `right`)."},"documentation":"A mapping of display names for listing fields."},"image-height":{"type":"string","description":"be a string","tags":{"description":{"short":"The height of the image being displayed.","long":"The height of the image being displayed (a CSS height string).\n\nThe width is automatically determined and the image will fill the rectangle without scaling (cropped to fill).\n"}},"documentation":"Provides the date type for the field of a listing item."},"grid-columns":{"type":"number","description":"be a number","tags":{"description":{"short":"In `grid` type listings, the number of columns in the grid display.","long":"In grid type listings, the number of columns in the grid display.\nDefaults to 3.\n"}},"documentation":"This list of fields to display as links in a table listing."},"grid-item-border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `grid` type listings, whether to display a border around the item card.","long":"In grid type listings, whether to display a border around the item card. Defaults to `true`.\n"}},"documentation":"Fields that items in this listing must have populated."},"grid-item-align":{"_internalId":1325,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `grid` type listings, the alignment of the content within the card.","long":"In grid type listings, the alignment of the content within the card (`left` (default), `right`, or `center`).\n"}},"documentation":"Items with matching field values will be included in the listing."},"table-striped":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `table` type listings, display the table rows with alternating background colors.","long":"In table type listings, display the table rows with alternating background colors.\nDefaults to `false`.\n"}},"documentation":"Items with matching field values will be excluded from the\nlisting."},"table-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"In `table` type listings, highlight rows of the table when the user hovers the mouse over them.","long":"In table type listings, highlight rows of the table when the user hovers the mouse over them.\nDefaults to false.\n"}},"documentation":"The year"},"template":{"type":"string","description":"be a string","tags":{"description":{"short":"The path to a custom listing template.","long":"The path to a custom listing template.\n"}},"documentation":"The month"},"template-params":{"_internalId":1334,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Parameters that are passed to the custom template."},"documentation":"The day"},"fields":{"_internalId":1340,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":{"short":"The list of fields to include in this listing","long":"The list of fields to include in this listing.\n"}},"documentation":"The family name."},"field-display-names":{"_internalId":1343,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":{"short":"A mapping of display names for listing fields.","long":"A mapping that provides display names for specific fields. For example, to display the title column as ‘Report’ in a table listing you would write:\n\n```yaml\nlisting:\n field-display-names:\n title: \"Report\"\n```\n"}},"documentation":"The given name."},"field-types":{"_internalId":1346,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":{"short":"Provides the date type for the field of a listing item.","long":"Provides the date type for the field of a listing item. Unknown fields are treated\nas strings unless a type is provided. Valid types are `date`, `number`.\n"}},"documentation":"The family name."},"field-links":{"_internalId":1351,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":{"short":"This list of fields to display as links in a table listing.","long":"The list of fields to display as hyperlinks to the source document \nwhen the listing type is a table. By default, only the `title` or \n`filename` is displayed as a link.\n"}},"documentation":"The given name."},"field-required":{"_internalId":1356,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":{"short":"Fields that items in this listing must have populated.","long":"Fields that items in this listing must have populated.\nIf a listing is rendered and one more items in this listing \nis missing a required field, an error will occur and the render will.\n"}},"documentation":"A url to the abstract for this item."},"include":{"_internalId":1362,"type":"anyOf","anyOf":[{"_internalId":1359,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"_internalId":1361,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1359,"type":"object","description":"be an object","properties":{},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0],"description":"Items with matching field values will be included in the listing."},"documentation":"Date the item has been accessed."},"exclude":{"_internalId":1368,"type":"anyOf","anyOf":[{"_internalId":1365,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"_internalId":1367,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1365,"type":"object","description":"be an object","properties":{},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0],"description":"Items with matching field values will be excluded from the listing."},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."}},"patternProperties":{},"closed":true,"$id":"website-listing"},"website-listing-contents-object":{"_internalId":1384,"type":"object","description":"be an object","properties":{"author":{"_internalId":1377,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1376,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string"},"title":{"type":"string","description":"be a string"},"subtitle":{"type":"string","description":"be a string"}},"patternProperties":{},"$id":"website-listing-contents-object"},"csl-date":{"_internalId":1404,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1394,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":1393,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0]}},{"_internalId":1403,"type":"object","description":"be an object","properties":{"year":{"type":"number","description":"be a number","tags":{"description":"The year"},"documentation":"Archive storing the item"},"month":{"type":"number","description":"be a number","tags":{"description":"The month"},"documentation":"Collection the item is part of within an archive."},"day":{"type":"number","description":"be a number","tags":{"description":"The day"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."}},"patternProperties":{}}],"description":"be at least one of: a string, at least one of: a number, an array of values, where each element must be a number, an object","$id":"csl-date"},"csl-person":{"_internalId":1424,"type":"anyOf","anyOf":[{"_internalId":1412,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1411,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},{"_internalId":1423,"type":"anyOf","anyOf":[{"_internalId":1421,"type":"object","description":"be an object","properties":{"family-name":{"type":"string","description":"be a string","tags":{"description":"The family name."},"documentation":"Date the item was initially available"},"given-name":{"type":"string","description":"be a string","tags":{"description":"The given name."},"documentation":"Call number (to locate the item in a library)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention family-name,given-name","type":"string","pattern":"(?!(^family_name$|^familyName$|^given_name$|^givenName$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":1422,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":1421,"type":"object","description":"be an object","properties":{"family-name":{"type":"string","description":"be a string","tags":{"description":"The family name."},"documentation":"Date the item was initially available"},"given-name":{"type":"string","description":"be a string","tags":{"description":"The given name."},"documentation":"Call number (to locate the item in a library)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention family-name,given-name","type":"string","pattern":"(?!(^family_name$|^familyName$|^given_name$|^givenName$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: at least one of: a string, an array of values, where each element must be a string, at least one of: an object, an array of values, where each element must be an object","$id":"csl-person"},"csl-number":{"_internalId":1431,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","$id":"csl-number"},"csl-item-shared":{"_internalId":1729,"type":"object","description":"be an object","properties":{"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"accessed":{"_internalId":1438,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"available-date":{"_internalId":1461,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Composer (e.g. of a musical score)."},"chair":{"_internalId":1466,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"chapter-number":{"_internalId":1469,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Title of the container holding the item."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Short/abbreviated form of container-title;"},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"citation-number":{"_internalId":1478,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Curator of an exhibit or collection (e.g. in a museum).","completions":[]},"collection-editor":{"_internalId":1481,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"collection-number":{"_internalId":1484,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Director (e.g. of a film)."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"compiler":{"_internalId":1489,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"composer":{"_internalId":1492,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"The editor of the item."},"container-author":{"_internalId":1495,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Combined editor and translator of a work."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Date the event related to an item took place.","completions":[]},"contributor":{"_internalId":1502,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"curator":{"_internalId":1505,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Executive producer of the item (e.g. of a television series)."},"director":{"_internalId":1510,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"A url to the full text for this item."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1519,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"Type, class, or subtype of the item"},"editor":{"_internalId":1522,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Guest (e.g. on a TV show or podcast)."},"editorial-director":{"_internalId":1525,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"editor-translator":{"_internalId":1528,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"A value which uniquely identifies this item."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1535,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Interviewer (e.g. of an interview)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"executive-producer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"International Standard Serial Number."},"first-reference-note-number":{"_internalId":1547,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Issue number of the item or container holding the item"},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Date the item was issued/published."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"guest":{"_internalId":1554,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"host":{"_internalId":1557,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"The language of the item (used only for citation of the item)."},"id":{"_internalId":1564,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"A value which uniquely identifies this item."},"documentation":"The license information applicable to an item."},"illustrator":{"_internalId":1567,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"A cite-specific pinpointer within the item."},"interviewer":{"_internalId":1570,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"Narrator (e.g. of an audio book)."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1585,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Number identifying the item (e.g. a report number)."},"issued":{"_internalId":1588,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Total number of pages of the cited item."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The original creator of a work."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"Issue date of the original version."},"locator":{"_internalId":1599,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"narrator":{"_internalId":1604,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"number":{"_internalId":1609,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"number-of-pages":{"_internalId":1612,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"number-of-volumes":{"_internalId":1615,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"organizer":{"_internalId":1618,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"Title of the specific part of an item being cited."},"original-author":{"_internalId":1621,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"A url to the pdf for this item."},"original-date":{"_internalId":1624,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"PubMed Central reference number."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"PubMed reference number."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Printing number of the item or container holding the item."},"page":{"_internalId":1633,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"page-first":{"_internalId":1636,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"A public url for this item."},"page-last":{"_internalId":1639,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"The publisher of the item."},"part-number":{"_internalId":1642,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"The geographic location of the publisher."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Recipient (e.g. of a letter)."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"Author of the item reviewed by the current item."},"performer":{"_internalId":1649,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Title of the item reviewed by the current item."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Scale of e.g. a map or model."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1664,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"producer":{"_internalId":1667,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"Creator of a series (e.g. of a television series)."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"recipient":{"_internalId":1676,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"reviewed-author":{"_internalId":1679,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Short/abbreviated form oftitle."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Translator"},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"The type\nof the item."},"script-writer":{"_internalId":1688,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"section":{"_internalId":1691,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"series-creator":{"_internalId":1694,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Title of the volume of the item or container holding the item."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"submitted":{"_internalId":1701,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Manuscript configuration"},"supplement-number":{"_internalId":1704,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"internal-schema-hack"},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’.","completions":[]},"translator":{"_internalId":1709,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"When defined, run axe-core accessibility tests on the document."},"type":{"_internalId":1712,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"If set, output axe-core results on console. json:\nproduce structured output; console: print output to\njavascript console; document: produce a visual report of\nviolations in the document itself."},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"The logo image."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1721,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Advanced geometry settings for Typst margin layout."},"volume":{"_internalId":1724,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Inner (left) margin geometry."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Outer (right) margin geometry."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Minimum vertical spacing between margin notes (default: 8pt)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention abstract-url,accessed,annote,archive,archive-collection,archive_collection,archive-location,archive_location,archive-place,authority,available-date,call-number,chair,chapter-number,citation-key,citation-label,citation-number,collection-editor,collection-number,collection-title,compiler,composer,container-author,container-title,container-title-short,contributor,curator,dimensions,director,division,DOI,edition,editor,editorial-director,editor-translator,event,event-date,event-title,event-place,executive-producer,first-reference-note-number,fulltext-url,genre,guest,host,id,illustrator,interviewer,isbn,ISBN,issn,ISSN,issue,issued,jurisdiction,keyword,language,license,locator,medium,narrator,note,number,number-of-pages,number-of-volumes,organizer,original-author,original-date,original-publisher,original-publisher-place,original-title,page,page-first,page-last,part-number,part-title,pdf-url,performer,pmcid,PMCID,pmid,PMID,printing-number,producer,public-url,publisher,publisher-place,recipient,reviewed-author,reviewed-genre,reviewed-title,scale,script-writer,section,series-creator,source,status,submitted,supplement-number,title-short,translator,type,url,URL,version,volume,volume-title,year-suffix","type":"string","pattern":"(?!(^abstract_url$|^abstractUrl$|^archiveCollection$|^archiveCollection$|^archiveLocation$|^archiveLocation$|^archive_place$|^archivePlace$|^available_date$|^availableDate$|^call_number$|^callNumber$|^chapter_number$|^chapterNumber$|^citation_key$|^citationKey$|^citation_label$|^citationLabel$|^citation_number$|^citationNumber$|^collection_editor$|^collectionEditor$|^collection_number$|^collectionNumber$|^collection_title$|^collectionTitle$|^container_author$|^containerAuthor$|^container_title$|^containerTitle$|^container_title_short$|^containerTitleShort$|^doi$|^doi$|^editorial_director$|^editorialDirector$|^editor_translator$|^editorTranslator$|^event_date$|^eventDate$|^event_title$|^eventTitle$|^event_place$|^eventPlace$|^executive_producer$|^executiveProducer$|^first_reference_note_number$|^firstReferenceNoteNumber$|^fulltext_url$|^fulltextUrl$|^number_of_pages$|^numberOfPages$|^number_of_volumes$|^numberOfVolumes$|^original_author$|^originalAuthor$|^original_date$|^originalDate$|^original_publisher$|^originalPublisher$|^original_publisher_place$|^originalPublisherPlace$|^original_title$|^originalTitle$|^page_first$|^pageFirst$|^page_last$|^pageLast$|^part_number$|^partNumber$|^part_title$|^partTitle$|^pdf_url$|^pdfUrl$|^printing_number$|^printingNumber$|^public_url$|^publicUrl$|^publisher_place$|^publisherPlace$|^reviewed_author$|^reviewedAuthor$|^reviewed_genre$|^reviewedGenre$|^reviewed_title$|^reviewedTitle$|^script_writer$|^scriptWriter$|^series_creator$|^seriesCreator$|^supplement_number$|^supplementNumber$|^title_short$|^titleShort$|^volume_title$|^volumeTitle$|^year_suffix$|^yearSuffix$))","tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true},"$id":"csl-item-shared"},"csl-item":{"_internalId":1729,"type":"object","description":"be an object","properties":{"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"accessed":{"_internalId":1438,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"available-date":{"_internalId":1461,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Composer (e.g. of a musical score)."},"chair":{"_internalId":1466,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"chapter-number":{"_internalId":1469,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Title of the container holding the item."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Short/abbreviated form of container-title;"},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"citation-number":{"_internalId":1478,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Curator of an exhibit or collection (e.g. in a museum).","completions":[]},"collection-editor":{"_internalId":1481,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"collection-number":{"_internalId":1484,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Director (e.g. of a film)."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"compiler":{"_internalId":1489,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"composer":{"_internalId":1492,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"The editor of the item."},"container-author":{"_internalId":1495,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Combined editor and translator of a work."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Date the event related to an item took place.","completions":[]},"contributor":{"_internalId":1502,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"curator":{"_internalId":1505,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Executive producer of the item (e.g. of a television series)."},"director":{"_internalId":1510,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"A url to the full text for this item."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1519,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"Type, class, or subtype of the item"},"editor":{"_internalId":1522,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Guest (e.g. on a TV show or podcast)."},"editorial-director":{"_internalId":1525,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"editor-translator":{"_internalId":1528,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"A value which uniquely identifies this item."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1535,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Interviewer (e.g. of an interview)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"executive-producer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"International Standard Serial Number."},"first-reference-note-number":{"_internalId":1547,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Issue number of the item or container holding the item"},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Date the item was issued/published."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"guest":{"_internalId":1554,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"host":{"_internalId":1557,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"The language of the item (used only for citation of the item)."},"id":{"_internalId":1749,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"Citation identifier for the item (e.g. \"item1\"). Will be autogenerated if not provided."},"documentation":"The license information applicable to an item."},"illustrator":{"_internalId":1567,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"A cite-specific pinpointer within the item."},"interviewer":{"_internalId":1570,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"Narrator (e.g. of an audio book)."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1585,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Number identifying the item (e.g. a report number)."},"issued":{"_internalId":1588,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Total number of pages of the cited item."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The original creator of a work."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"Issue date of the original version."},"locator":{"_internalId":1599,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"narrator":{"_internalId":1604,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"number":{"_internalId":1609,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"number-of-pages":{"_internalId":1612,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"number-of-volumes":{"_internalId":1615,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"organizer":{"_internalId":1618,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"Title of the specific part of an item being cited."},"original-author":{"_internalId":1621,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"A url to the pdf for this item."},"original-date":{"_internalId":1624,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"PubMed Central reference number."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"PubMed reference number."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Printing number of the item or container holding the item."},"page":{"_internalId":1633,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"page-first":{"_internalId":1636,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"A public url for this item."},"page-last":{"_internalId":1639,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"The publisher of the item."},"part-number":{"_internalId":1642,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"The geographic location of the publisher."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Recipient (e.g. of a letter)."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"Author of the item reviewed by the current item."},"performer":{"_internalId":1649,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Title of the item reviewed by the current item."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Scale of e.g. a map or model."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1664,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"producer":{"_internalId":1667,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"Creator of a series (e.g. of a television series)."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"recipient":{"_internalId":1676,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"reviewed-author":{"_internalId":1679,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Short/abbreviated form oftitle."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Translator"},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"The type\nof the item."},"script-writer":{"_internalId":1688,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"section":{"_internalId":1691,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"series-creator":{"_internalId":1694,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Title of the volume of the item or container holding the item."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"submitted":{"_internalId":1701,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Manuscript configuration"},"supplement-number":{"_internalId":1704,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"internal-schema-hack"},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’.","completions":[]},"translator":{"_internalId":1709,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"When defined, run axe-core accessibility tests on the document."},"type":{"_internalId":1712,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"If set, output axe-core results on console. json:\nproduce structured output; console: print output to\njavascript console; document: produce a visual report of\nviolations in the document itself."},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"The logo image."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1721,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Advanced geometry settings for Typst margin layout."},"volume":{"_internalId":1724,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Inner (left) margin geometry."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Outer (right) margin geometry."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Minimum vertical spacing between margin notes (default: 8pt)."},"abstract":{"type":"string","description":"be a string","tags":{"description":"Abstract of the item (e.g. the abstract of a journal article)"},"documentation":"Bibliographic identifier for a document that does not have\ntraditional printed page numbers."},"author":{"_internalId":1736,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The author(s) of the item."},"documentation":"Electronic International Standard Serial Number."},"doi":{"type":"string","description":"be a string","tags":{"description":"Digital Object Identifier (e.g. \"10.1128/AEM.02591-07\")"},"documentation":"Print International Standard Serial Number."},"references":{"type":"string","description":"be a string","tags":{"description":{"short":"Resources related to the procedural history of a legal case or legislation.","long":"Resources related to the procedural history of a legal case or legislation;\n\nCan also be used to refer to the procedural history of other items (e.g. \n\"Conference canceled\" for a presentation accepted as a conference that was subsequently \ncanceled; details of a retraction or correction notice)\n"}},"documentation":"Generic article accession identifier."},"title":{"type":"string","description":"be a string","tags":{"description":"The primary title of the item."},"documentation":"The location of the publisher of this item."}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true},"$id":"csl-item"},"citation-item":{"_internalId":1729,"type":"object","description":"be an object","properties":{"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"accessed":{"_internalId":1438,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"available-date":{"_internalId":1461,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Composer (e.g. of a musical score)."},"chair":{"_internalId":1466,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"chapter-number":{"_internalId":1469,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Title of the container holding the item."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Short/abbreviated form of container-title;"},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"citation-number":{"_internalId":1478,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Curator of an exhibit or collection (e.g. in a museum).","completions":[]},"collection-editor":{"_internalId":1481,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"collection-number":{"_internalId":1484,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Director (e.g. of a film)."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"compiler":{"_internalId":1489,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"composer":{"_internalId":1492,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"The editor of the item."},"container-author":{"_internalId":1495,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Combined editor and translator of a work."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Date the event related to an item took place.","completions":[]},"contributor":{"_internalId":1502,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"curator":{"_internalId":1505,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Executive producer of the item (e.g. of a television series)."},"director":{"_internalId":1510,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"A url to the full text for this item."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1519,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"Type, class, or subtype of the item"},"editor":{"_internalId":1522,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Guest (e.g. on a TV show or podcast)."},"editorial-director":{"_internalId":1525,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"editor-translator":{"_internalId":1528,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"A value which uniquely identifies this item."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1535,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Interviewer (e.g. of an interview)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"executive-producer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"International Standard Serial Number."},"first-reference-note-number":{"_internalId":1547,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Issue number of the item or container holding the item"},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Date the item was issued/published."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"guest":{"_internalId":1554,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"host":{"_internalId":1557,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"The language of the item (used only for citation of the item)."},"id":{"_internalId":1749,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"Citation identifier for the item (e.g. \"item1\"). Will be autogenerated if not provided."},"documentation":"The license information applicable to an item."},"illustrator":{"_internalId":1567,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"A cite-specific pinpointer within the item."},"interviewer":{"_internalId":1570,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"Narrator (e.g. of an audio book)."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1585,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Number identifying the item (e.g. a report number)."},"issued":{"_internalId":1588,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Total number of pages of the cited item."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The original creator of a work."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"Issue date of the original version."},"locator":{"_internalId":1599,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"narrator":{"_internalId":1604,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"number":{"_internalId":1609,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"number-of-pages":{"_internalId":1612,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"number-of-volumes":{"_internalId":1615,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"organizer":{"_internalId":1618,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"Title of the specific part of an item being cited."},"original-author":{"_internalId":1621,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"A url to the pdf for this item."},"original-date":{"_internalId":1624,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"PubMed Central reference number."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"PubMed reference number."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Printing number of the item or container holding the item."},"page":{"_internalId":1633,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"page-first":{"_internalId":1636,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"A public url for this item."},"page-last":{"_internalId":1639,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"The publisher of the item."},"part-number":{"_internalId":1642,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"The geographic location of the publisher."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Recipient (e.g. of a letter)."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"Author of the item reviewed by the current item."},"performer":{"_internalId":1649,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Title of the item reviewed by the current item."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Scale of e.g. a map or model."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1664,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"producer":{"_internalId":1667,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"Creator of a series (e.g. of a television series)."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"recipient":{"_internalId":1676,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"reviewed-author":{"_internalId":1679,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Short/abbreviated form oftitle."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Translator"},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"The type\nof the item."},"script-writer":{"_internalId":1688,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"section":{"_internalId":1691,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"series-creator":{"_internalId":1694,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Title of the volume of the item or container holding the item."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"submitted":{"_internalId":1701,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Manuscript configuration"},"supplement-number":{"_internalId":1704,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"internal-schema-hack"},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’.","completions":[]},"translator":{"_internalId":1709,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"When defined, run axe-core accessibility tests on the document."},"type":{"_internalId":1712,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"If set, output axe-core results on console. json:\nproduce structured output; console: print output to\njavascript console; document: produce a visual report of\nviolations in the document itself."},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"The logo image."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1721,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Advanced geometry settings for Typst margin layout."},"volume":{"_internalId":1724,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Inner (left) margin geometry."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Outer (right) margin geometry."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Minimum vertical spacing between margin notes (default: 8pt)."},"abstract":{"type":"string","description":"be a string","tags":{"description":"Abstract of the item (e.g. the abstract of a journal article)"},"documentation":"Bibliographic identifier for a document that does not have\ntraditional printed page numbers."},"author":{"_internalId":1736,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The author(s) of the item."},"documentation":"Electronic International Standard Serial Number."},"doi":{"type":"string","description":"be a string","tags":{"description":"Digital Object Identifier (e.g. \"10.1128/AEM.02591-07\")"},"documentation":"Print International Standard Serial Number."},"references":{"type":"string","description":"be a string","tags":{"description":{"short":"Resources related to the procedural history of a legal case or legislation.","long":"Resources related to the procedural history of a legal case or legislation;\n\nCan also be used to refer to the procedural history of other items (e.g. \n\"Conference canceled\" for a presentation accepted as a conference that was subsequently \ncanceled; details of a retraction or correction notice)\n"}},"documentation":"Generic article accession identifier."},"title":{"type":"string","description":"be a string","tags":{"description":"The primary title of the item."},"documentation":"The location of the publisher of this item."},"article-id":{"_internalId":1770,"type":"anyOf","anyOf":[{"_internalId":1768,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1767,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier"},"documentation":"External identifier of a publication or journal."},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The type of identifier (e.g. nlm-ta or\npmc)."}},"patternProperties":{}}],"description":"be at least one of: a string, an object"},{"_internalId":1769,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":1768,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1767,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier"},"documentation":"External identifier of a publication or journal."},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"The type of identifier (e.g. nlm-ta or\npmc)."}},"patternProperties":{}}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"The unique identifier for this article."},"documentation":"The name of a subject or topic describing the article."},"elocation-id":{"type":"string","description":"be a string","tags":{"description":"Bibliographic identifier for a document that does not have traditional printed page numbers."},"documentation":"The value for the identifier"},"eissn":{"type":"string","description":"be a string","tags":{"description":"Electronic International Standard Serial Number."},"documentation":"The type of identifier (e.g. nlm-ta or\npmc)."},"pissn":{"type":"string","description":"be a string","tags":{"description":"Print International Standard Serial Number."},"documentation":"The value for the identifier"},"art-access-id":{"type":"string","description":"be a string","tags":{"description":"Generic article accession identifier."},"documentation":"The type used for the JATS article tag."},"publisher-location":{"type":"string","description":"be a string","tags":{"description":"The location of the publisher of this item."},"documentation":"Textual content to add to includes"},"subject":{"type":"string","description":"be a string","tags":{"description":"The name of a subject or topic describing the article."},"documentation":"Name of file with content to add to includes"},"categories":{"_internalId":1788,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"A list of subjects or topics describing the article."},"documentation":"Specify a default profile and profile groups"},{"_internalId":1787,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"A list of subjects or topics describing the article."},"documentation":"Specify a default profile and profile groups"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"container-id":{"_internalId":1804,"type":"anyOf","anyOf":[{"_internalId":1802,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1801,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier (e.g. `nlm-ta` or `pmc`)."},"documentation":"Run tests on CI (true = run, false = skip)"},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"Skip test unconditionally (true = skip with default message, string =\nskip with custom message)"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"},{"_internalId":1803,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":1802,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1801,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of identifier (e.g. `nlm-ta` or `pmc`)."},"documentation":"Run tests on CI (true = run, false = skip)"},"value":{"type":"string","description":"be a string","tags":{"description":"The value for the identifier"},"documentation":"Skip test unconditionally (true = skip with default message, string =\nskip with custom message)"}},"patternProperties":{}}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":{"short":"External identifier of a publication or journal.","long":"External identifier, typically assigned to a journal by \na publisher, archive, or library to provide a unique identifier for \nthe journal or publication.\n"}},"documentation":"Default profile to apply if QUARTO_PROFILE is not defined."},"jats-type":{"type":"string","description":"be a string","tags":{"description":"The type used for the JATS `article` tag."},"documentation":"Run tests ONLY on these platforms (whitelist)"}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true},"$id":"citation-item"},"smart-include":{"_internalId":1822,"type":"anyOf","anyOf":[{"_internalId":1816,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"Textual content to add to includes"},"documentation":"Don’t run tests on these platforms (blacklist)"}},"patternProperties":{},"required":["text"],"closed":true},{"_internalId":1821,"type":"object","description":"be an object","properties":{"file":{"type":"string","description":"be a string","tags":{"description":"Name of file with content to add to includes"},"documentation":"The path to the locally referenced notebook."}},"patternProperties":{},"required":["file"],"closed":true}],"description":"be at least one of: an object, an object","$id":"smart-include"},"semver":{"_internalId":1825,"type":"string","pattern":"^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$","description":"be a string that satisfies regex \"^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$\"","$id":"semver","tags":{"description":"Version number according to Semantic Versioning"},"documentation":"The title of the notebook when viewed."},"quarto-date":{"_internalId":1837,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1836,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string"},"value":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["value"],"closed":true}],"description":"be at least one of: a string, an object","$id":"quarto-date"},"project-profile":{"_internalId":1857,"type":"object","description":"be an object","properties":{"default":{"_internalId":1847,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1846,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Default profile to apply if QUARTO_PROFILE is not defined.\n"},"documentation":"The url to use when downloading the notebook from the preview"},"group":{"_internalId":1856,"type":"anyOf","anyOf":[{"_internalId":1854,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},{"_internalId":1855,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":1854,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}}],"description":"be at least one of: an array of values, where each element must be a string, an array of values, where each element must be an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Define a profile group for which at least one profile is always active.\n"},"documentation":"The bootstrap icon for this code link."}},"patternProperties":{},"closed":true,"$id":"project-profile","tags":{"description":"Specify a default profile and profile groups"},"documentation":"The url to use when viewing this notebook."},"bad-parse-schema":{"_internalId":1865,"type":"object","description":"be an object","properties":{},"patternProperties":{},"propertyNames":{"_internalId":1864,"type":"string","pattern":"^[^\\s]+$","description":"be a string that satisfies regex \"^[^\\s]+$\""},"$id":"bad-parse-schema"},"quarto-dev-schema":{"_internalId":1914,"type":"object","description":"be an object","properties":{"_quarto":{"_internalId":1913,"type":"object","description":"be an object","properties":{"trace-filters":{"type":"string","description":"be a string"},"tests":{"_internalId":1912,"type":"object","description":"be an object","properties":{"run":{"_internalId":1911,"type":"object","description":"be an object","properties":{"ci":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Run tests on CI (true = run, false = skip)"},"documentation":"The href for this code link."},"skip":{"_internalId":1886,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"description":"Skip test unconditionally (true = skip with default message, string = skip with custom message)"},"documentation":"The rel used in the a tag for this code link."},"os":{"_internalId":1898,"type":"anyOf","anyOf":[{"_internalId":1891,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true},{"_internalId":1897,"type":"array","description":"be an array of values, where each element must be one of: `linux`, `darwin`, `windows`","items":{"_internalId":1896,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `linux`, `darwin`, `windows`, an array of values, where each element must be one of: `linux`, `darwin`, `windows`","tags":{"description":"Run tests ONLY on these platforms (whitelist)"},"documentation":"The target used in the a tag for this code link."},"not_os":{"_internalId":1910,"type":"anyOf","anyOf":[{"_internalId":1903,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true},{"_internalId":1909,"type":"array","description":"be an array of values, where each element must be one of: `linux`, `darwin`, `windows`","items":{"_internalId":1908,"type":"enum","enum":["linux","darwin","windows"],"description":"be one of: `linux`, `darwin`, `windows`","completions":["linux","darwin","windows"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `linux`, `darwin`, `windows`, an array of values, where each element must be one of: `linux`, `darwin`, `windows`","tags":{"description":"Don't run tests on these platforms (blacklist)"},"documentation":"The bootstrap icon for this code link."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention ci,skip,os,not_os","type":"string","pattern":"(?!(^not-os$|^notOs$))","tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true,"description":"Control when tests should run"},"documentation":"The text for this code link."}},"patternProperties":{}}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention trace-filters,tests","type":"string","pattern":"(?!(^trace_filters$|^traceFilters$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true,"hidden":true},"completions":[]}},"patternProperties":{},"$id":"quarto-dev-schema"},"notebook-view-schema":{"_internalId":1932,"type":"object","description":"be an object","properties":{"notebook":{"type":"string","description":"be a string","tags":{"description":"The path to the locally referenced notebook."},"documentation":"The text for this code link."},"title":{"_internalId":1927,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The title of the notebook when viewed."},"documentation":"The href for this code link."},"url":{"type":"string","description":"be a string","tags":{"description":"The url to use when viewing this notebook."},"documentation":"The rel used in the a tag for this code link."},"download-url":{"type":"string","description":"be a string","tags":{"description":"The url to use when downloading the notebook from the preview"},"documentation":"The target used in the a tag for this code link."}},"patternProperties":{},"required":["notebook"],"propertyNames":{"errorMessage":"property ${value} does not match case convention notebook,title,url,download-url","type":"string","pattern":"(?!(^download_url$|^downloadUrl$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"notebook-view-schema"},"code-links-schema":{"_internalId":1962,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":1961,"type":"anyOf","anyOf":[{"_internalId":1959,"type":"anyOf","anyOf":[{"_internalId":1955,"type":"object","description":"be an object","properties":{"icon":{"type":"string","description":"be a string","tags":{"description":"The bootstrap icon for this code link."},"documentation":"Additional file resources to be copied to output directory"},"text":{"type":"string","description":"be a string","tags":{"description":"The text for this code link."},"documentation":"Files that specify the execution environment (e.g. renv.lock,\nrequirements.text, etc…)"},"href":{"type":"string","description":"be a string","tags":{"description":"The href for this code link."},"documentation":"Files that specify the execution environment (e.g. renv.lock,\nrequirements.text, etc…)"},"rel":{"type":"string","description":"be a string","tags":{"description":"The rel used in the `a` tag for this code link."},"documentation":"Metadata for a brand, including the brand name and important\nlinks."},"target":{"type":"string","description":"be a string","tags":{"description":"The target used in the `a` tag for this code link."},"documentation":"The brand name."}},"patternProperties":{}},{"_internalId":1958,"type":"enum","enum":["repo","binder","devcontainer"],"description":"be one of: `repo`, `binder`, `devcontainer`","completions":["repo","binder","devcontainer"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, one of: `repo`, `binder`, `devcontainer`"},{"_internalId":1960,"type":"array","description":"be an array of values, where each element must be at least one of: an object, one of: `repo`, `binder`, `devcontainer`","items":{"_internalId":1959,"type":"anyOf","anyOf":[{"_internalId":1955,"type":"object","description":"be an object","properties":{"icon":{"type":"string","description":"be a string","tags":{"description":"The bootstrap icon for this code link."},"documentation":"Additional file resources to be copied to output directory"},"text":{"type":"string","description":"be a string","tags":{"description":"The text for this code link."},"documentation":"Files that specify the execution environment (e.g. renv.lock,\nrequirements.text, etc…)"},"href":{"type":"string","description":"be a string","tags":{"description":"The href for this code link."},"documentation":"Files that specify the execution environment (e.g. renv.lock,\nrequirements.text, etc…)"},"rel":{"type":"string","description":"be a string","tags":{"description":"The rel used in the `a` tag for this code link."},"documentation":"Metadata for a brand, including the brand name and important\nlinks."},"target":{"type":"string","description":"be a string","tags":{"description":"The target used in the `a` tag for this code link."},"documentation":"The brand name."}},"patternProperties":{}},{"_internalId":1958,"type":"enum","enum":["repo","binder","devcontainer"],"description":"be one of: `repo`, `binder`, `devcontainer`","completions":["repo","binder","devcontainer"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, one of: `repo`, `binder`, `devcontainer`"}}],"description":"be at least one of: at least one of: an object, one of: `repo`, `binder`, `devcontainer`, an array of values, where each element must be at least one of: an object, one of: `repo`, `binder`, `devcontainer`","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: an object, one of: `repo`, `binder`, `devcontainer`, an array of values, where each element must be at least one of: an object, one of: `repo`, `binder`, `devcontainer`","$id":"code-links-schema"},"manuscript-schema":{"_internalId":2010,"type":"object","description":"be an object","properties":{"article":{"type":"string","description":"be a string","tags":{"description":"The input document that will serve as the root document for this manuscript"},"documentation":"The full, official or legal name of the company or brand."},"code-links":{"_internalId":1973,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema","tags":{"description":"Code links to display for this manuscript."},"documentation":"The short, informal, or common name of the company or brand."},"manuscript-url":{"type":"string","description":"be a string","tags":{"description":"The deployed url for this manuscript"},"documentation":"Important links for the brand, including social media links. If a\nsingle string, it is the brand’s home page or website. Additional fields\nare allowed for internal use."},"meca-bundle":{"_internalId":1982,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"description":"Whether to generate a MECA bundle for this manuscript"},"documentation":"The brand’s home page or website."},"notebooks":{"_internalId":1993,"type":"array","description":"be an array of values, where each element must be at least one of: a string, notebook-view-schema","items":{"_internalId":1992,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1991,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"}},"resources":{"_internalId":2001,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"The brand’s Bluesky URL."},{"_internalId":2000,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"The brand’s Bluesky URL."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"environment":{"_internalId":2009,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Files that specify the execution environment (e.g. renv.lock, requirements.text, etc...)"},"documentation":"The brand’s LinkedIn URL."},{"_internalId":2008,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Files that specify the execution environment (e.g. renv.lock, requirements.text, etc...)"},"documentation":"The brand’s LinkedIn URL."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true,"$id":"manuscript-schema"},"brand-meta":{"_internalId":2047,"type":"object","description":"be an object","properties":{"name":{"_internalId":2024,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2023,"type":"object","description":"be an object","properties":{"full":{"type":"string","description":"be a string","tags":{"description":"The full, official or legal name of the company or brand."},"documentation":"A link or path to the brand’s light-colored logo or icon."},"short":{"type":"string","description":"be a string","tags":{"description":"The short, informal, or common name of the company or brand."},"documentation":"A link or path to the brand’s dark-colored logo or icon."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The brand name."},"documentation":"The brand’s Facebook URL."},"link":{"_internalId":2046,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2045,"type":"object","description":"be an object","properties":{"home":{"type":"string","description":"be a string","tags":{"description":"The brand's home page or website."},"documentation":"Provide definitions and defaults for brand’s logo in various formats\nand sizes."},"mastodon":{"type":"string","description":"be a string","tags":{"description":"The brand's Mastodon URL."},"documentation":"A dictionary of named logo resources."},"bluesky":{"type":"string","description":"be a string","tags":{"description":"The brand's Bluesky URL."},"documentation":"A link or path to the brand’s small-sized logo or icon."},"github":{"type":"string","description":"be a string","tags":{"description":"The brand's GitHub URL."},"documentation":"A link or path to the brand’s medium-sized logo."},"linkedin":{"type":"string","description":"be a string","tags":{"description":"The brand's LinkedIn URL."},"documentation":"A link or path to the brand’s large- or full-sized logo."},"twitter":{"type":"string","description":"be a string","tags":{"description":"The brand's Twitter URL."},"documentation":"Provide definitions and defaults for brand’s logo in various formats\nand sizes."},"facebook":{"type":"string","description":"be a string","tags":{"description":"The brand's Facebook URL."},"documentation":"A dictionary of named logo resources."}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Important links for the brand, including social media links. If a single string, it is the brand's home page or website. Additional fields are allowed for internal use.\n"},"documentation":"Alternative text for the logo, used for accessibility."}},"patternProperties":{},"$id":"brand-meta","tags":{"description":"Metadata for a brand, including the brand name and important links.\n"},"documentation":"The brand’s Twitter URL."},"brand-string-light-dark":{"_internalId":2063,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2062,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's light-colored logo or icon.\n"},"documentation":"A link or path to the brand’s small-sized logo or icon, or a link or\npath to both the light and dark versions."},"dark":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's dark-colored logo or icon.\n"},"documentation":"A link or path to the brand’s medium-sized logo, or a link or path to\nboth the light and dark versions."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-string-light-dark"},"brand-logo-explicit-resource":{"_internalId":2072,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"A link or path to the brand’s large- or full-sized logo, or a link or\npath to both the light and dark versions."}},"patternProperties":{},"required":["path"],"closed":true,"$id":"brand-logo-explicit-resource"},"brand-logo-resource":{"_internalId":2080,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2079,"type":"ref","$ref":"brand-logo-explicit-resource","description":"be brand-logo-explicit-resource"}],"description":"be at least one of: a string, brand-logo-explicit-resource","$id":"brand-logo-resource"},"brand-logo-single":{"_internalId":2105,"type":"object","description":"be an object","properties":{"images":{"_internalId":2092,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2091,"type":"ref","$ref":"brand-logo-resource","description":"be brand-logo-resource"},"tags":{"description":"A dictionary of named logo resources."},"documentation":"Path or brand.yml logo resource name."},"small":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's small-sized logo or icon.\n"},"documentation":"Alternative text for the logo, used for accessibility."},"medium":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's medium-sized logo.\n"},"documentation":"Path or brand.yml logo resource name."},"large":{"type":"string","description":"be a string","tags":{"description":"A link or path to the brand's large- or full-sized logo.\n"},"documentation":"Alternative text for the logo, used for accessibility."}},"patternProperties":{},"closed":true,"$id":"brand-logo-single","tags":{"description":"Provide definitions and defaults for brand's logo in various formats and sizes.\n"},"documentation":"Names of customizeable logos"},"brand-logo-unified":{"_internalId":2133,"type":"object","description":"be an object","properties":{"images":{"_internalId":2117,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2116,"type":"ref","$ref":"brand-logo-resource","description":"be brand-logo-resource"},"tags":{"description":"A dictionary of named logo resources."},"documentation":"Specification of a light logo"},"small":{"_internalId":2122,"type":"ref","$ref":"brand-string-light-dark","description":"be brand-string-light-dark","tags":{"description":"A link or path to the brand's small-sized logo or icon, or a link or path to both the light and dark versions.\n"},"documentation":"Specification of a dark logo"},"medium":{"_internalId":2127,"type":"ref","$ref":"brand-string-light-dark","description":"be brand-string-light-dark","tags":{"description":"A link or path to the brand's medium-sized logo, or a link or path to both the light and dark versions.\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object. Use false to\nexplicitly disable the logo."},"large":{"_internalId":2132,"type":"ref","$ref":"brand-string-light-dark","description":"be brand-string-light-dark","tags":{"description":"A link or path to the brand's large- or full-sized logo, or a link or path to both the light and dark versions.\n"},"documentation":"Specification of a light logo"}},"patternProperties":{},"closed":true,"$id":"brand-logo-unified","tags":{"description":"Provide definitions and defaults for brand's logo in various formats and sizes.\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object. Use false to\nexplicitly disable the logo."},"brand-named-logo":{"_internalId":2136,"type":"enum","enum":["small","medium","large"],"description":"be one of: `small`, `medium`, `large`","completions":["small","medium","large"],"exhaustiveCompletions":true,"$id":"brand-named-logo","tags":{"description":"Names of customizeable logos"},"documentation":"Specification of a dark logo"},"logo-options":{"_internalId":2147,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path or brand.yml logo resource name.\n"},"documentation":"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object"},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"Options for a light logo"}},"patternProperties":{},"required":["path"],"$id":"logo-options"},"logo-specifier":{"_internalId":2157,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2156,"type":"ref","$ref":"logo-options","description":"be logo-options"}],"description":"be at least one of: a string, logo-options","$id":"logo-specifier"},"logo-options-path-optional":{"_internalId":2168,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path or brand.yml logo resource name.\n"},"documentation":"Options for a dark logo"},"alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for the logo, used for accessibility.\n"},"documentation":"The brand’s custom color palette and theme."}},"patternProperties":{},"$id":"logo-options-path-optional"},"logo-specifier-path-optional":{"_internalId":2178,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2177,"type":"ref","$ref":"logo-options-path-optional","description":"be logo-options-path-optional"}],"description":"be at least one of: a string, logo-options-path-optional","$id":"logo-specifier-path-optional"},"logo-light-dark-specifier":{"_internalId":2200,"type":"anyOf","anyOf":[{"_internalId":2183,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":2186,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier"},{"_internalId":2199,"type":"object","description":"be an object","properties":{"light":{"_internalId":2193,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier","tags":{"description":"Specification of a light logo\n"},"documentation":"The foreground color, used for text."},"dark":{"_internalId":2198,"type":"ref","$ref":"logo-specifier","description":"be logo-specifier","tags":{"description":"Specification of a dark logo\n"},"documentation":"The background color, used for the page background."}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', logo-specifier, an object","$id":"logo-light-dark-specifier","tags":{"description":"Any of the ways a logo can be specified: string, object, or light/dark object of string or object. Use `false` to explicitly disable the logo.\n"},"documentation":"The brand’s custom color palette. Any number of colors can be\ndefined, each color having a custom name."},"logo-light-dark-specifier-path-optional":{"_internalId":2222,"type":"anyOf","anyOf":[{"_internalId":2205,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":2208,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional"},{"_internalId":2221,"type":"object","description":"be an object","properties":{"light":{"_internalId":2215,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional","tags":{"description":"Specification of a light logo\n"},"documentation":"The secondary accent color. Typically used for lighter text or\ndisabled states."},"dark":{"_internalId":2220,"type":"ref","$ref":"logo-specifier-path-optional","description":"be logo-specifier-path-optional","tags":{"description":"Specification of a dark logo\n"},"documentation":"The tertiary accent color. Typically an even lighter color, used for\nhover states, accents, and wells."}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', logo-specifier-path-optional, an object","$id":"logo-light-dark-specifier-path-optional","tags":{"description":"Any of the ways a logo can be specified: string, object, or light/dark object of string or object. Use `false` to explicitly disable the logo.\n"},"documentation":"The primary accent color, i.e. the main theme color. Typically used\nfor hyperlinks, active states, primary action buttons, etc."},"normalized-logo-light-dark-specifier":{"_internalId":2235,"type":"object","description":"be an object","properties":{"light":{"_internalId":2229,"type":"ref","$ref":"logo-options","description":"be logo-options","tags":{"description":"Options for a light logo\n"},"documentation":"The color used for neutral or informational actions and\ninformation."},"dark":{"_internalId":2234,"type":"ref","$ref":"logo-options","description":"be logo-options","tags":{"description":"Options for a dark logo\n"},"documentation":"The color used for warning or cautionary actions and information."}},"patternProperties":{},"closed":true,"$id":"normalized-logo-light-dark-specifier","tags":{"description":"Any of the ways a logo can be specified: string, object, or light/dark object of string or object\n"},"documentation":"The color used for positive or successful actions and\ninformation."},"brand-color-value":{"type":"string","description":"be a string","$id":"brand-color-value"},"brand-color-single":{"_internalId":2310,"type":"object","description":"be an object","properties":{"palette":{"_internalId":2249,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2248,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},"tags":{"description":"The brand's custom color palette. Any number of colors can be defined, each color having a custom name.\n"},"documentation":"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements."},"foreground":{"_internalId":2254,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The foreground color, used for text."},"documentation":"A dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements."},"background":{"_internalId":2259,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The background color, used for the page background."},"documentation":"The color used for hyperlinks. If not defined, the\nprimary color is used."},"primary":{"_internalId":2264,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The primary accent color, i.e. the main theme color. Typically used for hyperlinks, active states, primary action buttons, etc.\n"},"documentation":"A link or path to the brand’s light-colored logo or icon."},"secondary":{"_internalId":2269,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The secondary accent color. Typically used for lighter text or disabled states.\n"},"documentation":"A link or path to the brand’s dark-colored logo or icon."},"tertiary":{"_internalId":2274,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The tertiary accent color. Typically an even lighter color, used for hover states, accents, and wells.\n"},"documentation":"The brand’s custom color palette and theme."},"success":{"_internalId":2279,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for positive or successful actions and information."},"documentation":"The brand’s custom color palette. Any number of colors can be\ndefined, each color having a custom name."},"info":{"_internalId":2284,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for neutral or informational actions and information."},"documentation":"The foreground color, used for text."},"warning":{"_internalId":2289,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for warning or cautionary actions and information."},"documentation":"The background color, used for the page background."},"danger":{"_internalId":2294,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for errors, dangerous actions, or negative information."},"documentation":"The primary accent color, i.e. the main theme color. Typically used\nfor hyperlinks, active states, primary action buttons, etc."},"light":{"_internalId":2299,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A bright color, used as a high-contrast foreground color on dark elements or low-contrast background color on light elements.\n"},"documentation":"The secondary accent color. Typically used for lighter text or\ndisabled states."},"dark":{"_internalId":2304,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A dark color, used as a high-contrast foreground color on light elements or high-contrast background color on light elements.\n"},"documentation":"The tertiary accent color. Typically an even lighter color, used for\nhover states, accents, and wells."},"link":{"_internalId":2309,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"The color used for hyperlinks. If not defined, the `primary` color is used.\n"},"documentation":"The color used for positive or successful actions and\ninformation."}},"patternProperties":{},"closed":true,"$id":"brand-color-single","tags":{"description":"The brand's custom color palette and theme.\n"},"documentation":"The color used for errors, dangerous actions, or negative\ninformation."},"brand-color-light-dark":{"_internalId":2329,"type":"anyOf","anyOf":[{"_internalId":2315,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},{"_internalId":2328,"type":"object","description":"be an object","properties":{"light":{"_internalId":2322,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A link or path to the brand's light-colored logo or icon.\n"},"documentation":"The color used for neutral or informational actions and\ninformation."},"dark":{"_internalId":2327,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value","tags":{"description":"A link or path to the brand's dark-colored logo or icon.\n"},"documentation":"The color used for warning or cautionary actions and information."}},"patternProperties":{},"closed":true}],"description":"be at least one of: brand-color-value, an object","$id":"brand-color-light-dark"},"brand-color-unified":{"_internalId":2400,"type":"object","description":"be an object","properties":{"palette":{"_internalId":2339,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2338,"type":"ref","$ref":"brand-color-value","description":"be brand-color-value"},"tags":{"description":"The brand's custom color palette. Any number of colors can be defined, each color having a custom name.\n"},"documentation":"A bright color, used as a high-contrast foreground color on dark\nelements or low-contrast background color on light elements."},"foreground":{"_internalId":2344,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The foreground color, used for text."},"documentation":"A dark color, used as a high-contrast foreground color on light\nelements or high-contrast background color on light elements."},"background":{"_internalId":2349,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The background color, used for the page background."},"documentation":"The color used for hyperlinks. If not defined, the\nprimary color is used."},"primary":{"_internalId":2354,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The primary accent color, i.e. the main theme color. Typically used for hyperlinks, active states, primary action buttons, etc.\n"},"documentation":"A color, which may be a named brand color."},"secondary":{"_internalId":2359,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The secondary accent color. Typically used for lighter text or disabled states.\n"},"documentation":"A link or path to the brand’s light-colored logo or icon."},"tertiary":{"_internalId":2364,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The tertiary accent color. Typically an even lighter color, used for hover states, accents, and wells.\n"},"documentation":"A link or path to the brand’s dark-colored logo or icon."},"success":{"_internalId":2369,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for positive or successful actions and information."},"documentation":"A named brand color, taken either from color.theme or\ncolor.palette (in that order)."},"info":{"_internalId":2374,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for neutral or informational actions and information."},"documentation":"Typography definitions for the brand."},"warning":{"_internalId":2379,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for warning or cautionary actions and information."},"documentation":"Font files and definitions for the brand."},"danger":{"_internalId":2384,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for errors, dangerous actions, or negative information."},"documentation":"The base font settings for the brand. These are used as the default\nfor all text."},"light":{"_internalId":2389,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"A bright color, used as a high-contrast foreground color on dark elements or low-contrast background color on light elements.\n"},"documentation":"Settings for headings, or a string specifying the font family\nonly."},"dark":{"_internalId":2394,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"A dark color, used as a high-contrast foreground color on light elements or high-contrast background color on light elements.\n"},"documentation":"Settings for monospace text, or a string specifying the font family\nonly."},"link":{"_internalId":2399,"type":"ref","$ref":"brand-color-light-dark","description":"be brand-color-light-dark","tags":{"description":"The color used for hyperlinks. If not defined, the `primary` color is used.\n"},"documentation":"Settings for inline code, or a string specifying the font family\nonly."}},"patternProperties":{},"closed":true,"$id":"brand-color-unified","tags":{"description":"The brand's custom color palette and theme.\n"},"documentation":"The color used for errors, dangerous actions, or negative\ninformation."},"brand-maybe-named-color":{"_internalId":2410,"type":"anyOf","anyOf":[{"_internalId":2405,"type":"ref","$ref":"brand-named-theme-color","description":"be brand-named-theme-color"},{"type":"string","description":"be a string"}],"description":"be at least one of: brand-named-theme-color, a string","$id":"brand-maybe-named-color","tags":{"description":"A color, which may be a named brand color.\n"},"documentation":"Settings for code blocks, or a string specifying the font family\nonly."},"brand-maybe-named-color-light-dark":{"_internalId":2429,"type":"anyOf","anyOf":[{"_internalId":2415,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},{"_internalId":2428,"type":"object","description":"be an object","properties":{"light":{"_internalId":2422,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color","tags":{"description":"A link or path to the brand's light-colored logo or icon.\n"},"documentation":"Settings for links."},"dark":{"_internalId":2427,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color","tags":{"description":"A link or path to the brand's dark-colored logo or icon.\n"},"documentation":"Typography definitions for the brand."}},"patternProperties":{},"closed":true}],"description":"be at least one of: brand-maybe-named-color, an object","$id":"brand-maybe-named-color-light-dark"},"brand-named-theme-color":{"_internalId":2432,"type":"enum","enum":["foreground","background","primary","secondary","tertiary","success","info","warning","danger","light","dark","link"],"description":"be one of: `foreground`, `background`, `primary`, `secondary`, `tertiary`, `success`, `info`, `warning`, `danger`, `light`, `dark`, `link`","completions":["foreground","background","primary","secondary","tertiary","success","info","warning","danger","light","dark","link"],"exhaustiveCompletions":true,"$id":"brand-named-theme-color","tags":{"description":"A named brand color, taken either from `color.theme` or `color.palette` (in that order).\n"},"documentation":"Font files and definitions for the brand."},"brand-typography-single":{"_internalId":2459,"type":"object","description":"be an object","properties":{"fonts":{"_internalId":2440,"type":"array","description":"be an array of values, where each element must be brand-font","items":{"_internalId":2439,"type":"ref","$ref":"brand-font","description":"be brand-font"},"tags":{"description":"Font files and definitions for the brand."},"documentation":"Settings for headings, or a string specifying the font family\nonly."},"base":{"_internalId":2443,"type":"ref","$ref":"brand-typography-options-base","description":"be brand-typography-options-base","tags":{"description":"The base font settings for the brand. These are used as the default for all text.\n"},"documentation":"Settings for monospace text, or a string specifying the font family\nonly."},"headings":{"_internalId":2446,"type":"ref","$ref":"brand-typography-options-headings-single","description":"be brand-typography-options-headings-single","tags":{"description":"Settings for headings, or a string specifying the font family only."},"documentation":"Settings for inline code, or a string specifying the font family\nonly."},"monospace":{"_internalId":2449,"type":"ref","$ref":"brand-typography-options-monospace-single","description":"be brand-typography-options-monospace-single","tags":{"description":"Settings for monospace text, or a string specifying the font family only."},"documentation":"Settings for code blocks, or a string specifying the font family\nonly."},"monospace-inline":{"_internalId":2452,"type":"ref","$ref":"brand-typography-options-monospace-inline-single","description":"be brand-typography-options-monospace-inline-single","tags":{"description":"Settings for inline code, or a string specifying the font family only."},"documentation":"Settings for links."},"monospace-block":{"_internalId":2455,"type":"ref","$ref":"brand-typography-options-monospace-block-single","description":"be brand-typography-options-monospace-block-single","tags":{"description":"Settings for code blocks, or a string specifying the font family only."},"documentation":"Base typographic options."},"link":{"_internalId":2458,"type":"ref","$ref":"brand-typography-options-link-single","description":"be brand-typography-options-link-single","tags":{"description":"Settings for links."},"documentation":"Typographic options for headings."}},"patternProperties":{},"closed":true,"$id":"brand-typography-single","tags":{"description":"Typography definitions for the brand."},"documentation":"The base font settings for the brand. These are used as the default\nfor all text."},"brand-typography-unified":{"_internalId":2486,"type":"object","description":"be an object","properties":{"fonts":{"_internalId":2467,"type":"array","description":"be an array of values, where each element must be brand-font","items":{"_internalId":2466,"type":"ref","$ref":"brand-font","description":"be brand-font"},"tags":{"description":"Font files and definitions for the brand."},"documentation":"Typographic options for monospace elements."},"base":{"_internalId":2470,"type":"ref","$ref":"brand-typography-options-base","description":"be brand-typography-options-base","tags":{"description":"The base font settings for the brand. These are used as the default for all text.\n"},"documentation":"Typographic options for monospace elements."},"headings":{"_internalId":2473,"type":"ref","$ref":"brand-typography-options-headings-unified","description":"be brand-typography-options-headings-unified","tags":{"description":"Settings for headings, or a string specifying the font family only."},"documentation":"Typographic options for inline monospace elements."},"monospace":{"_internalId":2476,"type":"ref","$ref":"brand-typography-options-monospace-unified","description":"be brand-typography-options-monospace-unified","tags":{"description":"Settings for monospace text, or a string specifying the font family only."},"documentation":"Typographic options for inline monospace elements."},"monospace-inline":{"_internalId":2479,"type":"ref","$ref":"brand-typography-options-monospace-inline-unified","description":"be brand-typography-options-monospace-inline-unified","tags":{"description":"Settings for inline code, or a string specifying the font family only."},"documentation":"Line height"},"monospace-block":{"_internalId":2482,"type":"ref","$ref":"brand-typography-options-monospace-block-unified","description":"be brand-typography-options-monospace-block-unified","tags":{"description":"Settings for code blocks, or a string specifying the font family only."},"documentation":"Typographic options for block monospace elements."},"link":{"_internalId":2485,"type":"ref","$ref":"brand-typography-options-link-unified","description":"be brand-typography-options-link-unified","tags":{"description":"Settings for links."},"documentation":"Typographic options for block monospace elements."}},"patternProperties":{},"closed":true,"$id":"brand-typography-unified","tags":{"description":"Typography definitions for the brand."},"documentation":"Typographic options for headings."},"brand-typography-options-base":{"_internalId":2504,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2503,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2499,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"line-height":{"_internalId":2502,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-base","tags":{"description":"Base typographic options."},"documentation":"Typographic options for inline monospace elements."},"brand-typography-options-headings-single":{"_internalId":2526,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2525,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"weight":{"_internalId":2515,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2518,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},"color":{"_internalId":2521,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"line-height":{"_internalId":2524,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-headings-single","tags":{"description":"Typographic options for headings."},"documentation":"Typographic options for inline monospace elements."},"brand-typography-options-headings-unified":{"_internalId":2548,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2547,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"weight":{"_internalId":2537,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2540,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},"color":{"_internalId":2543,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"line-height":{"_internalId":2546,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-headings-unified","tags":{"description":"Typographic options for headings."},"documentation":"Names of customizeable typography elements"},"brand-typography-options-monospace-single":{"_internalId":2569,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2568,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2561,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2564,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2567,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-single","tags":{"description":"Typographic options for monospace elements."},"documentation":"Font files and definitions for the brand."},"brand-typography-options-monospace-unified":{"_internalId":2590,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2589,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2582,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2585,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2588,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-unified","tags":{"description":"Typographic options for monospace elements."},"documentation":"A font weight."},"brand-typography-options-monospace-inline-single":{"_internalId":2611,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2610,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2603,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2606,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2609,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-inline-single","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"A font style."},"brand-typography-options-monospace-inline-unified":{"_internalId":2632,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2631,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2624,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2627,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2630,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-inline-unified","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"line-height-number-string":{"_internalId":2639,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","$id":"line-height-number-string","tags":{"description":"Line height"},"documentation":"The font weights to include."},"brand-typography-options-monospace-block-single":{"_internalId":2663,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2662,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2652,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2655,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2658,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"line-height":{"_internalId":2661,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-block-single","tags":{"description":"Typographic options for block monospace elements."},"documentation":"The font styles to include."},"brand-typography-options-monospace-block-unified":{"_internalId":2687,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2686,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string"},"size":{"type":"string","description":"be a string"},"weight":{"_internalId":2676,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2679,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2682,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"line-height":{"_internalId":2685,"type":"ref","$ref":"line-height-number-string","description":"be line-height-number-string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-monospace-block-unified","tags":{"description":"Typographic options for block monospace elements."},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"brand-typography-options-link-single":{"_internalId":2706,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2705,"type":"object","description":"be an object","properties":{"weight":{"_internalId":2696,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2699,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"background-color":{"_internalId":2702,"type":"ref","$ref":"brand-maybe-named-color","description":"be brand-maybe-named-color"},"decoration":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-link-single","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"A system font definition."},"brand-typography-options-link-unified":{"_internalId":2725,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2724,"type":"object","description":"be an object","properties":{"weight":{"_internalId":2715,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"color":{"_internalId":2718,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"background-color":{"_internalId":2721,"type":"ref","$ref":"brand-maybe-named-color-light-dark","description":"be brand-maybe-named-color-light-dark"},"decoration":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-typography-options-link-unified","tags":{"description":"Typographic options for inline monospace elements."},"documentation":"The font family name, which must match the name of the font on the\nfoundry website."},"brand-named-typography-elements":{"_internalId":2728,"type":"enum","enum":["base","headings","monospace","monospace-inline","monospace-block","link"],"description":"be one of: `base`, `headings`, `monospace`, `monospace-inline`, `monospace-block`, `link`","completions":["base","headings","monospace","monospace-inline","monospace-block","link"],"exhaustiveCompletions":true,"$id":"brand-named-typography-elements","tags":{"description":"Names of customizeable typography elements"},"documentation":"The font weights to include."},"brand-font":{"_internalId":2743,"type":"anyOf","anyOf":[{"_internalId":2733,"type":"ref","$ref":"brand-font-google","description":"be brand-font-google"},{"_internalId":2736,"type":"ref","$ref":"brand-font-bunny","description":"be brand-font-bunny"},{"_internalId":2739,"type":"ref","$ref":"brand-font-file","description":"be brand-font-file"},{"_internalId":2742,"type":"ref","$ref":"brand-font-system","description":"be brand-font-system"}],"description":"be at least one of: brand-font-google, brand-font-bunny, brand-font-file, brand-font-system","$id":"brand-font","tags":{"description":"Font files and definitions for the brand."},"documentation":"The font styles to include."},"brand-font-weight":{"_internalId":2746,"type":"enum","enum":[100,200,300,400,500,600,700,800,900,"thin","extra-light","ultra-light","light","normal","regular","medium","semi-bold","demi-bold","bold","extra-bold","ultra-bold","black"],"description":"be one of: `100`, `200`, `300`, `400`, `500`, `600`, `700`, `800`, `900`, `thin`, `extra-light`, `ultra-light`, `light`, `normal`, `regular`, `medium`, `semi-bold`, `demi-bold`, `bold`, `extra-bold`, `ultra-bold`, `black`","completions":["100","200","300","400","500","600","700","800","900","thin","extra-light","ultra-light","light","normal","regular","medium","semi-bold","demi-bold","bold","extra-bold","ultra-bold","black"],"exhaustiveCompletions":true,"$id":"brand-font-weight","tags":{"description":"A font weight."},"documentation":"The font display method, determines how a font face is font face is\nshown depending on its download status and readiness for use."},"brand-font-style":{"_internalId":2749,"type":"enum","enum":["normal","italic","oblique"],"description":"be one of: `normal`, `italic`, `oblique`","completions":["normal","italic","oblique"],"exhaustiveCompletions":true,"$id":"brand-font-style","tags":{"description":"A font style."},"documentation":"A font definition from Google Fonts."},"brand-font-common":{"_internalId":2775,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline (unified) brand definition, or an object with light\nand dark brand paths or definitions."},"weight":{"_internalId":2764,"type":"anyOf","anyOf":[{"_internalId":2762,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2763,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2762,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The path to a light brand file or an inline light brand\ndefinition."},"style":{"_internalId":2771,"type":"anyOf","anyOf":[{"_internalId":2769,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2770,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2769,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The path to a dark brand file or an inline dark brand definition."},"display":{"_internalId":2774,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"Distance from page edge to wideblock boundary."}},"patternProperties":{},"closed":true,"$id":"brand-font-common"},"brand-font-system":{"_internalId":2775,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline (unified) brand definition, or an object with light\nand dark brand paths or definitions."},"weight":{"_internalId":2764,"type":"anyOf","anyOf":[{"_internalId":2762,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2763,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2762,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The path to a light brand file or an inline light brand\ndefinition."},"style":{"_internalId":2771,"type":"anyOf","anyOf":[{"_internalId":2769,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2770,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2769,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The path to a dark brand file or an inline dark brand definition."},"display":{"_internalId":2774,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"Distance from page edge to wideblock boundary."},"source":{"_internalId":2780,"type":"enum","enum":["system"],"description":"be 'system'","completions":["system"],"exhaustiveCompletions":true}},"patternProperties":{},"closed":true,"required":["source"],"$id":"brand-font-system","tags":{"description":"A system font definition."},"documentation":"A font definition from fonts.bunny.net."},"brand-font-google":{"_internalId":2775,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline (unified) brand definition, or an object with light\nand dark brand paths or definitions."},"weight":{"_internalId":2764,"type":"anyOf","anyOf":[{"_internalId":2762,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2763,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2762,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The path to a light brand file or an inline light brand\ndefinition."},"style":{"_internalId":2771,"type":"anyOf","anyOf":[{"_internalId":2769,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2770,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2769,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The path to a dark brand file or an inline dark brand definition."},"display":{"_internalId":2774,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"Distance from page edge to wideblock boundary."},"source":{"_internalId":2788,"type":"enum","enum":["google"],"description":"be 'google'","completions":["google"],"exhaustiveCompletions":true}},"patternProperties":{},"closed":true,"required":["source"],"$id":"brand-font-google","tags":{"description":"A font definition from Google Fonts."},"documentation":"A method for providing font files directly, either locally or from an\nonline location."},"brand-font-bunny":{"_internalId":2775,"type":"object","description":"be an object","properties":{"family":{"type":"string","description":"be a string","tags":{"description":"The font family name, which must match the name of the font on the foundry website."},"documentation":"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline (unified) brand definition, or an object with light\nand dark brand paths or definitions."},"weight":{"_internalId":2764,"type":"anyOf","anyOf":[{"_internalId":2762,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},{"_internalId":2763,"type":"array","description":"be an array of values, where each element must be brand-font-weight","items":{"_internalId":2762,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"}}],"description":"be at least one of: brand-font-weight, an array of values, where each element must be brand-font-weight","tags":{"complete-from":["anyOf",0],"description":"The font weights to include."},"documentation":"The path to a light brand file or an inline light brand\ndefinition."},"style":{"_internalId":2771,"type":"anyOf","anyOf":[{"_internalId":2769,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"},{"_internalId":2770,"type":"array","description":"be an array of values, where each element must be brand-font-style","items":{"_internalId":2769,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}}],"description":"be at least one of: brand-font-style, an array of values, where each element must be brand-font-style","tags":{"complete-from":["anyOf",0],"description":"The font styles to include."},"documentation":"The path to a dark brand file or an inline dark brand definition."},"display":{"_internalId":2774,"type":"enum","enum":["auto","block","swap","fallback","optional"],"description":"be one of: `auto`, `block`, `swap`, `fallback`, `optional`","completions":["auto","block","swap","fallback","optional"],"exhaustiveCompletions":true,"tags":{"description":"The font display method, determines how a font face is font face is shown depending on its download status and readiness for use.\n"},"documentation":"Distance from page edge to wideblock boundary."},"source":{"_internalId":2796,"type":"enum","enum":["bunny"],"description":"be 'bunny'","completions":["bunny"],"exhaustiveCompletions":true}},"patternProperties":{},"closed":true,"required":["source"],"$id":"brand-font-bunny","tags":{"description":"A font definition from fonts.bunny.net."},"documentation":"A path to a brand.yml file, or an object with light and dark paths to\nbrand.yml"},"brand-font-file":{"_internalId":2832,"type":"object","description":"be an object","properties":{"source":{"_internalId":2804,"type":"enum","enum":["file"],"description":"be 'file'","completions":["file"],"exhaustiveCompletions":true},"family":{"type":"string","description":"be a string","tags":{"description":"The font family name."},"documentation":"Gap between margin column and body text."},"files":{"_internalId":2831,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":2830,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2829,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"The path to the font file. This can be a local path or a URL.\n"},"documentation":"Classes to apply to cell container"},"weight":{"_internalId":2825,"type":"ref","$ref":"brand-font-weight","description":"be brand-font-weight"},"style":{"_internalId":2828,"type":"ref","$ref":"brand-font-style","description":"be brand-font-style"}},"patternProperties":{},"required":["path"]}],"description":"be at least one of: a string, an object"},"tags":{"description":"The font files to include. These can be local or online. Local file paths should be relative to the `brand.yml` file. Online paths should be complete URLs.\n"},"documentation":"Unique label for code cell"}},"patternProperties":{},"required":["files","family","source"],"closed":true,"$id":"brand-font-file","tags":{"description":"A method for providing font files directly, either locally or from an online location."},"documentation":"Width of the margin note column."},"brand-font-family":{"type":"string","description":"be a string","$id":"brand-font-family","tags":{"description":"A locally-installed font family name. When used, the end-user is responsible for ensuring that the font is installed on their system.\n"},"documentation":"Array of rendering names, e.g. [light, dark]"},"brand-single":{"_internalId":2854,"type":"object","description":"be an object","properties":{"meta":{"_internalId":2841,"type":"ref","$ref":"brand-meta","description":"be brand-meta"},"logo":{"_internalId":2844,"type":"ref","$ref":"brand-logo-single","description":"be brand-logo-single"},"color":{"_internalId":2847,"type":"ref","$ref":"brand-color-single","description":"be brand-color-single"},"typography":{"_internalId":2850,"type":"ref","$ref":"brand-typography-single","description":"be brand-typography-single"},"defaults":{"_internalId":2853,"type":"ref","$ref":"brand-defaults","description":"be brand-defaults"}},"patternProperties":{},"closed":true,"$id":"brand-single"},"brand-unified":{"_internalId":2872,"type":"object","description":"be an object","properties":{"meta":{"_internalId":2859,"type":"ref","$ref":"brand-meta","description":"be brand-meta"},"logo":{"_internalId":2862,"type":"ref","$ref":"brand-logo-unified","description":"be brand-logo-unified"},"color":{"_internalId":2865,"type":"ref","$ref":"brand-color-unified","description":"be brand-color-unified"},"typography":{"_internalId":2868,"type":"ref","$ref":"brand-typography-unified","description":"be brand-typography-unified"},"defaults":{"_internalId":2871,"type":"ref","$ref":"brand-defaults","description":"be brand-defaults"}},"patternProperties":{},"closed":true,"$id":"brand-unified"},"brand-path-only-light-dark":{"_internalId":2884,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2883,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string"},"dark":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","$id":"brand-path-only-light-dark","tags":{"description":"A path to a brand.yml file, or an object with light and dark paths to brand.yml\n"},"documentation":"Array of tags for notebook cell"},"brand-path-bool-light-dark":{"_internalId":2913,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":2909,"type":"object","description":"be an object","properties":{"light":{"_internalId":2900,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2899,"type":"ref","$ref":"brand-single","description":"be brand-single"}],"description":"be at least one of: a string, brand-single","tags":{"description":"The path to a light brand file or an inline light brand definition.\n"},"documentation":"nbconvert tag to export cell"},"dark":{"_internalId":2908,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2907,"type":"ref","$ref":"brand-single","description":"be brand-single"}],"description":"be at least one of: a string, brand-single","tags":{"description":"The path to a dark brand file or an inline dark brand definition.\n"},"documentation":"Whether to cache a code chunk."}},"patternProperties":{},"closed":true},{"_internalId":2912,"type":"ref","$ref":"brand-unified","description":"be brand-unified"}],"description":"be at least one of: a string, `true` or `false`, an object, brand-unified","$id":"brand-path-bool-light-dark","tags":{"description":"Branding information to use for this document. If a string, the path to a brand file.\nIf false, don't use branding on this document. If an object, an inline (unified) brand\ndefinition, or an object with light and dark brand paths or definitions.\n"},"documentation":"Notebook cell identifier"},"brand-defaults":{"_internalId":2923,"type":"object","description":"be an object","properties":{"bootstrap":{"_internalId":2918,"type":"ref","$ref":"brand-defaults-bootstrap","description":"be brand-defaults-bootstrap"},"quarto":{"_internalId":2921,"type":"object","description":"be an object","properties":{},"patternProperties":{}}},"patternProperties":{},"$id":"brand-defaults"},"brand-defaults-bootstrap":{"_internalId":2942,"type":"object","description":"be an object","properties":{"defaults":{"_internalId":2941,"type":"object","description":"be an object","properties":{},"patternProperties":{},"additionalProperties":{"_internalId":2940,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, `true` or `false`, a number"}}},"patternProperties":{},"$id":"brand-defaults-bootstrap"},"marginalia-side-geometry":{"_internalId":2951,"type":"object","description":"be an object","properties":{"far":{"type":"string","description":"be a string","tags":{"description":"Distance from page edge to wideblock boundary."},"documentation":"A prefix to be used to generate the paths of cache files"},"width":{"type":"string","description":"be a string","tags":{"description":"Width of the margin note column."},"documentation":"Variable names to be saved in the cache database."},"separation":{"type":"string","description":"be a string","tags":{"description":"Gap between margin column and body text."},"documentation":"Variables names that are not created from the current chunk"}},"patternProperties":{},"closed":true,"$id":"marginalia-side-geometry"},"quarto-resource-cell-attributes-label":{"type":"string","description":"be a string","documentation":"Whether to lazyLoad() or directly load()\nobjects","tags":{"description":{"short":"Unique label for code cell","long":"Unique label for code cell. Used when other code needs to refer to the cell \n(e.g. for cross references `fig-samples` or `tbl-summary`)\n"}},"$id":"quarto-resource-cell-attributes-label"},"quarto-resource-cell-attributes-classes":{"type":"string","description":"be a string","documentation":"Force rebuild of cache for chunk","tags":{"description":"Classes to apply to cell container"},"$id":"quarto-resource-cell-attributes-classes"},"quarto-resource-cell-attributes-renderings":{"_internalId":2960,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Prevent comment changes from invalidating the cache for a chunk","tags":{"description":"Array of rendering names, e.g. `[light, dark]`"},"$id":"quarto-resource-cell-attributes-renderings"},"quarto-resource-cell-attributes-tags":{"_internalId":2965,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"engine":"jupyter","description":"Array of tags for notebook cell"},"documentation":"Explicitly specify cache dependencies for this chunk (one or more\nchunk labels)","$id":"quarto-resource-cell-attributes-tags"},"quarto-resource-cell-attributes-id":{"type":"string","description":"be a string","tags":{"engine":"jupyter","description":{"short":"Notebook cell identifier","long":"Notebook cell identifier. Note that if there is no cell `id` then `label` \nwill be used as the cell `id` if it is present.\nSee \nfor additional details on cell ids.\n"}},"documentation":"Detect cache dependencies automatically via usage of global\nvariables","$id":"quarto-resource-cell-attributes-id"},"quarto-resource-cell-attributes-export":{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true,"tags":{"engine":"jupyter","description":"nbconvert tag to export cell","hidden":true},"documentation":"Title displayed in dashboard card header","$id":"quarto-resource-cell-attributes-export"},"quarto-resource-cell-cache-cache":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Whether to cache a code chunk.","long":"Whether to cache a code chunk. When evaluating\ncode chunks for the second time, the cached chunks are skipped (unless they\nhave been modified), but the objects created in these chunks are loaded from\npreviously saved databases (`.rdb` and `.rdx` files), and these files are\nsaved when a chunk is evaluated for the first time, or when cached files are\nnot found (e.g., you may have removed them by hand). Note that the filename\nconsists of the chunk label with an MD5 digest of the R code and chunk\noptions of the code chunk, which means any changes in the chunk will produce\na different MD5 digest, and hence invalidate the cache.\n"}},"documentation":"Padding around dashboard card content (default 8px)","$id":"quarto-resource-cell-cache-cache"},"quarto-resource-cell-cache-cache-path":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"A prefix to be used to generate the paths of cache files","hidden":true},"documentation":"Make dashboard card content expandable (default:\ntrue)","$id":"quarto-resource-cell-cache-cache-path"},"quarto-resource-cell-cache-cache-vars":{"_internalId":2979,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2978,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":{"short":"Variable names to be saved in the cache database.","long":"Variable names to be saved in\nthe cache database. By default, all variables created in the current chunks\nare identified and saved, but you may want to manually specify the variables\nto be saved, because the automatic detection of variables may not be robust,\nor you may want to save only a subset of variables.\n"}},"documentation":"Percentage or absolute pixel width for dashboard card (defaults to\nevenly spaced across row)","$id":"quarto-resource-cell-cache-cache-vars"},"quarto-resource-cell-cache-cache-globals":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Variables names that are not created from the current chunk","long":"Variables names that are not created from the current chunk.\n\nThis option is mainly for `autodep: true` to work more precisely---a chunk\n`B` depends on chunk `A` when any of `B`'s global variables are `A`'s local \nvariables. In case the automatic detection of global variables in a chunk \nfails, you may manually specify the names of global variables via this option.\nIn addition, `cache-globals: false` means detecting all variables in a code\nchunk, no matter if they are global or local variables.\n"}},"documentation":"Percentage or absolute pixel height for dashboard card (defaults to\nevenly spaced across column)","$id":"quarto-resource-cell-cache-cache-globals"},"quarto-resource-cell-cache-cache-lazy":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Whether to `lazyLoad()` or directly `load()` objects","long":"Whether to `lazyLoad()` or directly `load()` objects. For very large objects, \nlazyloading may not work, so `cache-lazy: false` may be desirable (see\n[#572](https://github.com/yihui/knitr/issues/572)).\n"}},"documentation":"Context to execute cell within.","$id":"quarto-resource-cell-cache-cache-lazy"},"quarto-resource-cell-cache-cache-rebuild":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Force rebuild of cache for chunk"},"documentation":"The type of dashboard element being produced by this code cell.","$id":"quarto-resource-cell-cache-cache-rebuild"},"quarto-resource-cell-cache-cache-comments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Prevent comment changes from invalidating the cache for a chunk"},"documentation":"For code cells that produce a valuebox, the color of the\nvaluebox.s","$id":"quarto-resource-cell-cache-cache-comments"},"quarto-resource-cell-cache-dependson":{"_internalId":3002,"type":"anyOf","anyOf":[{"_internalId":2995,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":2994,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},{"_internalId":3001,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":3000,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: at least one of: a string, an array of values, where each element must be a string, at least one of: a number, an array of values, where each element must be a number","tags":{"engine":"knitr","description":"Explicitly specify cache dependencies for this chunk (one or more chunk labels)\n"},"documentation":"Evaluate code cells (if false just echos the code into\noutput).","$id":"quarto-resource-cell-cache-dependson"},"quarto-resource-cell-cache-autodep":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Detect cache dependencies automatically via usage of global variables"},"documentation":"Include cell source code in rendered output.","$id":"quarto-resource-cell-cache-autodep"},"quarto-resource-cell-card-title":{"type":"string","description":"be a string","tags":{"formats":["dashboard"],"description":{"short":"Title displayed in dashboard card header"}},"documentation":"Collapse code into an HTML <details> tag so the\nuser can display it on-demand.","$id":"quarto-resource-cell-card-title"},"quarto-resource-cell-card-padding":{"_internalId":3013,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["dashboard"],"description":{"short":"Padding around dashboard card content (default `8px`)"}},"documentation":"Summary text to use for code blocks collapsed using\ncode-fold","$id":"quarto-resource-cell-card-padding"},"quarto-resource-cell-card-expandable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":{"short":"Make dashboard card content expandable (default: `true`)"}},"documentation":"Choose whether to scroll or wrap when code\nlines are too wide for their container.","$id":"quarto-resource-cell-card-expandable"},"quarto-resource-cell-card-width":{"_internalId":3022,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["dashboard"],"description":{"short":"Percentage or absolute pixel width for dashboard card (defaults to evenly spaced across row)"}},"documentation":"Include line numbers in code block output (true or\nfalse)","$id":"quarto-resource-cell-card-width"},"quarto-resource-cell-card-height":{"_internalId":3029,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["dashboard"],"description":{"short":"Percentage or absolute pixel height for dashboard card (defaults to evenly spaced across column)"}},"documentation":"Unique label for code listing (used in cross references)","$id":"quarto-resource-cell-card-height"},"quarto-resource-cell-card-context":{"type":"string","description":"be a string","tags":{"formats":["dashboard"],"engine":["jupyter"],"description":{"short":"Context to execute cell within."}},"documentation":"Caption for code listing","$id":"quarto-resource-cell-card-context"},"quarto-resource-cell-card-content":{"_internalId":3034,"type":"enum","enum":["valuebox","sidebar","toolbar","card-sidebar","card-toolbar"],"description":"be one of: `valuebox`, `sidebar`, `toolbar`, `card-sidebar`, `card-toolbar`","completions":["valuebox","sidebar","toolbar","card-sidebar","card-toolbar"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":{"short":"The type of dashboard element being produced by this code cell."}},"documentation":"Whether to reformat R code.","$id":"quarto-resource-cell-card-content"},"quarto-resource-cell-card-color":{"_internalId":3042,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3041,"type":"enum","enum":["primary","secondary","success","info","warning","danger","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `info`, `warning`, `danger`, `light`, `dark`","completions":["primary","secondary","success","info","warning","danger","light","dark"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, one of: `primary`, `secondary`, `success`, `info`, `warning`, `danger`, `light`, `dark`","tags":{"formats":["dashboard"],"description":{"short":"For code cells that produce a valuebox, the color of the valuebox.s"}},"documentation":"List of options to pass to tidy handler","$id":"quarto-resource-cell-card-color"},"quarto-resource-cell-codeoutput-eval":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":{"short":"Evaluate code cells (if `false` just echos the code into output).","long":"Evaluate code cells (if `false` just echos the code into output).\n\n- `true` (default): evaluate code cell\n- `false`: don't evaluate code cell\n- `[...]`: A list of positive or negative numbers to selectively include or exclude expressions \n (explicit inclusion/exclusion of expressions is available only when using the knitr engine)\n"}},"documentation":"Collapse all the source and output blocks from one code chunk into a\nsingle block","$id":"quarto-resource-cell-codeoutput-eval"},"quarto-resource-cell-codeoutput-echo":{"_internalId":3052,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3051,"type":"enum","enum":["fenced"],"description":"be 'fenced'","completions":["fenced"],"exhaustiveCompletions":true}],"description":"be `true`, `false`, or `fenced`","tags":{"contexts":["document-execute"],"execute-only":true,"description":{"short":"Include cell source code in rendered output.","long":"Include cell source code in rendered output.\n\n- `true` (default in most formats): include source code in output\n- `false` (default in presentation formats like `beamer`, `revealjs`, and `pptx`): do not include source code in output\n- `fenced`: in addition to echoing, include the cell delimiter as part of the output.\n- `[...]`: A list of positive or negative line numbers to selectively include or exclude lines\n (explicit inclusion/excusion of lines is available only when using the knitr engine)\n"}},"documentation":"Whether to add the prompt characters in R code.","$id":"quarto-resource-cell-codeoutput-echo"},"quarto-resource-cell-codeoutput-code-fold":{"_internalId":3060,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3059,"type":"enum","enum":["show"],"description":"be 'show'","completions":["show"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'show'","tags":{"contexts":["document-code"],"formats":["$html-all"],"description":{"short":"Collapse code into an HTML `
` tag so the user can display it on-demand.","long":"Collapse code into an HTML `
` tag so the user can display it on-demand.\n\n- `true`: collapse code\n- `false` (default): do not collapse code\n- `show`: use the `
` tag, but show the expanded code initially.\n"}},"documentation":"Whether to syntax highlight the source code","$id":"quarto-resource-cell-codeoutput-code-fold"},"quarto-resource-cell-codeoutput-code-summary":{"type":"string","description":"be a string","tags":{"contexts":["document-code"],"formats":["$html-all"],"description":"Summary text to use for code blocks collapsed using `code-fold`"},"documentation":"Class name(s) for source code blocks","$id":"quarto-resource-cell-codeoutput-code-summary"},"quarto-resource-cell-codeoutput-code-overflow":{"_internalId":3065,"type":"enum","enum":["scroll","wrap"],"description":"be one of: `scroll`, `wrap`","completions":["scroll","wrap"],"exhaustiveCompletions":true,"tags":{"contexts":["document-code"],"formats":["$html-all"],"description":{"short":"Choose whether to `scroll` or `wrap` when code lines are too wide for their container.","long":"Choose how to handle code overflow, when code lines are too wide for their container. One of:\n\n- `scroll`\n- `wrap`\n"}},"documentation":"Attribute(s) for source code blocks","$id":"quarto-resource-cell-codeoutput-code-overflow"},"quarto-resource-cell-codeoutput-code-line-numbers":{"_internalId":3072,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be `true`, `false`, or a string specifying the lines to highlight","tags":{"doNotNarrowError":true,"contexts":["document-code"],"formats":["$html-all","ms","$pdf-all"],"description":{"short":"Include line numbers in code block output (`true` or `false`)","long":"Include line numbers in code block output (`true` or `false`).\n\nFor revealjs output only, you can also specify a string to highlight\nspecific lines (and/or animate between sets of highlighted lines).\n\n* Sets of lines are denoted with commas:\n * `3,4,5`\n * `1,10,12`\n* Ranges can be denoted with dashes and combined with commas:\n * `1-3,5` \n * `5-10,12,14`\n* Finally, animation steps are separated by `|`:\n * `1-3|1-3,5` first shows `1-3`, then `1-3,5`\n * `|5|5-10,12` first shows no numbering, then 5, then lines 5-10\n and 12\n"}},"documentation":"Default width for figures","$id":"quarto-resource-cell-codeoutput-code-line-numbers"},"quarto-resource-cell-codeoutput-lst-label":{"type":"string","description":"be a string","documentation":"Default height for figures","tags":{"description":"Unique label for code listing (used in cross references)"},"$id":"quarto-resource-cell-codeoutput-lst-label"},"quarto-resource-cell-codeoutput-lst-cap":{"type":"string","description":"be a string","documentation":"Figure caption","tags":{"description":"Caption for code listing"},"$id":"quarto-resource-cell-codeoutput-lst-cap"},"quarto-resource-cell-codeoutput-tidy":{"_internalId":3084,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3083,"type":"enum","enum":["styler","formatR"],"description":"be one of: `styler`, `formatR`","completions":["styler","formatR"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `styler`, `formatR`","tags":{"engine":"knitr","description":"Whether to reformat R code."},"documentation":"Figure subcaptions","$id":"quarto-resource-cell-codeoutput-tidy"},"quarto-resource-cell-codeoutput-tidy-opts":{"_internalId":3089,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"engine":"knitr","description":"List of options to pass to `tidy` handler"},"documentation":"Hyperlink target for the figure","$id":"quarto-resource-cell-codeoutput-tidy-opts"},"quarto-resource-cell-codeoutput-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Collapse all the source and output blocks from one code chunk into a single block\n"},"documentation":"Figure horizontal alignment (default, left,\nright, or center)","$id":"quarto-resource-cell-codeoutput-collapse"},"quarto-resource-cell-codeoutput-prompt":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Whether to add the prompt characters in R code.","long":"Whether to add the prompt characters in R\ncode. See `prompt` and `continue` on the help page `?base::options`. Note\nthat adding prompts can make it difficult for readers to copy R code from\nthe output, so `prompt: false` may be a better choice. This option may not\nwork well when the `engine` is not `R`\n([#1274](https://github.com/yihui/knitr/issues/1274)).\n"}},"documentation":"Alternative text to be used in the alt attribute of HTML\nimages.","$id":"quarto-resource-cell-codeoutput-prompt"},"quarto-resource-cell-codeoutput-highlight":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Whether to syntax highlight the source code","hidden":true},"documentation":"LaTeX environment for figure output","$id":"quarto-resource-cell-codeoutput-highlight"},"quarto-resource-cell-codeoutput-class-source":{"_internalId":3101,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3100,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for source code blocks"},"documentation":"LaTeX figure position arrangement to be used in\n\\begin{figure}[].","$id":"quarto-resource-cell-codeoutput-class-source"},"quarto-resource-cell-codeoutput-attr-source":{"_internalId":3107,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3106,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for source code blocks"},"documentation":"A short caption (only used in LaTeX output)","$id":"quarto-resource-cell-codeoutput-attr-source"},"quarto-resource-cell-figure-fig-width":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Default width for figures"},"documentation":"Default output format for figures (retina,\npng, jpeg, svg, or\npdf)","$id":"quarto-resource-cell-figure-fig-width"},"quarto-resource-cell-figure-fig-height":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Default height for figures"},"documentation":"Default DPI for figures","$id":"quarto-resource-cell-figure-fig-height"},"quarto-resource-cell-figure-fig-cap":{"_internalId":3117,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3116,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Figure caption"},"documentation":"The aspect ratio of the plot, i.e., the ratio of height/width. When\nfig-asp is specified, the height of a plot (the option\nfig-height) is calculated from\nfig-width * fig-asp.","$id":"quarto-resource-cell-figure-fig-cap"},"quarto-resource-cell-figure-fig-subcap":{"_internalId":3129,"type":"anyOf","anyOf":[{"_internalId":3122,"type":"enum","enum":[true],"description":"be 'true'","completions":["true"],"exhaustiveCompletions":true},{"_internalId":3128,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3127,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: 'true', at least one of: a string, an array of values, where each element must be a string","documentation":"Width of plot in the output document","tags":{"description":"Figure subcaptions"},"$id":"quarto-resource-cell-figure-fig-subcap"},"quarto-resource-cell-figure-fig-link":{"_internalId":3135,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3134,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Hyperlink target for the figure"},"documentation":"Height of plot in the output document","$id":"quarto-resource-cell-figure-fig-link"},"quarto-resource-cell-figure-fig-align":{"_internalId":3142,"type":"anyOf","anyOf":[{"_internalId":3140,"type":"enum","enum":["default","left","right","center"],"description":"be one of: `default`, `left`, `right`, `center`","completions":["default","left","right","center"],"exhaustiveCompletions":true},{"_internalId":3141,"type":"array","description":"be an array of values, where each element must be one of: `default`, `left`, `right`, `center`","items":{"_internalId":3140,"type":"enum","enum":["default","left","right","center"],"description":"be one of: `default`, `left`, `right`, `center`","completions":["default","left","right","center"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `default`, `left`, `right`, `center`, an array of values, where each element must be one of: `default`, `left`, `right`, `center`","tags":{"complete-from":["anyOf",0],"contexts":["document-figures"],"formats":["docx","rtf","$odt-all","$pdf-all","$html-all"],"description":"Figure horizontal alignment (`default`, `left`, `right`, or `center`)"},"documentation":"How plots in chunks should be kept.","$id":"quarto-resource-cell-figure-fig-align"},"quarto-resource-cell-figure-fig-alt":{"_internalId":3148,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3147,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":"Alternative text to be used in the `alt` attribute of HTML images.\n"},"documentation":"How to show/arrange the plots","$id":"quarto-resource-cell-figure-fig-alt"},"quarto-resource-cell-figure-fig-env":{"_internalId":3154,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3153,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"contexts":["document-figures"],"description":"LaTeX environment for figure output"},"documentation":"Additional raw LaTeX or HTML options to be applied to figures","$id":"quarto-resource-cell-figure-fig-env"},"quarto-resource-cell-figure-fig-pos":{"_internalId":3166,"type":"anyOf","anyOf":[{"_internalId":3162,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3161,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},{"_internalId":3165,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true}],"description":"be at least one of: at least one of: a string, an array of values, where each element must be a string, 'false'","tags":{"formats":["$pdf-all"],"contexts":["document-figures"],"description":{"short":"LaTeX figure position arrangement to be used in `\\begin{figure}[]`.","long":"LaTeX figure position arrangement to be used in `\\begin{figure}[]`.\n\nComputational figure output that is accompanied by the code \nthat produced it is given a default value of `fig-pos=\"H\"` (so \nthat the code and figure are not inordinately separated).\n\nIf `fig-pos` is `false`, then we don't use any figure position\nspecifier, which is sometimes necessary with custom figure\nenvironments (such as `sidewaysfigure`).\n"}},"documentation":"Externalize tikz graphics (pre-compile to PDF)","$id":"quarto-resource-cell-figure-fig-pos"},"quarto-resource-cell-figure-fig-scap":{"_internalId":3172,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3171,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"A short caption (only used in LaTeX output)","long":"A short caption (only used in LaTeX output). A short caption is inserted in `\\caption[]`, \nand usually displayed in the “List of Figures” of a PDF document.\n"}},"documentation":"sanitize tikz graphics (escape special LaTeX characters).","$id":"quarto-resource-cell-figure-fig-scap"},"quarto-resource-cell-figure-fig-format":{"_internalId":3175,"type":"enum","enum":["retina","png","jpeg","svg","pdf"],"description":"be one of: `retina`, `png`, `jpeg`, `svg`, `pdf`","completions":["retina","png","jpeg","svg","pdf"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Default output format for figures (`retina`, `png`, `jpeg`, `svg`, or `pdf`)"},"documentation":"Time interval (number of seconds) between animation frames.","$id":"quarto-resource-cell-figure-fig-format"},"quarto-resource-cell-figure-fig-dpi":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Default DPI for figures"},"documentation":"Extra options for animations","$id":"quarto-resource-cell-figure-fig-dpi"},"quarto-resource-cell-figure-fig-asp":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"The aspect ratio of the plot, i.e., the ratio of height/width. When `fig-asp` is specified, the height of a plot \n(the option `fig-height`) is calculated from `fig-width * fig-asp`.\n"},"documentation":"Hook function to create animations in HTML output","$id":"quarto-resource-cell-figure-fig-asp"},"quarto-resource-cell-figure-out-width":{"_internalId":3188,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"null","description":"be the null value","completions":[],"exhaustiveCompletions":true}],"description":"be at least one of: a string, the null value","tags":{"engine":"knitr","description":{"short":"Width of plot in the output document","long":"Width of the plot in the output document, which can be different from its physical `fig-width`,\ni.e., plots can be scaled in the output document.\nWhen used without a unit, the unit is assumed to be pixels. However, any of the following unit \nidentifiers can be used: px, cm, mm, in, inch and %, for example, `3in`, `8cm`, `300px` or `50%`.\n"}},"documentation":"One or more paths of child documents to be knitted and input into the\nmain document.","$id":"quarto-resource-cell-figure-out-width"},"quarto-resource-cell-figure-out-height":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Height of plot in the output document","long":"Height of the plot in the output document, which can be different from its physical `fig-height`, \ni.e., plots can be scaled in the output document.\nDepending on the output format, this option can take special values.\nFor example, for LaTeX output, it can be `3in`, or `8cm`;\nfor HTML, it can be `300px`.\n"}},"documentation":"File containing code to execute for this chunk","$id":"quarto-resource-cell-figure-out-height"},"quarto-resource-cell-figure-fig-keep":{"_internalId":3202,"type":"anyOf","anyOf":[{"_internalId":3195,"type":"enum","enum":["high","none","all","first","last"],"description":"be one of: `high`, `none`, `all`, `first`, `last`","completions":["high","none","all","first","last"],"exhaustiveCompletions":true},{"_internalId":3201,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":3200,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: one of: `high`, `none`, `all`, `first`, `last`, at least one of: a number, an array of values, where each element must be a number","tags":{"engine":"knitr","description":{"short":"How plots in chunks should be kept.","long":"How plots in chunks should be kept. Possible values are as follows:\n\n- `high`: Only keep high-level plots (merge low-level changes into\n high-level plots).\n- `none`: Discard all plots.\n- `all`: Keep all plots (low-level plot changes may produce new plots).\n- `first`: Only keep the first plot.\n- `last`: Only keep the last plot.\n- A numeric vector: In this case, the values are indices of (low-level) plots\n to keep.\n"}},"documentation":"String containing code to execute for this chunk","$id":"quarto-resource-cell-figure-fig-keep"},"quarto-resource-cell-figure-fig-show":{"_internalId":3205,"type":"enum","enum":["asis","hold","animate","hide"],"description":"be one of: `asis`, `hold`, `animate`, `hide`","completions":["asis","hold","animate","hide"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"How to show/arrange the plots","long":"How to show/arrange the plots. Possible values are as follows:\n\n- `asis`: Show plots exactly in places where they were generated (as if\n the code were run in an R terminal).\n- `hold`: Hold all plots and output them at the end of a code chunk.\n- `animate`: Concatenate all plots into an animation if there are multiple\n plots in a chunk.\n- `hide`: Generate plot files but hide them in the output document.\n"}},"documentation":"Include chunk when extracting code with\nknitr::purl()","$id":"quarto-resource-cell-figure-fig-show"},"quarto-resource-cell-figure-out-extra":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"Additional raw LaTeX or HTML options to be applied to figures"},"documentation":"2d-array of widths where the first dimension specifies columns and\nthe second rows.","$id":"quarto-resource-cell-figure-out-extra"},"quarto-resource-cell-figure-external":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","formats":["$pdf-all"],"description":"Externalize tikz graphics (pre-compile to PDF)"},"documentation":"Layout output blocks into columns","$id":"quarto-resource-cell-figure-external"},"quarto-resource-cell-figure-sanitize":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","formats":["$pdf-all"],"description":"sanitize tikz graphics (escape special LaTeX characters)."},"documentation":"Layout output blocks into rows","$id":"quarto-resource-cell-figure-sanitize"},"quarto-resource-cell-figure-interval":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":"Time interval (number of seconds) between animation frames."},"documentation":"Horizontal alignment for layout content (default,\nleft, right, or center)","$id":"quarto-resource-cell-figure-interval"},"quarto-resource-cell-figure-aniopts":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Extra options for animations","long":"Extra options for animations; see the documentation of the LaTeX [**animate**\npackage.](http://ctan.org/pkg/animate)\n"}},"documentation":"Vertical alignment for layout content (default,\ntop, center, or bottom)","$id":"quarto-resource-cell-figure-aniopts"},"quarto-resource-cell-figure-animation-hook":{"type":"string","description":"be a string","completions":["ffmpeg","gifski"],"tags":{"engine":"knitr","description":{"short":"Hook function to create animations in HTML output","long":"Hook function to create animations in HTML output. \n\nThe default hook (`ffmpeg`) uses FFmpeg to convert images to a WebM video.\n\nAnother hook function is `gifski` based on the\n[**gifski**](https://cran.r-project.org/package=gifski) package to\ncreate GIF animations.\n"}},"documentation":"Page column for output","$id":"quarto-resource-cell-figure-animation-hook"},"quarto-resource-cell-include-child":{"_internalId":3223,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3222,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"One or more paths of child documents to be knitted and input into the main document."},"documentation":"Page column for figure output","$id":"quarto-resource-cell-include-child"},"quarto-resource-cell-include-file":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"File containing code to execute for this chunk"},"documentation":"Page column for table output","$id":"quarto-resource-cell-include-file"},"quarto-resource-cell-include-code":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":"String containing code to execute for this chunk"},"documentation":"Where to place figure and table captions (top,\nbottom, or margin)","$id":"quarto-resource-cell-include-code"},"quarto-resource-cell-include-purl":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":"Include chunk when extracting code with `knitr::purl()`"},"documentation":"Where to place figure captions (top,\nbottom, or margin)","$id":"quarto-resource-cell-include-purl"},"quarto-resource-cell-layout-layout":{"_internalId":3242,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3241,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a number","items":{"_internalId":3240,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}}],"description":"be at least one of: a string, an array of values, where each element must be an array of values, where each element must be a number","documentation":"Where to place table captions (top, bottom,\nor margin)","tags":{"description":{"short":"2d-array of widths where the first dimension specifies columns and the second rows.","long":"2d-array of widths where the first dimension specifies columns and the second rows.\n\nFor example, to layout the first two output blocks side-by-side on the top with the third\nblock spanning the full width below, use `[[3,3], [1]]`.\n\nUse negative values to create margin. For example, to create space between the \noutput blocks in the top row of the previous example, use `[[3,-1, 3], [1]]`.\n"}},"$id":"quarto-resource-cell-layout-layout"},"quarto-resource-cell-layout-layout-ncol":{"type":"number","description":"be a number","documentation":"Table caption","tags":{"description":"Layout output blocks into columns"},"$id":"quarto-resource-cell-layout-layout-ncol"},"quarto-resource-cell-layout-layout-nrow":{"type":"number","description":"be a number","documentation":"Table subcaptions","tags":{"description":"Layout output blocks into rows"},"$id":"quarto-resource-cell-layout-layout-nrow"},"quarto-resource-cell-layout-layout-align":{"_internalId":3249,"type":"enum","enum":["default","left","center","right"],"description":"be one of: `default`, `left`, `center`, `right`","completions":["default","left","center","right"],"exhaustiveCompletions":true,"documentation":"Apply explicit table column widths","tags":{"description":"Horizontal alignment for layout content (`default`, `left`, `right`, or `center`)"},"$id":"quarto-resource-cell-layout-layout-align"},"quarto-resource-cell-layout-layout-valign":{"_internalId":3252,"type":"enum","enum":["default","top","center","bottom"],"description":"be one of: `default`, `top`, `center`, `bottom`","completions":["default","top","center","bottom"],"exhaustiveCompletions":true,"documentation":"If none, do not process raw HTML table in cell output\nand leave it as-is","tags":{"description":"Vertical alignment for layout content (`default`, `top`, `center`, or `bottom`)"},"$id":"quarto-resource-cell-layout-layout-valign"},"quarto-resource-cell-pagelayout-column":{"_internalId":3255,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Include the results of executing the code in the output (specify\nasis to treat output as raw markdown with no enclosing\ncontainers).","tags":{"description":{"short":"Page column for output","long":"[Page column](https://quarto.org/docs/authoring/article-layout.html) for output"}},"$id":"quarto-resource-cell-pagelayout-column"},"quarto-resource-cell-pagelayout-fig-column":{"_internalId":3258,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Include warnings in rendered output.","tags":{"description":{"short":"Page column for figure output","long":"[Page column](https://quarto.org/docs/authoring/article-layout.html) for figure output"}},"$id":"quarto-resource-cell-pagelayout-fig-column"},"quarto-resource-cell-pagelayout-tbl-column":{"_internalId":3261,"type":"ref","$ref":"page-column","description":"be page-column","documentation":"Include errors in the output (note that this implies that errors\nexecuting code will not halt processing of the document).","tags":{"description":{"short":"Page column for table output","long":"[Page column](https://quarto.org/docs/authoring/article-layout.html) for table output"}},"$id":"quarto-resource-cell-pagelayout-tbl-column"},"quarto-resource-cell-pagelayout-cap-location":{"_internalId":3264,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"contexts":["document-layout"],"formats":["$html-files","$pdf-all","typst"],"description":"Where to place figure and table captions (`top`, `bottom`, or `margin`)"},"documentation":"Catch all for preventing any output (code or results) from being\nincluded in output.","$id":"quarto-resource-cell-pagelayout-cap-location"},"quarto-resource-cell-pagelayout-fig-cap-location":{"_internalId":3267,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"contexts":["document-layout","document-figures"],"formats":["$html-files","$pdf-all","typst"],"description":"Where to place figure captions (`top`, `bottom`, or `margin`)"},"documentation":"Panel type for cell output (tabset, input,\nsidebar, fill, center)","$id":"quarto-resource-cell-pagelayout-fig-cap-location"},"quarto-resource-cell-pagelayout-tbl-cap-location":{"_internalId":3270,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"contexts":["document-layout","document-tables"],"formats":["$html-files","$pdf-all","typst"],"description":"Where to place table captions (`top`, `bottom`, or `margin`)"},"documentation":"Location of output relative to the code that generated it\n(default, fragment, slide,\ncolumn, or column-location)","$id":"quarto-resource-cell-pagelayout-tbl-cap-location"},"quarto-resource-cell-table-tbl-cap":{"_internalId":3276,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3275,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Table caption"},"documentation":"Include messages in rendered output.","$id":"quarto-resource-cell-table-tbl-cap"},"quarto-resource-cell-table-tbl-subcap":{"_internalId":3288,"type":"anyOf","anyOf":[{"_internalId":3281,"type":"enum","enum":[true],"description":"be 'true'","completions":["true"],"exhaustiveCompletions":true},{"_internalId":3287,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3286,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: 'true', at least one of: a string, an array of values, where each element must be a string","documentation":"How to display text results","tags":{"description":"Table subcaptions"},"$id":"quarto-resource-cell-table-tbl-subcap"},"quarto-resource-cell-table-tbl-colwidths":{"_internalId":3301,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3295,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"_internalId":3300,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: `true` or `false`, 'auto', an array of values, where each element must be a number","tags":{"contexts":["document-tables"],"engine":["knitr","jupyter"],"formats":["$pdf-all","$html-all"],"description":{"short":"Apply explicit table column widths","long":"Apply explicit table column widths for markdown grid tables and pipe\ntables that are more than `columns` characters wide (72 by default). \n\nSome formats (e.g. HTML) do an excellent job automatically sizing\ntable columns and so don't benefit much from column width specifications.\nOther formats (e.g. LaTeX) require table column sizes in order to \ncorrectly flow longer cell content (this is a major reason why tables \n> 72 columns wide are assigned explicit widths by Pandoc).\n\nThis can be specified as:\n\n- `auto`: Apply markdown table column widths except when there is a\n hyperlink in the table (which tends to throw off automatic\n calculation of column widths based on the markdown text width of cells).\n (`auto` is the default for HTML output formats)\n\n- `true`: Always apply markdown table widths (`true` is the default\n for all non-HTML formats)\n\n- `false`: Never apply markdown table widths.\n\n- An array of numbers (e.g. `[40, 30, 30]`): Array of explicit width percentages.\n"}},"documentation":"Prefix to be added before each line of text output.","$id":"quarto-resource-cell-table-tbl-colwidths"},"quarto-resource-cell-table-html-table-processing":{"_internalId":3304,"type":"enum","enum":["none"],"description":"be 'none'","completions":["none"],"exhaustiveCompletions":true,"documentation":"Class name(s) for text/console output","tags":{"description":"If `none`, do not process raw HTML table in cell output and leave it as-is"},"$id":"quarto-resource-cell-table-html-table-processing"},"quarto-resource-cell-textoutput-output":{"_internalId":3316,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3311,"type":"enum","enum":["asis"],"description":"be 'asis'","completions":["asis"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"},{"_internalId":3314,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, 'asis', a string, an object","tags":{"contexts":["document-execute"],"execute-only":true,"description":{"short":"Include the results of executing the code in the output (specify `asis` to\ntreat output as raw markdown with no enclosing containers).\n","long":"Include the results of executing the code in the output. Possible values:\n\n- `true`: Include results.\n- `false`: Do not include results.\n- `asis`: Treat output as raw markdown with no enclosing containers.\n"}},"documentation":"Attribute(s) for text/console output","$id":"quarto-resource-cell-textoutput-output"},"quarto-resource-cell-textoutput-warning":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":"Include warnings in rendered output."},"documentation":"Class name(s) for warning output","$id":"quarto-resource-cell-textoutput-warning"},"quarto-resource-cell-textoutput-error":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":"Include errors in the output (note that this implies that errors executing code\nwill not halt processing of the document).\n"},"documentation":"Attribute(s) for warning output","$id":"quarto-resource-cell-textoutput-error"},"quarto-resource-cell-textoutput-include":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"execute-only":true,"description":"Catch all for preventing any output (code or results) from being included in output.\n"},"documentation":"Class name(s) for message output","$id":"quarto-resource-cell-textoutput-include"},"quarto-resource-cell-textoutput-panel":{"_internalId":3325,"type":"enum","enum":["tabset","input","sidebar","fill","center"],"description":"be one of: `tabset`, `input`, `sidebar`, `fill`, `center`","completions":["tabset","input","sidebar","fill","center"],"exhaustiveCompletions":true,"documentation":"Attribute(s) for message output","tags":{"description":"Panel type for cell output (`tabset`, `input`, `sidebar`, `fill`, `center`)"},"$id":"quarto-resource-cell-textoutput-panel"},"quarto-resource-cell-textoutput-output-location":{"_internalId":3328,"type":"enum","enum":["default","fragment","slide","column","column-fragment"],"description":"be one of: `default`, `fragment`, `slide`, `column`, `column-fragment`","completions":["default","fragment","slide","column","column-fragment"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Location of output relative to the code that generated it (`default`, `fragment`, `slide`, `column`, or `column-location`)","long":"Location of output relative to the code that generated it. The possible values are as follows:\n\n- `default`: Normal flow of the slide after the code\n- `fragment`: In a fragment (not visible until you advance)\n- `slide`: On a new slide after the curent one\n- `column`: In an adjacent column \n- `column-fragment`: In an adjacent column (not visible until you advance)\n\nNote that this option is supported only for the `revealjs` format.\n"}},"documentation":"Class name(s) for error output","$id":"quarto-resource-cell-textoutput-output-location"},"quarto-resource-cell-textoutput-message":{"_internalId":3331,"type":"enum","enum":[true,false,"NA"],"description":"be one of: `true`, `false`, `NA`","completions":["true","false","NA"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Include messages in rendered output.","long":"Include messages in rendered output. Possible values are `true`, `false`, or `NA`. \nIf `true`, messages are included in the output. If `false`, messages are not included. \nIf `NA`, messages are not included in output but shown in the knitr log to console.\n"}},"documentation":"Attribute(s) for error output","$id":"quarto-resource-cell-textoutput-message"},"quarto-resource-cell-textoutput-results":{"_internalId":3334,"type":"enum","enum":["markup","asis","hold","hide",false],"description":"be one of: `markup`, `asis`, `hold`, `hide`, `false`","completions":["markup","asis","hold","hide","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"How to display text results","long":"How to display text results. Note that this option only applies to normal text output (not warnings,\nmessages, or errors). The possible values are as follows:\n\n- `markup`: Mark up text output with the appropriate environments\n depending on the output format. For example, if the text\n output is a character string `\"[1] 1 2 3\"`, the actual output that\n **knitr** produces will be:\n\n ```` md\n ```\n [1] 1 2 3\n ```\n ````\n\n In this case, `results: markup` means to put the text output in fenced\n code blocks (```` ``` ````).\n\n- `asis`: Write text output as-is, i.e., write the raw text results\n directly into the output document without any markups.\n\n ```` md\n ```{r}\n #| results: asis\n cat(\"I'm raw **Markdown** content.\\n\")\n ```\n ````\n\n- `hold`: Hold all pieces of text output in a chunk and flush them to the\n end of the chunk.\n\n- `hide` (or `false`): Hide text output.\n"}},"documentation":"Specifies that the page is an ‘about’ page and which template to use\nwhen laying out the page.","$id":"quarto-resource-cell-textoutput-results"},"quarto-resource-cell-textoutput-comment":{"type":"string","description":"be a string","tags":{"engine":"knitr","description":{"short":"Prefix to be added before each line of text output.","long":"Prefix to be added before each line of text output.\nBy default, the text output is commented out by `##`, so if\nreaders want to copy and run the source code from the output document, they\ncan select and copy everything from the chunk, since the text output is\nmasked in comments (and will be ignored when running the copied text). Set\n`comment: ''` to remove the default `##`.\n"}},"documentation":"Document title","$id":"quarto-resource-cell-textoutput-comment"},"quarto-resource-cell-textoutput-class-output":{"_internalId":3342,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3341,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for text/console output"},"documentation":"Identifies the subtitle of the document.","$id":"quarto-resource-cell-textoutput-class-output"},"quarto-resource-cell-textoutput-attr-output":{"_internalId":3348,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3347,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for text/console output"},"documentation":"Document date","$id":"quarto-resource-cell-textoutput-attr-output"},"quarto-resource-cell-textoutput-class-warning":{"_internalId":3354,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3353,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for warning output"},"documentation":"Date format for the document","$id":"quarto-resource-cell-textoutput-class-warning"},"quarto-resource-cell-textoutput-attr-warning":{"_internalId":3360,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3359,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for warning output"},"documentation":"Document date modified","$id":"quarto-resource-cell-textoutput-attr-warning"},"quarto-resource-cell-textoutput-class-message":{"_internalId":3366,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3365,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for message output"},"documentation":"Author or authors of the document","$id":"quarto-resource-cell-textoutput-class-message"},"quarto-resource-cell-textoutput-attr-message":{"_internalId":3372,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3371,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for message output"},"documentation":"The list of organizations with which contributors are affiliated.","$id":"quarto-resource-cell-textoutput-attr-message"},"quarto-resource-cell-textoutput-class-error":{"_internalId":3378,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3377,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Class name(s) for error output"},"documentation":"Licensing and copyright information.","$id":"quarto-resource-cell-textoutput-class-error"},"quarto-resource-cell-textoutput-attr-error":{"_internalId":3384,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3383,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"engine":"knitr","description":"Attribute(s) for error output"},"documentation":"Information concerning the article that identifies or describes\nit.","$id":"quarto-resource-cell-textoutput-attr-error"},"quarto-resource-document-about-about":{"_internalId":3393,"type":"anyOf","anyOf":[{"_internalId":3389,"type":"enum","enum":["jolla","trestles","solana","marquee","broadside"],"description":"be one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`","completions":["jolla","trestles","solana","marquee","broadside"],"exhaustiveCompletions":true},{"_internalId":3392,"type":"ref","$ref":"website-about","description":"be website-about"}],"description":"be at least one of: one of: `jolla`, `trestles`, `solana`, `marquee`, `broadside`, website-about","tags":{"formats":["$html-doc"],"description":{"short":"Specifies that the page is an 'about' page and which template to use when laying out the page.","long":"Specifies that the page is an 'about' page and which template to use when laying out the page.\n\nThe allowed values are either:\n\n- one of the possible template values (`jolla`, `trestles`, `solana`, `marquee`, or `broadside`))\n- an object describing the 'about' page in more detail. See [About Pages](https://quarto.org/docs/websites/website-about.html) for more.\n"}},"documentation":"Information on the journal in which the article is published.","$id":"quarto-resource-document-about-about"},"quarto-resource-document-attributes-title":{"type":"string","description":"be a string","documentation":"Author affiliations for the presentation.","tags":{"description":"Document title"},"$id":"quarto-resource-document-attributes-title"},"quarto-resource-document-attributes-subtitle":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$html-all","context","muse","odt","docx"],"description":"Identifies the subtitle of the document."},"documentation":"Summary of document","$id":"quarto-resource-document-attributes-subtitle"},"quarto-resource-document-attributes-date":{"_internalId":3400,"type":"ref","$ref":"date","description":"be date","documentation":"Title used to label document abstract","tags":{"description":"Document date"},"$id":"quarto-resource-document-attributes-date"},"quarto-resource-document-attributes-date-format":{"_internalId":3403,"type":"ref","$ref":"date-format","description":"be date-format","documentation":"Additional notes concerning the whole article. Added to the article’s\nfrontmatter via the <notes>\nelement.","tags":{"description":"Date format for the document"},"$id":"quarto-resource-document-attributes-date-format"},"quarto-resource-document-attributes-date-modified":{"_internalId":3406,"type":"ref","$ref":"date","description":"be date","tags":{"formats":["$html-doc"],"description":"Document date modified"},"documentation":"List of keywords. Items are used as contents of the <kwd>\nelement; the elements are grouped in a <kwd-group>\nwith the kwd-group-type\nvalue author.","$id":"quarto-resource-document-attributes-date-modified"},"quarto-resource-document-attributes-author":{"_internalId":3417,"type":"anyOf","anyOf":[{"_internalId":3415,"type":"anyOf","anyOf":[{"_internalId":3411,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":3416,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3415,"type":"anyOf","anyOf":[{"_internalId":3411,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"description":"Author or authors of the document"},"documentation":"Displays the document Digital Object Identifier in the header.","$id":"quarto-resource-document-attributes-author"},"quarto-resource-document-attributes-affiliation":{"_internalId":3428,"type":"anyOf","anyOf":[{"_internalId":3426,"type":"anyOf","anyOf":[{"_internalId":3422,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":3427,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3426,"type":"anyOf","anyOf":[{"_internalId":3422,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"formats":["$jats-all"],"description":{"short":"The list of organizations with which contributors are affiliated.","long":"The list of organizations with which contributors are\naffiliated. Each institution is added as an [``] element to\nthe author's contrib-group. See the Pandoc [JATS documentation](https://pandoc.org/jats.html) \nfor details on `affiliation` fields.\n"}},"documentation":"The contents of an acknowledgments footnote after the document\ntitle.","$id":"quarto-resource-document-attributes-affiliation"},"quarto-resource-document-attributes-copyright":{"_internalId":3429,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"formats":["$jats-all"],"description":{"short":"Licensing and copyright information.","long":"Licensing and copyright information. This information is\nrendered via the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/permissions.html) element.\nThe variables `type`, `link`, and `text` should always be used\ntogether. See the Pandoc [JATS documentation](https://pandoc.org/jats.html)\nfor details on `copyright` fields.\n"}},"documentation":"Order for document when included in a website automatic sidebar\nmenu.","$id":"quarto-resource-document-attributes-copyright"},"quarto-resource-document-attributes-article":{"_internalId":3431,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"formats":["$jats-all"],"description":{"short":"Information concerning the article that identifies or describes it.","long":"Information concerning the article that identifies or describes\nit. The key-value pairs within this map are typically used\nwithin the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/article-meta.html) element.\nSee the Pandoc [JATS documentation](https://pandoc.org/jats.html) for details on `article` fields.\n"}},"documentation":"Citation information for the document itself.","$id":"quarto-resource-document-attributes-article"},"quarto-resource-document-attributes-journal":{"_internalId":3433,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"formats":["$jats-all"],"description":{"short":"Information on the journal in which the article is published.","long":"Information on the journal in which the article is published.\nSee the Pandoc [JATS documentation](https://pandoc.org/jats.html) for details on `journal` fields.\n"}},"documentation":"Enable a code copy icon for code blocks.","$id":"quarto-resource-document-attributes-journal"},"quarto-resource-document-attributes-institute":{"_internalId":3445,"type":"anyOf","anyOf":[{"_internalId":3443,"type":"anyOf","anyOf":[{"_internalId":3439,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":3444,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":3443,"type":"anyOf","anyOf":[{"_internalId":3439,"type":"object","description":"be an object","properties":{},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"formats":["$html-pres","beamer"],"description":"Author affiliations for the presentation."},"documentation":"Enables hyper-linking of functions within code blocks to their online\ndocumentation.","$id":"quarto-resource-document-attributes-institute"},"quarto-resource-document-attributes-abstract":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$html-doc","$epub-all","$asciidoc-all","$jats-all","context","ms","odt","docx"],"description":"Summary of document"},"documentation":"The style to use when displaying code annotations","$id":"quarto-resource-document-attributes-abstract"},"quarto-resource-document-attributes-abstract-title":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","$epub-all","docx","typst"],"description":"Title used to label document abstract"},"documentation":"Include a code tools menu (for hiding and showing code).","$id":"quarto-resource-document-attributes-abstract-title"},"quarto-resource-document-attributes-notes":{"type":"string","description":"be a string","tags":{"formats":["$jats-all"],"description":"Additional notes concerning the whole article. Added to the\narticle's frontmatter via the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/notes.html) element.\n"},"documentation":"Show a thick left border on code blocks.","$id":"quarto-resource-document-attributes-notes"},"quarto-resource-document-attributes-tags":{"_internalId":3456,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$jats-all"],"description":"List of keywords. Items are used as contents of the [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/kwd.html) element; the elements are grouped in a [``](https://jats.nlm.nih.gov/publishing/tag-library/1.2/element/kwd-group.html) with the [`kwd-group-type`](https://jats.nlm.nih.gov/publishing/tag-library/1.2/attribute/kwd-group-type.html) value `author`."},"documentation":"Show a background color for code blocks.","$id":"quarto-resource-document-attributes-tags"},"quarto-resource-document-attributes-doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Displays the document Digital Object Identifier in the header."},"documentation":"Specifies the coloring style to be used in highlighted source\ncode.","$id":"quarto-resource-document-attributes-doi"},"quarto-resource-document-attributes-thanks":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","typst"],"description":"The contents of an acknowledgments footnote after the document title."},"documentation":"Deprecated: use syntax-highlighting instead.","$id":"quarto-resource-document-attributes-thanks"},"quarto-resource-document-attributes-order":{"type":"number","description":"be a number","documentation":"KDE language syntax definition file (XML)","tags":{"description":"Order for document when included in a website automatic sidebar menu."},"$id":"quarto-resource-document-attributes-order"},"quarto-resource-document-citation-citation":{"_internalId":3470,"type":"anyOf","anyOf":[{"_internalId":3467,"type":"ref","$ref":"citation-item","description":"be citation-item"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: citation-item, `true` or `false`","documentation":"KDE language syntax definition files (XML)","tags":{"description":{"short":"Citation information for the document itself.","long":"Citation information for the document itself specified as [CSL](https://docs.citationstyles.org/en/stable/specification.html) \nYAML in the document front matter.\n\nFor more on supported options, see [Citation Metadata](https://quarto.org/docs/reference/metadata/citation.html).\n"}},"$id":"quarto-resource-document-citation-citation"},"quarto-resource-document-code-code-copy":{"_internalId":3478,"type":"anyOf","anyOf":[{"_internalId":3475,"type":"enum","enum":["hover"],"description":"be 'hover'","completions":["hover"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: 'hover', `true` or `false`","tags":{"formats":["$html-all"],"description":{"short":"Enable a code copy icon for code blocks.","long":"Enable a code copy icon for code blocks. \n\n- `true`: Always show the icon\n- `false`: Never show the icon\n- `hover` (default): Show the icon when the mouse hovers over the code block\n"}},"documentation":"Use the listings package for LaTeX code blocks.","$id":"quarto-resource-document-code-code-copy"},"quarto-resource-document-code-code-link":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","formats":["$html-files"],"description":{"short":"Enables hyper-linking of functions within code blocks \nto their online documentation.\n","long":"Enables hyper-linking of functions within code blocks \nto their online documentation.\n\nCode linking is currently implemented only for the knitr engine \n(via the [downlit](https://downlit.r-lib.org/) package). \nA limitation of downlit currently prevents code linking \nif `code-line-numbers` is also `true`.\n"}},"documentation":"Specify classes to use for all indented code blocks","$id":"quarto-resource-document-code-code-link"},"quarto-resource-document-code-code-annotations":{"_internalId":3488,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3487,"type":"enum","enum":["hover","select","below","none"],"description":"be one of: `hover`, `select`, `below`, `none`","completions":["hover","select","below","none"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `hover`, `select`, `below`, `none`","documentation":"Sets the CSS color property.","tags":{"description":{"short":"The style to use when displaying code annotations","long":"The style to use when displaying code annotations. Set this value\nto false to hide code annotations.\n"}},"$id":"quarto-resource-document-code-code-annotations"},"quarto-resource-document-code-code-tools":{"_internalId":3507,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3506,"type":"object","description":"be an object","properties":{"source":{"_internalId":3501,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string"},"toggle":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},"caption":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["$html-doc"],"description":{"short":"Include a code tools menu (for hiding and showing code).","long":"Include a code tools menu (for hiding and showing code).\nUse `true` or `false` to enable or disable the standard code \ntools menu. Specify sub-properties `source`, `toggle`, and\n`caption` to customize the behavior and appearance of code tools.\n"}},"documentation":"Sets the color of hyperlinks in the document.","$id":"quarto-resource-document-code-code-tools"},"quarto-resource-document-code-code-block-border-left":{"_internalId":3514,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc","$pdf-all"],"description":{"short":"Show a thick left border on code blocks.","long":"Specifies to apply a left border on code blocks. Provide a hex color to specify that the border is\nenabled as well as the color of the border.\n"}},"documentation":"Sets the CSS background-color property on code elements\nand adds extra padding.","$id":"quarto-resource-document-code-code-block-border-left"},"quarto-resource-document-code-code-block-bg":{"_internalId":3521,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc","$pdf-all"],"description":{"short":"Show a background color for code blocks.","long":"Specifies to apply a background color on code blocks. Provide a hex color to specify that the background color is\nenabled as well as the color of the background.\n"}},"documentation":"Sets the CSS background-color property on the html\nelement.","$id":"quarto-resource-document-code-code-block-bg"},"quarto-resource-document-code-syntax-highlighting":{"_internalId":3533,"type":"anyOf","anyOf":[{"_internalId":3530,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string"},"dark":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true},{"type":"string","description":"be a string","completions":["a11y","arrow","atom-one","ayu","ayu-mirage","breeze","breezedark","dracula","espresso","github","gruvbox","haddock","idiomatic","kate","monochrome","monokai","none","nord","oblivion","printing","pygments","radical","solarized","tango","vim-dark","zenburn"]}],"description":"be at least one of: an object, a string","tags":{"formats":["$html-all","docx","ms","$pdf-all","typst"],"description":{"short":"Specifies the coloring style to be used in highlighted source code.","long":"Specifies the coloring style to be used in highlighted source code.\n\nValid values:\n\n- `none`: Disables syntax highlighting for code blocks.\n- `idiomatic`: Uses the format's native syntax highlighter\n (e.g., Typst's built-in highlighting, LaTeX `listings` package,\n or reveal.js highlight.js plugin).\n- A style name (e.g., `pygments`, `tango`, `github`): Uses\n Pandoc's skylighting with the specified theme.\n- A path to a `.theme` file: Uses a custom KDE syntax\n highlighting theme.\n\nFor adaptive light/dark themes, specify an object with `light`\nand `dark` properties pointing to theme files.\n"}},"documentation":"The color used for external links.","$id":"quarto-resource-document-code-syntax-highlighting"},"quarto-resource-document-code-highlight-style":{"_internalId":3545,"type":"anyOf","anyOf":[{"_internalId":3542,"type":"object","description":"be an object","properties":{"light":{"type":"string","description":"be a string"},"dark":{"type":"string","description":"be a string"}},"patternProperties":{},"closed":true},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string","tags":{"formats":["$html-all","docx","ms","$pdf-all","typst"],"description":{"short":"Deprecated: use `syntax-highlighting` instead.","long":"Deprecated: use `syntax-highlighting` instead.\n\nSpecifies the coloring style to be used in highlighted source code.\n"},"hidden":true},"documentation":"The color used for citation links.","$id":"quarto-resource-document-code-highlight-style"},"quarto-resource-document-code-syntax-definition":{"type":"string","description":"be a string","tags":{"formats":["$html-all","docx","ms","$pdf-all","typst"],"description":"KDE language syntax definition file (XML)","hidden":true},"documentation":"The color used for linked URLs using color options allowed by\nxcolor","$id":"quarto-resource-document-code-syntax-definition"},"quarto-resource-document-code-syntax-definitions":{"_internalId":3552,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$html-all","docx","ms","$pdf-all","typst"],"description":"KDE language syntax definition files (XML)"},"documentation":"The color used for links in the Table of Contents using color options\nallowed by xcolor","$id":"quarto-resource-document-code-syntax-definitions"},"quarto-resource-document-code-listings":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":{"short":"Use the listings package for LaTeX code blocks.","long":"Use the `listings` package for LaTeX code blocks. The package\ndoes not support multi-byte encoding for source code. To handle UTF-8\nyou would need to use a custom template. This issue is fully\ndocumented here: [Encoding issue with the listings package](https://en.wikibooks.org/wiki/LaTeX/Source_Code_Listings#Encoding_issue)\n"}},"documentation":"Add color to link text, automatically enabled if any of\nlinkcolor, filecolor, citecolor,\nurlcolor, or toccolor are set.","$id":"quarto-resource-document-code-listings"},"quarto-resource-document-code-indented-code-classes":{"_internalId":3559,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$html-all","docx","ms","$pdf-all"],"description":"Specify classes to use for all indented code blocks"},"documentation":"Color for links to other content within the document.","$id":"quarto-resource-document-code-indented-code-classes"},"quarto-resource-document-colors-fontcolor":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Sets the CSS `color` property."},"documentation":"Configuration for document commenting.","$id":"quarto-resource-document-colors-fontcolor"},"quarto-resource-document-colors-linkcolor":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all","typst"],"description":{"short":"Sets the color of hyperlinks in the document.","long":"For HTML output, sets the CSS `color` property on all links.\n\nFor LaTeX output, The color used for internal links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor),\nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n\nFor ConTeXt output, sets the color for both external links and links within the document.\n\nFor Typst output, sets the color of internal hyperlinks using Typst color syntax.\n"}},"documentation":"Configuration for cross-reference labels and prefixes.","$id":"quarto-resource-document-colors-linkcolor"},"quarto-resource-document-colors-monobackgroundcolor":{"type":"string","description":"be a string","tags":{"formats":["html","html4","html5","slidy","slideous","s5","dzslides"],"description":"Sets the CSS `background-color` property on code elements and adds extra padding."},"documentation":"A custom cross reference type. See Custom\nfor more details.","$id":"quarto-resource-document-colors-monobackgroundcolor"},"quarto-resource-document-colors-backgroundcolor":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Sets the CSS `background-color` property on the html element.\n"},"documentation":"The kind of cross reference (currently only “float” is\nsupported).","$id":"quarto-resource-document-colors-backgroundcolor"},"quarto-resource-document-colors-filecolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","typst"],"description":{"short":"The color used for external links.","long":"For LaTeX output, the color used for external links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor),\nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n\nFor Typst output, sets the color of external file links using Typst color syntax.\n"}},"documentation":"The prefix used in rendered references when referencing this\ntype.","$id":"quarto-resource-document-colors-filecolor"},"quarto-resource-document-colors-citecolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","typst"],"description":{"short":"The color used for citation links.","long":"For LaTeX output, the color used for citation links using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor),\nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n\nFor Typst output, sets the color of citation links using Typst color syntax.\n"}},"documentation":"The prefix used in rendered captions when referencing this type. If\nomitted, the field reference-prefix is used.","$id":"quarto-resource-document-colors-citecolor"},"quarto-resource-document-colors-urlcolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The color used for linked URLs using color options allowed by `xcolor`","long":"The color used for linked URLs using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"}},"documentation":"If false, use no space between crossref prefixes and numbering.","$id":"quarto-resource-document-colors-urlcolor"},"quarto-resource-document-colors-toccolor":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The color used for links in the Table of Contents using color options allowed by `xcolor`","long":"The color used for links in the Table of Contents using color options\nallowed by [`xcolor`](https://ctan.org/pkg/xcolor), \nincluding the `dvipsnames`, `svgnames`, and\n`x11names` lists.\n"}},"documentation":"The key used to prefix reference labels of this type, such as “fig”,\n“tbl”, “lst”, etc.","$id":"quarto-resource-document-colors-toccolor"},"quarto-resource-document-colors-colorlinks":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Add color to link text, automatically enabled if any of \n`linkcolor`, `filecolor`, `citecolor`, `urlcolor`, or `toccolor` are set.\n"},"documentation":"In LaTeX output, the name of the custom environment to be used.","$id":"quarto-resource-document-colors-colorlinks"},"quarto-resource-document-colors-contrastcolor":{"type":"string","description":"be a string","tags":{"formats":["context"],"description":{"short":"Color for links to other content within the document.","long":"Color for links to other content within the document. \n\nSee [ConTeXt Color](https://wiki.contextgarden.net/Color) for additional information.\n"}},"documentation":"In LaTeX output, the extension of the auxiliary file used by LaTeX to\ncollect names to be used in the custom “list of” command. If omitted, a\nstring with prefix lo and suffix with the value of\nref-type is used.","$id":"quarto-resource-document-colors-contrastcolor"},"quarto-resource-document-comments-comments":{"_internalId":3582,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration","tags":{"formats":["$html-files"],"description":"Configuration for document commenting."},"documentation":"The description of the crossreferenceable object to be used in the\ntitle of the “list of” command. If omitted, the field\nreference-prefix is used.","$id":"quarto-resource-document-comments-comments"},"quarto-resource-document-crossref-crossref":{"_internalId":3728,"type":"anyOf","anyOf":[{"_internalId":3587,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":3727,"type":"object","description":"be an object","properties":{"custom":{"_internalId":3615,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":3614,"type":"object","description":"be an object","properties":{"kind":{"_internalId":3596,"type":"enum","enum":["float"],"description":"be 'float'","completions":["float"],"exhaustiveCompletions":true,"tags":{"description":"The kind of cross reference (currently only \"float\" is supported)."},"documentation":"The delimiter used between the prefix and the caption."},"reference-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used in rendered references when referencing this type."},"documentation":"The title prefix used for figure captions."},"caption-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used in rendered captions when referencing this type. If omitted, the field `reference-prefix` is used."},"documentation":"The title prefix used for table captions."},"space-before-numbering":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"If false, use no space between crossref prefixes and numbering."},"documentation":"The title prefix used for equation captions."},"key":{"type":"string","description":"be a string","tags":{"description":"The key used to prefix reference labels of this type, such as \"fig\", \"tbl\", \"lst\", etc."},"documentation":"The title prefix used for listing captions."},"latex-env":{"type":"string","description":"be a string","tags":{"description":"In LaTeX output, the name of the custom environment to be used."},"documentation":"The title prefix used for theorem captions."},"latex-list-of-file-extension":{"type":"string","description":"be a string","tags":{"description":"In LaTeX output, the extension of the auxiliary file used by LaTeX to collect names to be used in the custom \"list of\" command. If omitted, a string with prefix `lo` and suffix with the value of `ref-type` is used."},"documentation":"The title prefix used for lemma captions."},"latex-list-of-description":{"type":"string","description":"be a string","tags":{"description":"The description of the crossreferenceable object to be used in the title of the \"list of\" command. If omitted, the field `reference-prefix` is used."},"documentation":"The title prefix used for corollary captions."},"caption-location":{"_internalId":3613,"type":"enum","enum":["top","bottom","margin"],"description":"be one of: `top`, `bottom`, `margin`","completions":["top","bottom","margin"],"exhaustiveCompletions":true,"tags":{"description":"The location of the caption relative to the crossreferenceable content."},"documentation":"The title prefix used for proposition captions."}},"patternProperties":{},"required":["kind","reference-prefix","key"],"closed":true,"tags":{"description":"A custom cross reference type. See [Custom](https://quarto.org/docs/reference/metadata/crossref.html#custom) for more details."},"documentation":"Use top level sections (H1) in this document as chapters."}},"chapters":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Use top level sections (H1) in this document as chapters."},"documentation":"The title prefix used for conjecture captions."},"title-delim":{"type":"string","description":"be a string","tags":{"description":"The delimiter used between the prefix and the caption."},"documentation":"The title prefix used for definition captions."},"fig-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for figure captions."},"documentation":"The title prefix used for example captions."},"tbl-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for table captions."},"documentation":"The title prefix used for exercise captions."},"eq-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for equation captions."},"documentation":"The prefix used for an inline reference to a figure."},"lst-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for listing captions."},"documentation":"The prefix used for an inline reference to a table."},"thm-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for theorem captions."},"documentation":"The prefix used for an inline reference to an equation."},"lem-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for lemma captions."},"documentation":"The prefix used for an inline reference to a section."},"cor-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for corollary captions."},"documentation":"The prefix used for an inline reference to a listing."},"prp-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for proposition captions."},"documentation":"The prefix used for an inline reference to a theorem."},"cnj-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for conjecture captions."},"documentation":"The prefix used for an inline reference to a lemma."},"def-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for definition captions."},"documentation":"The prefix used for an inline reference to a corollary."},"exm-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for example captions."},"documentation":"The prefix used for an inline reference to a proposition."},"exr-title":{"type":"string","description":"be a string","tags":{"description":"The title prefix used for exercise captions."},"documentation":"The prefix used for an inline reference to a conjecture."},"fig-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a figure."},"documentation":"The prefix used for an inline reference to a definition."},"tbl-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a table."},"documentation":"The prefix used for an inline reference to an example."},"eq-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to an equation."},"documentation":"The prefix used for an inline reference to an exercise."},"sec-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a section."},"documentation":"The numbering scheme used for figures."},"lst-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a listing."},"documentation":"The numbering scheme used for tables."},"thm-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a theorem."},"documentation":"The numbering scheme used for equations."},"lem-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a lemma."},"documentation":"The numbering scheme used for sections."},"cor-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a corollary."},"documentation":"The numbering scheme used for listings."},"prp-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a proposition."},"documentation":"The numbering scheme used for theorems."},"cnj-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a conjecture."},"documentation":"The numbering scheme used for lemmas."},"def-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to a definition."},"documentation":"The numbering scheme used for corollaries."},"exm-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to an example."},"documentation":"The numbering scheme used for propositions."},"exr-prefix":{"type":"string","description":"be a string","tags":{"description":"The prefix used for an inline reference to an exercise."},"documentation":"The numbering scheme used for conjectures."},"fig-labels":{"_internalId":3672,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for figures."},"documentation":"The numbering scheme used for definitions."},"tbl-labels":{"_internalId":3675,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for tables."},"documentation":"The numbering scheme used for examples."},"eq-labels":{"_internalId":3678,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for equations."},"documentation":"The numbering scheme used for exercises."},"sec-labels":{"_internalId":3681,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for sections."},"documentation":"The title used for the list of figures."},"lst-labels":{"_internalId":3684,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for listings."},"documentation":"The title used for the list of tables."},"thm-labels":{"_internalId":3687,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for theorems."},"documentation":"The title used for the list of listings."},"lem-labels":{"_internalId":3690,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for lemmas."},"documentation":"The number scheme used for references."},"cor-labels":{"_internalId":3693,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for corollaries."},"documentation":"The number scheme used for sub references."},"prp-labels":{"_internalId":3696,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for propositions."},"documentation":"Whether cross references should be hyper-linked."},"cnj-labels":{"_internalId":3699,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for conjectures."},"documentation":"The title used for appendix."},"def-labels":{"_internalId":3702,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for definitions."},"documentation":"The delimiter beween appendix number and title."},"exm-labels":{"_internalId":3705,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for examples."},"documentation":"Enables a hover popup for cross references that shows the item being\nreferenced."},"exr-labels":{"_internalId":3708,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The numbering scheme used for exercises."},"documentation":"Logo image(s) (placed on the left side of the navigation bar)"},"lof-title":{"type":"string","description":"be a string","tags":{"description":"The title used for the list of figures."},"documentation":"Default orientation for dashboard content (default\nrows)"},"lot-title":{"type":"string","description":"be a string","tags":{"description":"The title used for the list of tables."},"documentation":"Use scrolling rather than fill layout (default:\nfalse)"},"lol-title":{"type":"string","description":"be a string","tags":{"description":"The title used for the list of listings."},"documentation":"Make card content expandable (default: true)"},"labels":{"_internalId":3717,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The number scheme used for references."},"documentation":"Links to display on the dashboard navigation bar"},"subref-labels":{"_internalId":3720,"type":"ref","$ref":"crossref-labels-schema","description":"be crossref-labels-schema","tags":{"description":"The number scheme used for sub references."},"documentation":"Visual editor configuration"},"ref-hyperlink":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether cross references should be hyper-linked."},"documentation":"Default editing mode for document"},"appendix-title":{"type":"string","description":"be a string","tags":{"description":"The title used for appendix."},"documentation":"Markdown writing options for visual editor"},"appendix-delim":{"type":"string","description":"be a string","tags":{"description":"The delimiter beween appendix number and title."},"documentation":"A column number (e.g. 72), sentence, or\nnone"}},"patternProperties":{},"closed":true}],"description":"be at least one of: 'false', an object","documentation":"The location of the caption relative to the crossreferenceable\ncontent.","tags":{"description":{"short":"Configuration for cross-reference labels and prefixes.","long":"Configuration for cross-reference labels and prefixes. See [Cross-Reference Options](https://quarto.org/docs/reference/metadata/crossref.html) for more details."}},"$id":"quarto-resource-document-crossref-crossref"},"quarto-resource-document-crossref-crossrefs-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables a hover popup for cross references that shows the item being referenced."},"documentation":"Write standard visual editor markdown from source mode.","$id":"quarto-resource-document-crossref-crossrefs-hover"},"quarto-resource-document-dashboard-logo":{"_internalId":3733,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"formats":["dashboard"],"description":"Logo image(s) (placed on the left side of the navigation bar)"},"documentation":"Reference writing options for visual editor","$id":"quarto-resource-document-dashboard-logo"},"quarto-resource-document-dashboard-orientation":{"_internalId":3736,"type":"enum","enum":["rows","columns"],"description":"be one of: `rows`, `columns`","completions":["rows","columns"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":"Default orientation for dashboard content (default `rows`)"},"documentation":"Location to write references (block,\nsection, or document)","$id":"quarto-resource-document-dashboard-orientation"},"quarto-resource-document-dashboard-scrolling":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":"Use scrolling rather than fill layout (default: `false`)"},"documentation":"Write markdown links as references rather than inline.","$id":"quarto-resource-document-dashboard-scrolling"},"quarto-resource-document-dashboard-expandable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["dashboard"],"description":"Make card content expandable (default: `true`)"},"documentation":"Unique prefix for references (none to prevent automatic\nprefixes)","$id":"quarto-resource-document-dashboard-expandable"},"quarto-resource-document-dashboard-nav-buttons":{"_internalId":3766,"type":"anyOf","anyOf":[{"_internalId":3764,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3763,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string"},"href":{"type":"string","description":"be a string"},"icon":{"type":"string","description":"be a string"},"rel":{"type":"string","description":"be a string"},"target":{"type":"string","description":"be a string"},"title":{"type":"string","description":"be a string"},"aria-label":{"type":"string","description":"be a string"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention text,href,icon,rel,target,title,aria-label","type":"string","pattern":"(?!(^aria_label$|^ariaLabel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object"},{"_internalId":3765,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":3764,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3763,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string"},"href":{"type":"string","description":"be a string"},"icon":{"type":"string","description":"be a string"},"rel":{"type":"string","description":"be a string"},"target":{"type":"string","description":"be a string"},"title":{"type":"string","description":"be a string"},"aria-label":{"type":"string","description":"be a string"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention text,href,icon,rel,target,title,aria-label","type":"string","pattern":"(?!(^aria_label$|^ariaLabel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"formats":["dashboard"],"description":"Links to display on the dashboard navigation bar"},"documentation":"Automatically re-render for preview whenever document is saved (note\nthat this requires a preview for the saved document be already running).\nThis option currently works only within VS Code.","$id":"quarto-resource-document-dashboard-nav-buttons"},"quarto-resource-document-editor-editor":{"_internalId":3807,"type":"anyOf","anyOf":[{"_internalId":3771,"type":"enum","enum":["source","visual"],"description":"be one of: `source`, `visual`","completions":["source","visual"],"exhaustiveCompletions":true},{"_internalId":3806,"type":"object","description":"be an object","properties":{"mode":{"_internalId":3776,"type":"enum","enum":["source","visual"],"description":"be one of: `source`, `visual`","completions":["source","visual"],"exhaustiveCompletions":true,"tags":{"description":"Default editing mode for document"},"documentation":"Determines where chunk output is shown in the editor."},"markdown":{"_internalId":3801,"type":"object","description":"be an object","properties":{"wrap":{"_internalId":3786,"type":"anyOf","anyOf":[{"_internalId":3783,"type":"enum","enum":["sentence","none"],"description":"be one of: `sentence`, `none`","completions":["sentence","none"],"exhaustiveCompletions":true},{"type":"number","description":"be a number"}],"description":"be at least one of: one of: `sentence`, `none`, a number","tags":{"description":"A column number (e.g. 72), `sentence`, or `none`"},"documentation":"The identifier for this publication."},"canonical":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Write standard visual editor markdown from source mode."},"documentation":"The identifier value."},"references":{"_internalId":3800,"type":"object","description":"be an object","properties":{"location":{"_internalId":3795,"type":"enum","enum":["block","section","document"],"description":"be one of: `block`, `section`, `document`","completions":["block","section","document"],"exhaustiveCompletions":true,"tags":{"description":"Location to write references (`block`, `section`, or `document`)"},"documentation":"Creators of this publication."},"links":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Write markdown links as references rather than inline."},"documentation":"Contributors to this publication."},"prefix":{"type":"string","description":"be a string","tags":{"description":"Unique prefix for references (`none` to prevent automatic prefixes)"},"documentation":"Text describing the specialized type of this publication."}},"patternProperties":{},"tags":{"description":"Reference writing options for visual editor"},"documentation":"The identifier schema (e.g. DOI, ISBN-A,\netc.)"}},"patternProperties":{},"tags":{"description":"Markdown writing options for visual editor"},"documentation":"Enable (true) or disable (false) Zotero for\na document. Alternatively, provide a list of one or more Zotero group\nlibraries to use with the document."},"render-on-save":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"engine":["jupyter"],"description":"Automatically re-render for preview whenever document is saved (note that this requires a preview\nfor the saved document be already running). This option currently works only within VS Code.\n"},"documentation":"Text describing the format of this publication."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention mode,markdown,render-on-save","type":"string","pattern":"(?!(^render_on_save$|^renderOnSave$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true,"hidden":true},"completions":[]}],"description":"be at least one of: one of: `source`, `visual`, an object","documentation":"Editor-specific options (used by RStudio and Positron).","tags":{"description":"Visual editor configuration"},"$id":"quarto-resource-document-editor-editor"},"quarto-resource-document-editor-editor_options":{"_internalId":3813,"type":"object","description":"be an object","properties":{"chunk_output_type":{"_internalId":3812,"type":"enum","enum":["inline","console"],"description":"be one of: `inline`, `console`","completions":["inline","console"],"exhaustiveCompletions":true,"tags":{"description":"Determines where chunk output is shown in the editor."},"documentation":"Text describing the coverage of this publication."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention chunk_output_type","type":"string","pattern":"(?!(^chunk-output-type$|^chunkOutputType$))","tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true,"description":{"short":"Editor-specific options (used by RStudio and Positron).","long":"Editor-specific options that control IDE behavior for this document.\nThese options are used by RStudio and Positron to configure\nper-document editor settings.\n"}},"documentation":"Text describing the relation of this publication.","$id":"quarto-resource-document-editor-editor_options"},"quarto-resource-document-editor-zotero":{"_internalId":3824,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3823,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3822,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: a string, an array of values, where each element must be a string","documentation":"Text describing the rights of this publication.","tags":{"description":"Enable (`true`) or disable (`false`) Zotero for a document. Alternatively, provide a list of one or\nmore Zotero group libraries to use with the document.\n"},"$id":"quarto-resource-document-editor-zotero"},"quarto-resource-document-epub-identifier":{"_internalId":3837,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3836,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The identifier value."},"documentation":"Indicates the numeric position in which this publication belongs\nrelative to other works belonging to the same\nbelongs-to-collection field."},"schema":{"_internalId":3835,"type":"enum","enum":["ISBN-10","GTIN-13","UPC","ISMN-10","DOI","LCCN","GTIN-14","ISBN-13","Legal deposit number","URN","OCLC","ISMN-13","ISBN-A","JP","OLCC"],"description":"be one of: `ISBN-10`, `GTIN-13`, `UPC`, `ISMN-10`, `DOI`, `LCCN`, `GTIN-14`, `ISBN-13`, `Legal deposit number`, `URN`, `OCLC`, `ISMN-13`, `ISBN-A`, `JP`, `OLCC`","completions":["ISBN-10","GTIN-13","UPC","ISMN-10","DOI","LCCN","GTIN-14","ISBN-13","Legal deposit number","URN","OCLC","ISMN-13","ISBN-A","JP","OLCC"],"exhaustiveCompletions":true,"tags":{"description":"The identifier schema (e.g. `DOI`, `ISBN-A`, etc.)"},"documentation":"Sets the global direction in which content flows (ltr or\nrtl)"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","tags":{"formats":["$epub-all"],"description":"The identifier for this publication."},"documentation":"Identifies the name of a collection to which the EPUB Publication\nbelongs.","$id":"quarto-resource-document-epub-identifier"},"quarto-resource-document-epub-creator":{"_internalId":3840,"type":"ref","$ref":"epub-contributor","description":"be epub-contributor","tags":{"formats":["$epub-all"],"description":"Creators of this publication."},"documentation":"iBooks specific metadata options.","$id":"quarto-resource-document-epub-creator"},"quarto-resource-document-epub-contributor":{"_internalId":3843,"type":"ref","$ref":"epub-contributor","description":"be epub-contributor","tags":{"formats":["$epub-all"],"description":"Contributors to this publication."},"documentation":"What is new in this version of the book.","$id":"quarto-resource-document-epub-contributor"},"quarto-resource-document-epub-type":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":{"short":"Text describing the specialized type of this publication.","long":"Text describing the specialized type of this publication.\n\nAn informative registry of specialized EPUB Publication \ntypes for use with this element is maintained in the \n[TypesRegistry](https://www.w3.org/publishing/epub32/epub-packages.html#bib-typesregistry), \nbut Authors may use any text string as a value.\n"}},"documentation":"Whether this book provides embedded fonts in a flowing or fixed\nlayout book.","$id":"quarto-resource-document-epub-type"},"quarto-resource-document-epub-format":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the format of this publication."},"documentation":"The scroll direction for this book (vertical,\nhorizontal, or default)","$id":"quarto-resource-document-epub-format"},"quarto-resource-document-epub-relation":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the relation of this publication."},"documentation":"Look in the specified XML file for metadata for the EPUB. The file\nshould contain a series of Dublin\nCore elements.","$id":"quarto-resource-document-epub-relation"},"quarto-resource-document-epub-coverage":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the coverage of this publication."},"documentation":"Specify the subdirectory in the OCF container that is to hold the\nEPUB-specific contents. The default is EPUB. To put the\nEPUB contents in the top level, use an empty string.","$id":"quarto-resource-document-epub-coverage"},"quarto-resource-document-epub-rights":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Text describing the rights of this publication."},"documentation":"Embed the specified fonts in the EPUB","$id":"quarto-resource-document-epub-rights"},"quarto-resource-document-epub-belongs-to-collection":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Identifies the name of a collection to which the EPUB Publication belongs."},"documentation":"Specify the heading level at which to split the EPUB into separate\nchapter files.","$id":"quarto-resource-document-epub-belongs-to-collection"},"quarto-resource-document-epub-group-position":{"type":"number","description":"be a number","tags":{"formats":["$epub-all"],"description":"Indicates the numeric position in which this publication \nbelongs relative to other works belonging to the same \n`belongs-to-collection` field.\n"},"documentation":"Use the specified image as the EPUB cover. It is recommended that the\nimage be less than 1000px in width and height.","$id":"quarto-resource-document-epub-group-position"},"quarto-resource-document-epub-page-progression-direction":{"_internalId":3860,"type":"enum","enum":["ltr","rtl"],"description":"be one of: `ltr`, `rtl`","completions":["ltr","rtl"],"exhaustiveCompletions":true,"tags":{"formats":["$epub-all"],"description":"Sets the global direction in which content flows (`ltr` or `rtl`)"},"documentation":"If false, disables the generation of a title page.","$id":"quarto-resource-document-epub-page-progression-direction"},"quarto-resource-document-epub-ibooks":{"_internalId":3870,"type":"object","description":"be an object","properties":{"version":{"type":"string","description":"be a string","tags":{"description":"What is new in this version of the book."},"documentation":"Configures the Jupyter engine."},"specified-fonts":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this book provides embedded fonts in a flowing or fixed layout book."},"documentation":"The name to display in the UI."},"scroll-axis":{"_internalId":3869,"type":"enum","enum":["vertical","horizontal","default"],"description":"be one of: `vertical`, `horizontal`, `default`","completions":["vertical","horizontal","default"],"exhaustiveCompletions":true,"tags":{"description":"The scroll direction for this book (`vertical`, `horizontal`, or `default`)"},"documentation":"The name of the language the kernel implements."}},"patternProperties":{},"closed":true,"tags":{"formats":["$epub-all"],"description":"iBooks specific metadata options."},"documentation":"Engine used for executable code blocks.","$id":"quarto-resource-document-epub-ibooks"},"quarto-resource-document-epub-epub-metadata":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":{"short":"Look in the specified XML file for metadata for the EPUB.\nThe file should contain a series of [Dublin Core elements](https://www.dublincore.org/specifications/dublin-core/dces/).\n","long":"Look in the specified XML file for metadata for the EPUB.\nThe file should contain a series of [Dublin Core elements](https://www.dublincore.org/specifications/dublin-core/dces/).\nFor example:\n\n```xml\nCreative Commons\nes-AR\n```\n\nBy default, pandoc will include the following metadata elements:\n`` (from the document title), `` (from the\ndocument authors), `` (from the document date, which should\nbe in [ISO 8601 format]), `` (from the `lang`\nvariable, or, if is not set, the locale), and `` (a randomly generated UUID). Any of these may be\noverridden by elements in the metadata file.\n\nNote: if the source document is Markdown, a YAML metadata block\nin the document can be used instead.\n"}},"documentation":"The name of the kernel.","$id":"quarto-resource-document-epub-epub-metadata"},"quarto-resource-document-epub-epub-subdirectory":{"_internalId":3879,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, the null value","tags":{"formats":["$epub-all"],"description":"Specify the subdirectory in the OCF container that is to hold the\nEPUB-specific contents. The default is `EPUB`. To put the EPUB \ncontents in the top level, use an empty string.\n"},"documentation":"Configures the Julia engine.","$id":"quarto-resource-document-epub-epub-subdirectory"},"quarto-resource-document-epub-epub-fonts":{"_internalId":3884,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$epub-all"],"description":{"short":"Embed the specified fonts in the EPUB","long":"Embed the specified fonts in the EPUB. Wildcards can also be used: for example,\n`DejaVuSans-*.ttf`. To use the embedded fonts, you will need to add declarations\nlike the following to your CSS:\n\n```css\n@font-face {\n font-family: DejaVuSans;\n font-style: normal;\n font-weight: normal;\n src:url(\"DejaVuSans-Regular.ttf\");\n}\n```\n"}},"documentation":"Arguments to pass to the Julia worker process.","$id":"quarto-resource-document-epub-epub-fonts"},"quarto-resource-document-epub-epub-chapter-level":{"type":"number","description":"be a number","tags":{"formats":["$epub-all"],"description":{"short":"Specify the heading level at which to split the EPUB into separate\nchapter files.\n","long":"Specify the heading level at which to split the EPUB into separate\nchapter files. The default is to split into chapters at level-1\nheadings. This option only affects the internal composition of the\nEPUB, not the way chapters and sections are displayed to users. Some\nreaders may be slow if the chapter files are too large, so for large\ndocuments with few level-1 headings, one might want to use a chapter\nlevel of 2 or 3.\n"}},"documentation":"Environment variables to pass to the Julia worker process.","$id":"quarto-resource-document-epub-epub-chapter-level"},"quarto-resource-document-epub-epub-cover-image":{"type":"string","description":"be a string","tags":{"formats":["$epub-all"],"description":"Use the specified image as the EPUB cover. It is recommended\nthat the image be less than 1000px in width and height.\n"},"documentation":"Set Knitr options.","$id":"quarto-resource-document-epub-epub-cover-image"},"quarto-resource-document-epub-epub-title-page":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$epub-all"],"description":"If false, disables the generation of a title page."},"documentation":"Knit options.","$id":"quarto-resource-document-epub-epub-title-page"},"quarto-resource-document-execute-engine":{"type":"string","description":"be a string","completions":["jupyter","knitr","julia"],"documentation":"Knitr chunk options.","tags":{"description":"Engine used for executable code blocks."},"$id":"quarto-resource-document-execute-engine"},"quarto-resource-document-execute-jupyter":{"_internalId":3911,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"},{"_internalId":3910,"type":"object","description":"be an object","properties":{"kernelspec":{"_internalId":3909,"type":"object","description":"be an object","properties":{"display_name":{"type":"string","description":"be a string","tags":{"description":"The name to display in the UI."},"documentation":"Re-use previous computational output when rendering"},"language":{"type":"string","description":"be a string","tags":{"description":"The name of the language the kernel implements."},"documentation":"Document server"},"name":{"type":"string","description":"be a string","tags":{"description":"The name of the kernel."},"documentation":"Type of server to run behind the document\n(e.g. shiny)"}},"patternProperties":{},"required":["display_name","language","name"],"propertyNames":{"errorMessage":"property ${value} does not match case convention display_name,language,name","type":"string","pattern":"(?!(^display-name$|^displayName$))","tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["underscore_case"],"error-importance":-5,"case-detection":true}}},"patternProperties":{},"completions":[],"tags":{"hidden":true}}],"description":"be at least one of: `true` or `false`, a string, an object","documentation":"Cache results of computations.","tags":{"description":"Configures the Jupyter engine."},"$id":"quarto-resource-document-execute-jupyter"},"quarto-resource-document-execute-julia":{"_internalId":3928,"type":"object","description":"be an object","properties":{"exeflags":{"_internalId":3920,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Arguments to pass to the Julia worker process."},"documentation":"Server reactive values to import into OJS."},"env":{"_internalId":3927,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Environment variables to pass to the Julia worker process."},"documentation":"Run Jupyter kernels within a peristent daemon (to mitigate kernel\nstartup time)."}},"patternProperties":{},"documentation":"OJS variables to export to server.","tags":{"description":"Configures the Julia engine."},"$id":"quarto-resource-document-execute-julia"},"quarto-resource-document-execute-knitr":{"_internalId":3942,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3941,"type":"object","description":"be an object","properties":{"opts_knit":{"_internalId":3937,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Knit options."},"documentation":"Enable code cell execution."},"opts_chunk":{"_internalId":3940,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Knitr chunk options."},"documentation":"Execute code cell execution in Jupyter notebooks."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","documentation":"Restart any running Jupyter daemon before rendering.","tags":{"description":"Set Knitr options."},"$id":"quarto-resource-document-execute-knitr"},"quarto-resource-document-execute-cache":{"_internalId":3950,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3949,"type":"enum","enum":["refresh"],"description":"be 'refresh'","completions":["refresh"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'refresh'","tags":{"execute-only":true,"description":{"short":"Cache results of computations.","long":"Cache results of computations (using the [knitr cache](https://yihui.org/knitr/demo/cache/) \nfor R documents, and [Jupyter Cache](https://jupyter-cache.readthedocs.io/en/latest/) \nfor Jupyter documents).\n\nNote that cache invalidation is triggered by changes in chunk source code \n(or other cache attributes you've defined). \n\n- `true`: Cache results\n- `false`: Do not cache results\n- `refresh`: Force a refresh of the cache even if has not been otherwise invalidated.\n"}},"documentation":"Show code-execution related debug information.","$id":"quarto-resource-document-execute-cache"},"quarto-resource-document-execute-freeze":{"_internalId":3958,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":3957,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'auto'","tags":{"execute-only":true,"description":{"short":"Re-use previous computational output when rendering","long":"Control the re-use of previous computational output when rendering.\n\n- `true`: Never recompute previously generated computational output during a global project render\n- `false` (default): Recompute previously generated computational output\n- `auto`: Re-compute previously generated computational output only in case their source file changes\n"}},"documentation":"Default width for figures generated by Matplotlib or R graphics","$id":"quarto-resource-document-execute-freeze"},"quarto-resource-document-execute-server":{"_internalId":3982,"type":"anyOf","anyOf":[{"_internalId":3963,"type":"enum","enum":["shiny"],"description":"be 'shiny'","completions":["shiny"],"exhaustiveCompletions":true},{"_internalId":3981,"type":"object","description":"be an object","properties":{"type":{"_internalId":3968,"type":"enum","enum":["shiny"],"description":"be 'shiny'","completions":["shiny"],"exhaustiveCompletions":true,"tags":{"description":"Type of server to run behind the document (e.g. `shiny`)"},"documentation":"Default format for figures generated by Matplotlib or R graphics\n(retina, png, jpeg,\nsvg, or pdf)"},"ojs-export":{"_internalId":3974,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3973,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"OJS variables to export to server."},"documentation":"Default DPI for figures generated by Matplotlib or R graphics"},"ojs-import":{"_internalId":3980,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":3979,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Server reactive values to import into OJS."},"documentation":"The aspect ratio of the plot, i.e., the ratio of height/width."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,ojs-export,ojs-import","type":"string","pattern":"(?!(^ojs_export$|^ojsExport$|^ojs_import$|^ojsImport$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: 'shiny', an object","documentation":"Default height for figures generated by Matplotlib or R graphics","tags":{"description":"Document server","hidden":true},"$id":"quarto-resource-document-execute-server"},"quarto-resource-document-execute-daemon":{"_internalId":3989,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a number, `true` or `false`","documentation":"Whether to make images in this document responsive.","tags":{"description":{"short":"Run Jupyter kernels within a peristent daemon (to mitigate kernel startup time).","long":"Run Jupyter kernels within a peristent daemon (to mitigate kernel startup time).\nBy default a daemon with a timeout of 300 seconds will be used. Set `daemon`\nto another timeout value or to `false` to disable it altogether.\n"},"hidden":true},"$id":"quarto-resource-document-execute-daemon"},"quarto-resource-document-execute-daemon-restart":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Sets the main font for the document.","tags":{"description":"Restart any running Jupyter daemon before rendering.","hidden":true},"$id":"quarto-resource-document-execute-daemon-restart"},"quarto-resource-document-execute-enabled":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Sets the font used for when displaying code.","tags":{"description":"Enable code cell execution.","hidden":true},"$id":"quarto-resource-document-execute-enabled"},"quarto-resource-document-execute-ipynb":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Sets the font used for code in Typst output.","tags":{"description":"Execute code cell execution in Jupyter notebooks.","hidden":true},"$id":"quarto-resource-document-execute-ipynb"},"quarto-resource-document-execute-debug":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Sets the main font size for the document.","tags":{"description":"Show code-execution related debug information.","hidden":true},"$id":"quarto-resource-document-execute-debug"},"quarto-resource-document-figures-fig-width":{"type":"number","description":"be a number","documentation":"Allows font encoding to be specified through fontenc\npackage.","tags":{"description":{"short":"Default width for figures generated by Matplotlib or R graphics","long":"Default width for figures generated by Matplotlib or R graphics.\n\nNote that with the Jupyter engine, this option has no effect when\nprovided at the cell level; it can only be provided with\ndocument or project metadata.\n"}},"$id":"quarto-resource-document-figures-fig-width"},"quarto-resource-document-figures-fig-height":{"type":"number","description":"be a number","documentation":"Font package to use when compiling a PDF with the\npdflatex pdf-engine.","tags":{"description":{"short":"Default height for figures generated by Matplotlib or R graphics","long":"Default height for figures generated by Matplotlib or R graphics.\n\nNote that with the Jupyter engine, this option has no effect when\nprovided at the cell level; it can only be provided with\ndocument or project metadata.\n"}},"$id":"quarto-resource-document-figures-fig-height"},"quarto-resource-document-figures-fig-format":{"_internalId":4004,"type":"enum","enum":["retina","png","jpeg","svg","pdf"],"description":"be one of: `retina`, `png`, `jpeg`, `svg`, `pdf`","completions":["retina","png","jpeg","svg","pdf"],"exhaustiveCompletions":true,"documentation":"Options for the package used as fontfamily.","tags":{"description":"Default format for figures generated by Matplotlib or R graphics (`retina`, `png`, `jpeg`, `svg`, or `pdf`)"},"$id":"quarto-resource-document-figures-fig-format"},"quarto-resource-document-figures-fig-dpi":{"type":"number","description":"be a number","documentation":"The sans serif font family for use with xelatex or\nlualatex.","tags":{"description":{"short":"Default DPI for figures generated by Matplotlib or R graphics","long":"Default DPI for figures generated by Matplotlib or R graphics.\n\nNote that with the Jupyter engine, this option has no effect when\nprovided at the cell level; it can only be provided with\ndocument or project metadata.\n"}},"$id":"quarto-resource-document-figures-fig-dpi"},"quarto-resource-document-figures-fig-asp":{"type":"number","description":"be a number","tags":{"engine":"knitr","description":{"short":"The aspect ratio of the plot, i.e., the ratio of height/width.\n","long":"The aspect ratio of the plot, i.e., the ratio of height/width. When `fig-asp` is specified,\nthe height of a plot (the option `fig-height`) is calculated from `fig-width * fig-asp`.\n\nThe `fig-asp` option is only available within the knitr engine.\n"}},"documentation":"The math font family for use with xelatex,\nlualatex, or Typst.","$id":"quarto-resource-document-figures-fig-asp"},"quarto-resource-document-figures-fig-responsive":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-all"],"description":"Whether to make images in this document responsive."},"documentation":"The CJK main font family for use with xelatex or\nlualatex.","$id":"quarto-resource-document-figures-fig-responsive"},"quarto-resource-document-fonts-mainfont":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all","typst"],"description":{"short":"Sets the main font for the document.","long":"For HTML output, sets the CSS `font-family` on the HTML element.\n\nFor LaTeX output, the main font family for use with `xelatex` or \n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package. \n\nFor ConTeXt output, the main font family. Use the name of any \nsystem font. See [ConTeXt Fonts](https://wiki.contextgarden.net/Fonts) for more\ninformation.\n"}},"documentation":"The main font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-mainfont"},"quarto-resource-document-fonts-monofont":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all"],"description":{"short":"Sets the font used for when displaying code.","long":"For HTML output, sets the CSS font-family property on code elements.\n\nFor PowerPoint output, sets the font used for code.\n\nFor LaTeX output, the monospace font family for use with `xelatex` or \n`lualatex`: take the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package. \n\nFor ConTeXt output, the monspace font family. Use the name of any \nsystem font. See [ConTeXt Fonts](https://wiki.contextgarden.net/Fonts) for more\ninformation.\n"}},"documentation":"The sans serif font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-monofont"},"quarto-resource-document-fonts-codefont":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":{"short":"Sets the font used for code in Typst output.","long":"For Typst output, sets the font used for displaying code. Takes\nthe name of any font available to Typst (system fonts or fonts in\ndirectories specified by `font-paths`).\n"}},"documentation":"The monospace font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-codefont"},"quarto-resource-document-fonts-fontsize":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","context","$pdf-all","typst"],"description":{"short":"Sets the main font size for the document.","long":"For HTML output, sets the base CSS `font-size` property.\n\nFor LaTeX and ConTeXt output, sets the font size for the document body text.\n"}},"documentation":"The math font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-fontsize"},"quarto-resource-document-fonts-fontenc":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"Allows font encoding to be specified through `fontenc` package.","long":"Allows font encoding to be specified through [`fontenc`](https://www.ctan.org/pkg/fontenc) package.\n\nSee [LaTeX Font Encodings Guide](https://ctan.org/pkg/encguide) for addition information on font encoding.\n"}},"documentation":"Adds additional directories to search for fonts when compiling with\nTypst.","$id":"quarto-resource-document-fonts-fontenc"},"quarto-resource-document-fonts-fontfamily":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","ms"],"description":{"short":"Font package to use when compiling a PDF with the `pdflatex` `pdf-engine`.","long":"Font package to use when compiling a PDf with the `pdflatex` `pdf-engine`. \n\nSee [The LaTeX Font Catalogue](https://tug.org/FontCatalogue/) for a \nsummary of font options available.\n\nFor groff (`ms`) files, the font family for example, `T` or `P`.\n"}},"documentation":"The CJK font options for use with xelatex or\nlualatex.","$id":"quarto-resource-document-fonts-fontfamily"},"quarto-resource-document-fonts-fontfamilyoptions":{"_internalId":4028,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4027,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Options for the package used as `fontfamily`.","long":"Options for the package used as `fontfamily`.\n\nFor example, to use the Libertine font with proportional lowercase\n(old-style) figures through the [`libertinus`](https://ctan.org/pkg/libertinus) package:\n\n```yaml\nfontfamily: libertinus\nfontfamilyoptions:\n - osf\n - p\n```\n"}},"documentation":"Options to pass to the microtype package.","$id":"quarto-resource-document-fonts-fontfamilyoptions"},"quarto-resource-document-fonts-sansfont":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The sans serif font family for use with `xelatex` or `lualatex`.","long":"The sans serif font family for use with `xelatex` or \n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package.\n"}},"documentation":"The point size, for example, 10p.","$id":"quarto-resource-document-fonts-sansfont"},"quarto-resource-document-fonts-mathfont":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","typst"],"description":{"short":"The math font family for use with `xelatex`, `lualatex`, or Typst.","long":"For LaTeX output, the math font family for use with `xelatex` or\n`lualatex`. Takes the name of any system font, using the\n[`fontspec`](https://ctan.org/pkg/fontspec) package.\n\nFor Typst output, sets the font used for mathematical content.\n"}},"documentation":"The line height, for example, 12p.","$id":"quarto-resource-document-fonts-mathfont"},"quarto-resource-document-fonts-CJKmainfont":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":{"short":"The CJK main font family for use with `xelatex` or `lualatex`.","long":"The CJK main font family for use with `xelatex` or \n`lualatex` using the [`xecjk`](https://ctan.org/pkg/xecjk) package.\n"}},"documentation":"Sets the line height or spacing for text in the document.","$id":"quarto-resource-document-fonts-CJKmainfont"},"quarto-resource-document-fonts-mainfontoptions":{"_internalId":4040,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4039,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The main font options for use with `xelatex` or `lualatex`.","long":"The main font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n\nFor example, to use the [TeX Gyre](http://www.gust.org.pl/projects/e-foundry/tex-gyre) \nversion of Palatino with lowercase figures:\n\n```yaml\nmainfont: TeX Gyre Pagella\nmainfontoptions:\n - Numbers=Lowercase\n - Numbers=Proportional \n```\n"}},"documentation":"Adjusts line spacing using the \\setupinterlinespace\ncommand.","$id":"quarto-resource-document-fonts-mainfontoptions"},"quarto-resource-document-fonts-sansfontoptions":{"_internalId":4046,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4045,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The sans serif font options for use with `xelatex` or `lualatex`.","long":"The sans serif font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"The typeface style for links in the document.","$id":"quarto-resource-document-fonts-sansfontoptions"},"quarto-resource-document-fonts-monofontoptions":{"_internalId":4052,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4051,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The monospace font options for use with `xelatex` or `lualatex`.","long":"The monospace font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"Set the spacing between paragraphs, for example none,\n`small.","$id":"quarto-resource-document-fonts-monofontoptions"},"quarto-resource-document-fonts-mathfontoptions":{"_internalId":4058,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4057,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The math font options for use with `xelatex` or `lualatex`.","long":"The math font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"Enables a hover popup for footnotes that shows the footnote\ncontents.","$id":"quarto-resource-document-fonts-mathfontoptions"},"quarto-resource-document-fonts-font-paths":{"_internalId":4064,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4063,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["typst"],"description":{"short":"Adds additional directories to search for fonts when compiling with Typst.","long":"Locally, Typst uses installed system fonts. In addition, some custom path \ncan be specified to add directories that should be scanned for fonts.\nSetting this configuration will take precedence over any path set in TYPST_FONT_PATHS environment variable.\n"}},"documentation":"Causes links to be printed as footnotes.","$id":"quarto-resource-document-fonts-font-paths"},"quarto-resource-document-fonts-CJKoptions":{"_internalId":4070,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4069,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"The CJK font options for use with `xelatex` or `lualatex`.","long":"The CJK font options for use with `xelatex` or `lualatex` allowing\nany options available through [`fontspec`](https://ctan.org/pkg/fontspec).\n"}},"documentation":"Location for footnotes and references","$id":"quarto-resource-document-fonts-CJKoptions"},"quarto-resource-document-fonts-microtypeoptions":{"_internalId":4076,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4075,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Options to pass to the microtype package.","long":"Options to pass to the [microtype](https://ctan.org/pkg/microtype) package."}},"documentation":"Set the indentation of paragraphs with one or more options.","$id":"quarto-resource-document-fonts-microtypeoptions"},"quarto-resource-document-fonts-pointsize":{"type":"string","description":"be a string","tags":{"formats":["ms"],"description":"The point size, for example, `10p`."},"documentation":"Adjusts text to the left, right, center, or both margins\n(l, r, c, or b).","$id":"quarto-resource-document-fonts-pointsize"},"quarto-resource-document-fonts-lineheight":{"type":"string","description":"be a string","tags":{"formats":["ms"],"description":"The line height, for example, `12p`."},"documentation":"Whether to hyphenate text at line breaks even in words that do not\ncontain hyphens.","$id":"quarto-resource-document-fonts-lineheight"},"quarto-resource-document-fonts-linestretch":{"_internalId":4087,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"formats":["$html-doc","context","$pdf-all","typst"],"description":{"short":"Sets the line height or spacing for text in the document.","long":"For HTML output sets the CSS `line-height` property on the html\nelement, which is preferred to be unitless.\n\nFor LaTeX output, adjusts line spacing using the\n[setspace](https://ctan.org/pkg/setspace) package, e.g. 1.25, 1.5.\n\nFor Typst output, adjusts the spacing between lines of text.\n"}},"documentation":"If true, tables are formatted as RST list tables.","$id":"quarto-resource-document-fonts-linestretch"},"quarto-resource-document-fonts-interlinespace":{"_internalId":4093,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4092,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":"Adjusts line spacing using the `\\setupinterlinespace` command."},"documentation":"Specify the heading level at which to split the EPUB into separate\nchapter files.","$id":"quarto-resource-document-fonts-interlinespace"},"quarto-resource-document-fonts-linkstyle":{"type":"string","description":"be a string","completions":["normal","bold","slanted","boldslanted","type","cap","small"],"tags":{"formats":["context"],"description":"The typeface style for links in the document."},"documentation":"Information about the funding of the research reported in the article\n(for example, grants, contracts, sponsors) and any open access fees for\nthe article itself","$id":"quarto-resource-document-fonts-linkstyle"},"quarto-resource-document-fonts-whitespace":{"type":"string","description":"be a string","tags":{"formats":["context"],"description":{"short":"Set the spacing between paragraphs, for example `none`, `small.","long":"Set the spacing between paragraphs, for example `none`, `small` \nusing the [`setupwhitespace`](https://wiki.contextgarden.net/Command/setupwhitespace) \ncommand.\n"}},"documentation":"Displayable prose statement that describes the funding for the\nresearch on which a work was based.","$id":"quarto-resource-document-fonts-whitespace"},"quarto-resource-document-footnotes-footnotes-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables a hover popup for footnotes that shows the footnote contents."},"documentation":"Open access provisions that apply to a work or the funding\ninformation that provided the open access provisions.","$id":"quarto-resource-document-footnotes-footnotes-hover"},"quarto-resource-document-footnotes-links-as-notes":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Causes links to be printed as footnotes."},"documentation":"Unique identifier assigned to an award, contract, or grant.","$id":"quarto-resource-document-footnotes-links-as-notes"},"quarto-resource-document-footnotes-reference-location":{"_internalId":4104,"type":"enum","enum":["block","section","margin","document"],"description":"be one of: `block`, `section`, `margin`, `document`","completions":["block","section","margin","document"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all","muse","$html-files","pdf","typst"],"description":{"short":"Location for footnotes and references\n","long":"Specify location for footnotes. Also controls the location of references, if `reference-links` is set.\n\n- `block`: Place at end of current top-level block\n- `section`: Place at end of current section\n- `margin`: Place at the margin\n- `document`: Place at end of document\n"}},"documentation":"The name of this award","$id":"quarto-resource-document-footnotes-reference-location"},"quarto-resource-document-formatting-indenting":{"_internalId":4110,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","completions":["yes","no","none","small","medium","big","first","next","odd","even","normal"]},{"_internalId":4109,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","completions":["yes","no","none","small","medium","big","first","next","odd","even","normal"]}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Set the indentation of paragraphs with one or more options.","long":"Set the indentation of paragraphs with one or more options.\n\nSee [ConTeXt Indentation](https://wiki.contextgarden.net/Indentation) for additional information.\n"}},"documentation":"The description for this award.","$id":"quarto-resource-document-formatting-indenting"},"quarto-resource-document-formatting-adjusting":{"_internalId":4113,"type":"enum","enum":["l","r","c","b"],"description":"be one of: `l`, `r`, `c`, `b`","completions":["l","r","c","b"],"exhaustiveCompletions":true,"tags":{"formats":["man"],"description":"Adjusts text to the left, right, center, or both margins (`l`, `r`, `c`, or `b`)."},"documentation":"Agency or organization that funded the research on which a work was\nbased.","$id":"quarto-resource-document-formatting-adjusting"},"quarto-resource-document-formatting-hyphenate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["man"],"description":{"short":"Whether to hyphenate text at line breaks even in words that do not contain hyphens.","long":"Whether to hyphenate text at line breaks even in words that do not contain \nhyphens if it is necessary to do so to lay out words on a line without excessive spacing\n"}},"documentation":"The text describing the source of the funding.","$id":"quarto-resource-document-formatting-hyphenate"},"quarto-resource-document-formatting-list-tables":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["rst"],"description":"If true, tables are formatted as RST list tables."},"documentation":"Abbreviation for country where source of grant is located.","$id":"quarto-resource-document-formatting-list-tables"},"quarto-resource-document-formatting-split-level":{"type":"number","description":"be a number","tags":{"formats":["$epub-all","chunkedhtml"],"description":{"short":"Specify the heading level at which to split the EPUB into separate\nchapter files.\n","long":"Specify the heading level at which to split the EPUB into separate\nchapter files. The default is to split into chapters at level-1\nheadings. This option only affects the internal composition of the\nEPUB, not the way chapters and sections are displayed to users. Some\nreaders may be slow if the chapter files are too large, so for large\ndocuments with few level-1 headings, one might want to use a chapter\nlevel of 2 or 3.\n"}},"documentation":"The text describing the source of the funding.","$id":"quarto-resource-document-formatting-split-level"},"quarto-resource-document-funding-funding":{"_internalId":4222,"type":"anyOf","anyOf":[{"_internalId":4220,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4219,"type":"object","description":"be an object","properties":{"statement":{"type":"string","description":"be a string","tags":{"description":"Displayable prose statement that describes the funding for the research on which a work was based."},"documentation":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."},"open-access":{"type":"string","description":"be a string","tags":{"description":"Open access provisions that apply to a work or the funding information that provided the open access provisions."},"documentation":"The id of an author or affiliation in the document metadata."},"awards":{"_internalId":4218,"type":"anyOf","anyOf":[{"_internalId":4216,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"The name of an individual that was the recipient of the funding."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The institution that was the recipient of the funding."},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"The id of an author or affiliation in the document metadata."},"source":{"_internalId":4157,"type":"anyOf","anyOf":[{"_internalId":4155,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4154,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4156,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4155,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4154,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"The name of an individual that was the recipient of the funding."},"recipient":{"_internalId":4186,"type":"anyOf","anyOf":[{"_internalId":4184,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4168,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4173,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4183,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4182,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4180,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4185,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4184,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4168,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4173,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4183,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4182,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4180,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."},"investigator":{"_internalId":4215,"type":"anyOf","anyOf":[{"_internalId":4213,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4197,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Headers to include with HTTP requests by Pandoc"}},"patternProperties":{},"closed":true},{"_internalId":4202,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Display trace debug output."}},"patternProperties":{},"closed":true},{"_internalId":4212,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4211,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4209,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Exit with error status if there are any warnings."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4214,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4213,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4197,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Headers to include with HTTP requests by Pandoc"}},"patternProperties":{},"closed":true},{"_internalId":4202,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Display trace debug output."}},"patternProperties":{},"closed":true},{"_internalId":4212,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4211,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4209,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Exit with error status if there are any warnings."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"Input files to read from"}},"patternProperties":{}},{"_internalId":4217,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":4216,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"The name of an individual that was the recipient of the funding."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The institution that was the recipient of the funding."},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"The id of an author or affiliation in the document metadata."},"source":{"_internalId":4157,"type":"anyOf","anyOf":[{"_internalId":4155,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4154,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4156,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4155,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4154,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"The name of an individual that was the recipient of the funding."},"recipient":{"_internalId":4186,"type":"anyOf","anyOf":[{"_internalId":4184,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4168,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4173,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4183,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4182,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4180,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4185,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4184,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4168,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4173,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4183,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4182,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4180,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."},"investigator":{"_internalId":4215,"type":"anyOf","anyOf":[{"_internalId":4213,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4197,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Headers to include with HTTP requests by Pandoc"}},"patternProperties":{},"closed":true},{"_internalId":4202,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Display trace debug output."}},"patternProperties":{},"closed":true},{"_internalId":4212,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4211,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4209,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Exit with error status if there are any warnings."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4214,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4213,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4197,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Headers to include with HTTP requests by Pandoc"}},"patternProperties":{},"closed":true},{"_internalId":4202,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Display trace debug output."}},"patternProperties":{},"closed":true},{"_internalId":4212,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4211,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4209,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Exit with error status if there are any warnings."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"Input files to read from"}},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4221,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4220,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4219,"type":"object","description":"be an object","properties":{"statement":{"type":"string","description":"be a string","tags":{"description":"Displayable prose statement that describes the funding for the research on which a work was based."},"documentation":"Individual(s) or institution(s) to whom the award was given (for\nexample, the principal grant holder or the sponsored individual)."},"open-access":{"type":"string","description":"be a string","tags":{"description":"Open access provisions that apply to a work or the funding information that provided the open access provisions."},"documentation":"The id of an author or affiliation in the document metadata."},"awards":{"_internalId":4218,"type":"anyOf","anyOf":[{"_internalId":4216,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"The name of an individual that was the recipient of the funding."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The institution that was the recipient of the funding."},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"The id of an author or affiliation in the document metadata."},"source":{"_internalId":4157,"type":"anyOf","anyOf":[{"_internalId":4155,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4154,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4156,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4155,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4154,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"The name of an individual that was the recipient of the funding."},"recipient":{"_internalId":4186,"type":"anyOf","anyOf":[{"_internalId":4184,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4168,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4173,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4183,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4182,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4180,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4185,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4184,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4168,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4173,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4183,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4182,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4180,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."},"investigator":{"_internalId":4215,"type":"anyOf","anyOf":[{"_internalId":4213,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4197,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Headers to include with HTTP requests by Pandoc"}},"patternProperties":{},"closed":true},{"_internalId":4202,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Display trace debug output."}},"patternProperties":{},"closed":true},{"_internalId":4212,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4211,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4209,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Exit with error status if there are any warnings."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4214,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4213,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4197,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Headers to include with HTTP requests by Pandoc"}},"patternProperties":{},"closed":true},{"_internalId":4202,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Display trace debug output."}},"patternProperties":{},"closed":true},{"_internalId":4212,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4211,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4209,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Exit with error status if there are any warnings."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"Input files to read from"}},"patternProperties":{}},{"_internalId":4217,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":4216,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"Unique identifier assigned to an award, contract, or grant."},"documentation":"The name of an individual that was the recipient of the funding."},"name":{"type":"string","description":"be a string","tags":{"description":"The name of this award"},"documentation":"The institution that was the recipient of the funding."},"description":{"type":"string","description":"be a string","tags":{"description":"The description for this award."},"documentation":"The id of an author or affiliation in the document metadata."},"source":{"_internalId":4157,"type":"anyOf","anyOf":[{"_internalId":4155,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4154,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"},{"_internalId":4156,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":4155,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4154,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The text describing the source of the funding."},"documentation":"The id of an author or affiliation in the document metadata."},"country":{"type":"string","description":"be a string","tags":{"description":{"short":"Abbreviation for country where source of grant is located.","long":"Abbreviation for country where source of grant is located.\nWhenever possible, ISO 3166-1 2-letter alphabetic codes should be used.\n"}},"documentation":"The name of an individual that was responsible for the intellectual\ncontent of the work reported in the document."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Agency or organization that funded the research on which a work was based."},"documentation":"The name of an individual that was the recipient of the funding."},"recipient":{"_internalId":4186,"type":"anyOf","anyOf":[{"_internalId":4184,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4168,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4173,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4183,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4182,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4180,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4185,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4184,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4168,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4173,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was the recipient of the funding."},"documentation":"Format to write to (e.g. html)"}},"patternProperties":{},"closed":true},{"_internalId":4183,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4182,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4180,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was the recipient of the funding."},"documentation":"Input file to read from"}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) or institution(s) to whom the award was given (for example, the principal grant holder or the sponsored individual)."},"documentation":"The institution that was responsible for the intellectual content of\nthe work reported in the document."},"investigator":{"_internalId":4215,"type":"anyOf","anyOf":[{"_internalId":4213,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4197,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Headers to include with HTTP requests by Pandoc"}},"patternProperties":{},"closed":true},{"_internalId":4202,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Display trace debug output."}},"patternProperties":{},"closed":true},{"_internalId":4212,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4211,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4209,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Exit with error status if there are any warnings."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"},{"_internalId":4214,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object, an object","items":{"_internalId":4213,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4197,"type":"object","description":"be an object","properties":{"ref":{"type":"string","description":"be a string","tags":{"description":"The id of an author or affiliation in the document metadata."},"documentation":"Headers to include with HTTP requests by Pandoc"}},"patternProperties":{},"closed":true},{"_internalId":4202,"type":"object","description":"be an object","properties":{"name":{"type":"string","description":"be a string","tags":{"description":"The name of an individual that was responsible for the intellectual content of the work reported in the document."},"documentation":"Display trace debug output."}},"patternProperties":{},"closed":true},{"_internalId":4212,"type":"object","description":"be an object","properties":{"institution":{"_internalId":4211,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4209,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"The institution that was responsible for the intellectual content of the work reported in the document."},"documentation":"Exit with error status if there are any warnings."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object, an object","tags":{"complete-from":["anyOf",0],"description":"Individual(s) responsible for the intellectual content of the work reported in the document."},"documentation":"Input files to read from"}},"patternProperties":{}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0],"description":"Information about the funding of the research reported in the article \n(for example, grants, contracts, sponsors) and any open access fees for the article itself\n"},"documentation":"Abbreviation for country where source of grant is located.","$id":"quarto-resource-document-funding-funding"},"quarto-resource-document-hidden-to":{"type":"string","description":"be a string","documentation":"Print information about command-line arguments to stdout,\nthen exit.","tags":{"description":{"short":"Format to write to (e.g. html)","long":"Format to write to. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. gfm+footnotes)\n"},"hidden":true},"$id":"quarto-resource-document-hidden-to"},"quarto-resource-document-hidden-writer":{"type":"string","description":"be a string","documentation":"Ignore command-line arguments (for use in wrapper scripts).","tags":{"description":{"short":"Format to write to (e.g. html)","long":"Format to write to. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. gfm+footnotes)\n"},"hidden":true},"$id":"quarto-resource-document-hidden-writer"},"quarto-resource-document-hidden-input-file":{"type":"string","description":"be a string","documentation":"Parse each file individually before combining for multifile\ndocuments.","tags":{"description":"Input file to read from","hidden":true},"$id":"quarto-resource-document-hidden-input-file"},"quarto-resource-document-hidden-input-files":{"_internalId":4231,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Specify the user data directory to search for pandoc data files.","tags":{"description":"Input files to read from","hidden":true},"$id":"quarto-resource-document-hidden-input-files"},"quarto-resource-document-hidden-defaults":{"_internalId":4236,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Level of program output (INFO, ERROR, or\nWARNING)","tags":{"description":"Include options from the specified defaults files","hidden":true},"$id":"quarto-resource-document-hidden-defaults"},"quarto-resource-document-hidden-variables":{"_internalId":4237,"type":"object","description":"be an object","properties":{},"patternProperties":{},"documentation":"Write log messages in machine-readable JSON format to FILE.","tags":{"description":"Pandoc metadata variables","hidden":true},"$id":"quarto-resource-document-hidden-variables"},"quarto-resource-document-hidden-metadata":{"_internalId":4239,"type":"object","description":"be an object","properties":{},"patternProperties":{},"documentation":"Specify what to do with insertions, deletions, and comments produced\nby the MS Word “Track Changes” feature.","tags":{"description":"Pandoc metadata variables","hidden":true},"$id":"quarto-resource-document-hidden-metadata"},"quarto-resource-document-hidden-request-headers":{"_internalId":4243,"type":"ref","$ref":"pandoc-format-request-headers","description":"be pandoc-format-request-headers","documentation":"Embed the input file source code in the generated HTML","tags":{"description":"Headers to include with HTTP requests by Pandoc","hidden":true},"$id":"quarto-resource-document-hidden-request-headers"},"quarto-resource-document-hidden-trace":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Keep hidden source code and output (marked with class\n.hidden)","tags":{"description":"Display trace debug output."},"$id":"quarto-resource-document-hidden-trace"},"quarto-resource-document-hidden-fail-if-warnings":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Generate HTML output (if necessary) even when targeting markdown.","tags":{"description":"Exit with error status if there are any warnings."},"$id":"quarto-resource-document-hidden-fail-if-warnings"},"quarto-resource-document-hidden-dump-args":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Indicates that computational output should not be written within\ndivs. This is necessary for some formats (e.g. pptx) to\nproperly layout figures.","tags":{"description":"Print information about command-line arguments to *stdout*, then exit.","hidden":true},"$id":"quarto-resource-document-hidden-dump-args"},"quarto-resource-document-hidden-ignore-args":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Disable merging of string based and file based includes (some\nformats, specifically ePub, do not correctly handle this merging)","tags":{"description":"Ignore command-line arguments (for use in wrapper scripts).","hidden":true},"$id":"quarto-resource-document-hidden-ignore-args"},"quarto-resource-document-hidden-file-scope":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Content to include at the end of the document header.","tags":{"description":"Parse each file individually before combining for multifile documents.","hidden":true},"$id":"quarto-resource-document-hidden-file-scope"},"quarto-resource-document-hidden-data-dir":{"type":"string","description":"be a string","documentation":"Content to include at the beginning of the document body (e.g. after\nthe <body> tag in HTML, or the\n\\begin{document} command in LaTeX).","tags":{"description":"Specify the user data directory to search for pandoc data files.","hidden":true},"$id":"quarto-resource-document-hidden-data-dir"},"quarto-resource-document-hidden-verbosity":{"_internalId":4258,"type":"enum","enum":["ERROR","WARNING","INFO"],"description":"be one of: `ERROR`, `WARNING`, `INFO`","completions":["ERROR","WARNING","INFO"],"exhaustiveCompletions":true,"documentation":"Content to include at the end of the document body (before the\n</body> tag in HTML, or the\n\\end{document} command in LaTeX).","tags":{"description":"Level of program output (`INFO`, `ERROR`, or `WARNING`)","hidden":true},"$id":"quarto-resource-document-hidden-verbosity"},"quarto-resource-document-hidden-log-file":{"type":"string","description":"be a string","documentation":"Include contents at the beginning of the document body (e.g. after\nthe <body> tag in HTML, or the\n\\begin{document} command in LaTeX).\nA string value or an object with key “file” indicates a filename\nwhose contents are to be included\nAn object with key “text” indicates textual content to be\nincluded","tags":{"description":"Write log messages in machine-readable JSON format to FILE.","hidden":true},"$id":"quarto-resource-document-hidden-log-file"},"quarto-resource-document-hidden-track-changes":{"_internalId":4263,"type":"enum","enum":["accept","reject","all"],"description":"be one of: `accept`, `reject`, `all`","completions":["accept","reject","all"],"exhaustiveCompletions":true,"tags":{"formats":["docx"],"description":{"short":"Specify what to do with insertions, deletions, and comments produced by \nthe MS Word “Track Changes” feature.\n","long":"Specify what to do with insertions, deletions, and comments\nproduced by the MS Word \"Track Changes\" feature. \n\n- `accept` (default): Process all insertions and deletions.\n- `reject`: Ignore them.\n- `all`: Include all insertions, deletions, and comments, wrapped\n in spans with `insertion`, `deletion`, `comment-start`, and\n `comment-end` classes, respectively. The author and time of\n change is included. \n\nNotes:\n\n- Both `accept` and `reject` ignore comments.\n\n- `all` is useful for scripting: only\n accepting changes from a certain reviewer, say, or before a\n certain date. If a paragraph is inserted or deleted,\n `track-changes: all` produces a span with the class\n `paragraph-insertion`/`paragraph-deletion` before the\n affected paragraph break. \n\n- This option only affects the docx reader.\n"},"hidden":true},"documentation":"Include content at the end of the document body immediately after the\nmarkdown content. While it will be included before the closing\n</body> tag in HTML and the\n\\end{document} command in LaTeX, this option refers to the\nend of the markdown content.\nA string value or an object with key “file” indicates a filename\nwhose contents are to be included\nAn object with key “text” indicates textual content to be\nincluded","$id":"quarto-resource-document-hidden-track-changes"},"quarto-resource-document-hidden-keep-source":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Embed the input file source code in the generated HTML","long":"Embed the input file source code in the generated HTML. A hidden div with \nclass `quarto-embedded-source-code` will be added to the document. This\noption is not normally used directly but rather in the implementation\nof the `code-tools` option.\n"},"hidden":true},"documentation":"Include contents at the end of the header. This can be used, for\nexample, to include special CSS or JavaScript in HTML documents.\nA string value or an object with key “file” indicates a filename\nwhose contents are to be included\nAn object with key “text” indicates textual content to be\nincluded","$id":"quarto-resource-document-hidden-keep-source"},"quarto-resource-document-hidden-keep-hidden":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Keep hidden source code and output (marked with class `.hidden`)","hidden":true},"documentation":"Path (or glob) to files to publish with this document.","$id":"quarto-resource-document-hidden-keep-hidden"},"quarto-resource-document-hidden-prefer-html":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all"],"description":{"short":"Generate HTML output (if necessary) even when targeting markdown.","long":"Generate HTML output (if necessary) even when targeting markdown. Enables the \nembedding of more sophisticated output (e.g. Jupyter widgets) in markdown.\n"},"hidden":true},"documentation":"Text to be in a running header.","$id":"quarto-resource-document-hidden-prefer-html"},"quarto-resource-document-hidden-output-divs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Text to be in a running footer.","tags":{"description":"Indicates that computational output should not be written within divs. \nThis is necessary for some formats (e.g. `pptx`) to properly layout\nfigures.\n","hidden":true},"$id":"quarto-resource-document-hidden-output-divs"},"quarto-resource-document-hidden-merge-includes":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Whether to include all source documents as file attachments in the\nPDF file.","tags":{"description":"Disable merging of string based and file based includes (some formats, \nspecifically ePub, do not correctly handle this merging)\n","hidden":true},"$id":"quarto-resource-document-hidden-merge-includes"},"quarto-resource-document-includes-header-includes":{"_internalId":4279,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4278,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Content to include at the end of the document header.","hidden":true},"documentation":"The footer for man pages.","$id":"quarto-resource-document-includes-header-includes"},"quarto-resource-document-includes-include-before":{"_internalId":4285,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4284,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Content to include at the beginning of the document body (e.g. after the `` tag in HTML, or the `\\begin{document}` command in LaTeX).","hidden":true},"documentation":"The header for man pages.","$id":"quarto-resource-document-includes-include-before"},"quarto-resource-document-includes-include-after":{"_internalId":4291,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4290,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Content to include at the end of the document body (before the `` tag in HTML, or the `\\end{document}` command in LaTeX).","hidden":true},"documentation":"Include file with YAML metadata","$id":"quarto-resource-document-includes-include-after"},"quarto-resource-document-includes-include-before-body":{"_internalId":4303,"type":"anyOf","anyOf":[{"_internalId":4301,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4300,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4302,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4301,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4300,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"}}],"description":"be at least one of: at least one of: a string, smart-include, an array of values, where each element must be at least one of: a string, smart-include","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Include contents at the beginning of the document body\n(e.g. after the `` tag in HTML, or the `\\begin{document}` command\nin LaTeX).\n\nA string value or an object with key \"file\" indicates a filename whose contents are to be included\n\nAn object with key \"text\" indicates textual content to be included\n"},"documentation":"Include files with YAML metadata","$id":"quarto-resource-document-includes-include-before-body"},"quarto-resource-document-includes-include-after-body":{"_internalId":4315,"type":"anyOf","anyOf":[{"_internalId":4313,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4312,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4314,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4313,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4312,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"}}],"description":"be at least one of: at least one of: a string, smart-include, an array of values, where each element must be at least one of: a string, smart-include","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Include content at the end of the document body immediately after the markdown content. While it will be included before the closing `` tag in HTML and the `\\end{document}` command in LaTeX, this option refers to the end of the markdown content.\n\nA string value or an object with key \"file\" indicates a filename whose contents are to be included\n\nAn object with key \"text\" indicates textual content to be included\n"},"documentation":"Identifies the main language of the document (e.g. en or\nen-GB).","$id":"quarto-resource-document-includes-include-after-body"},"quarto-resource-document-includes-include-in-header":{"_internalId":4327,"type":"anyOf","anyOf":[{"_internalId":4325,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4324,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"},{"_internalId":4326,"type":"array","description":"be an array of values, where each element must be at least one of: a string, smart-include","items":{"_internalId":4325,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4324,"type":"ref","$ref":"smart-include","description":"be smart-include"}],"description":"be at least one of: a string, smart-include"}}],"description":"be at least one of: at least one of: a string, smart-include, an array of values, where each element must be at least one of: a string, smart-include","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!$jats-all","!ipynb"],"description":"Include contents at the end of the header. This can\nbe used, for example, to include special CSS or JavaScript in HTML\ndocuments.\n\nA string value or an object with key \"file\" indicates a filename whose contents are to be included\n\nAn object with key \"text\" indicates textual content to be included\n"},"documentation":"YAML file containing custom language translations","$id":"quarto-resource-document-includes-include-in-header"},"quarto-resource-document-includes-resources":{"_internalId":4333,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4332,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":"Path (or glob) to files to publish with this document."},"documentation":"Enable babel language-specific shorthands in LaTeX output.","$id":"quarto-resource-document-includes-resources"},"quarto-resource-document-includes-headertext":{"_internalId":4339,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4338,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Text to be in a running header.","long":"Text to be in a running header.\n\nProvide a single option or up to four options for different placements\n(odd page inner, odd page outer, even page innner, even page outer).\n"}},"documentation":"The base script direction for the document (rtl or\nltr).","$id":"quarto-resource-document-includes-headertext"},"quarto-resource-document-includes-footertext":{"_internalId":4345,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4344,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Text to be in a running footer.","long":"Text to be in a running footer.\n\nProvide a single option or up to four options for different placements\n(odd page inner, odd page outer, even page innner, even page outer).\n\nSee [ConTeXt Headers and Footers](https://wiki.contextgarden.net/Headers_and_Footers) for more information.\n"}},"documentation":"Use Quarto’s built-in PDF rendering wrapper","$id":"quarto-resource-document-includes-footertext"},"quarto-resource-document-includes-includesource":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["context"],"description":"Whether to include all source documents as file attachments in the PDF file."},"documentation":"Enable/disable automatic LaTeX package installation","$id":"quarto-resource-document-includes-includesource"},"quarto-resource-document-includes-footer":{"type":"string","description":"be a string","tags":{"formats":["man"],"description":"The footer for man pages."},"documentation":"Minimum number of compilation passes.","$id":"quarto-resource-document-includes-footer"},"quarto-resource-document-includes-header":{"type":"string","description":"be a string","tags":{"formats":["man"],"description":"The header for man pages."},"documentation":"Maximum number of compilation passes.","$id":"quarto-resource-document-includes-header"},"quarto-resource-document-includes-metadata-file":{"type":"string","description":"be a string","documentation":"Clean intermediates after compilation.","tags":{"description":{"short":"Include file with YAML metadata","long":"Read metadata from the supplied YAML (or JSON) file. This\noption can be used with every input format, but string scalars\nin the YAML file will always be parsed as Markdown. Generally,\nthe input will be handled the same as in YAML metadata blocks.\nMetadata values specified inside the document, or by using `-M`,\noverwrite values specified with this option.\n"},"hidden":true},"$id":"quarto-resource-document-includes-metadata-file"},"quarto-resource-document-includes-metadata-files":{"_internalId":4358,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Program to use for makeindex.","tags":{"description":{"short":"Include files with YAML metadata","long":"Read metadata from the supplied YAML (or JSON) files. This\noption can be used with every input format, but string scalars\nin the YAML file will always be parsed as Markdown. Generally,\nthe input will be handled the same as in YAML metadata blocks.\nValues in files specified later in the list will be preferred\nover those specified earlier. Metadata values specified inside\nthe document, or by using `-M`, overwrite values specified with\nthis option.\n"}},"$id":"quarto-resource-document-includes-metadata-files"},"quarto-resource-document-language-lang":{"type":"string","description":"be a string","documentation":"Array of command line options for makeindex.","tags":{"description":{"short":"Identifies the main language of the document (e.g. `en` or `en-GB`).","long":"Identifies the main language of the document using IETF language tags \n(following the [BCP 47](https://www.rfc-editor.org/info/bcp47) standard), \nsuch as `en` or `en-GB`. The [Language subtag lookup](https://r12a.github.io/app-subtags/) \ntool can look up or verify these tags. \n\nThis affects most formats, and controls hyphenation \nin PDF output when using LaTeX (through [`babel`](https://ctan.org/pkg/babel) \nand [`polyglossia`](https://ctan.org/pkg/polyglossia)) or ConTeXt.\n"}},"$id":"quarto-resource-document-language-lang"},"quarto-resource-document-language-language":{"_internalId":4367,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4365,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","documentation":"Array of command line options for tlmgr.","tags":{"description":"YAML file containing custom language translations"},"$id":"quarto-resource-document-language-language"},"quarto-resource-document-language-shorthands":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":{"short":"Enable babel language-specific shorthands in LaTeX output.","long":"Enable babel language-specific shorthands in LaTeX output. When `true`,\nbabel's language shortcuts are enabled (e.g., French `<<`/`>>` for guillemets,\nGerman `\"` shortcuts, proper spacing around French punctuation).\n\nDefault is `false` because language shorthands can interfere with code blocks\nand other content. Only enable if you need specific typographic features\nfor your language.\n"}},"documentation":"Output directory for intermediates and PDF.","$id":"quarto-resource-document-language-shorthands"},"quarto-resource-document-language-dir":{"_internalId":4372,"type":"enum","enum":["rtl","ltr"],"description":"be one of: `rtl`, `ltr`","completions":["rtl","ltr"],"exhaustiveCompletions":true,"documentation":"Set to false to prevent an installation of TinyTex from\nbeing used to compile PDF documents.","tags":{"description":{"short":"The base script direction for the document (`rtl` or `ltr`).","long":"The base script direction for the document (`rtl` or `ltr`).\n\nFor bidirectional documents, native pandoc `span`s and\n`div`s with the `dir` attribute can\nbe used to override the base direction in some output\nformats. This may not always be necessary if the final\nrenderer (e.g. the browser, when generating HTML) supports\nthe [Unicode Bidirectional Algorithm].\n\nWhen using LaTeX for bidirectional documents, only the\n`xelatex` engine is fully supported (use\n`--pdf-engine=xelatex`).\n"}},"$id":"quarto-resource-document-language-dir"},"quarto-resource-document-latexmk-latex-auto-mk":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":{"short":"Use Quarto's built-in PDF rendering wrapper","long":"Use Quarto's built-in PDF rendering wrapper (includes support \nfor automatically installing missing LaTeX packages)\n"}},"documentation":"Array of paths LaTeX should search for inputs.","$id":"quarto-resource-document-latexmk-latex-auto-mk"},"quarto-resource-document-latexmk-latex-auto-install":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Enable/disable automatic LaTeX package installation"},"documentation":"The document class.","$id":"quarto-resource-document-latexmk-latex-auto-install"},"quarto-resource-document-latexmk-latex-min-runs":{"type":"number","description":"be a number","tags":{"formats":["pdf","beamer"],"description":"Minimum number of compilation passes."},"documentation":"Options for the document class,","$id":"quarto-resource-document-latexmk-latex-min-runs"},"quarto-resource-document-latexmk-latex-max-runs":{"type":"number","description":"be a number","tags":{"formats":["pdf","beamer"],"description":"Maximum number of compilation passes."},"documentation":"Control the \\pagestyle{} for the document.","$id":"quarto-resource-document-latexmk-latex-max-runs"},"quarto-resource-document-latexmk-latex-clean":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Clean intermediates after compilation."},"documentation":"The paper size for the document.","$id":"quarto-resource-document-latexmk-latex-clean"},"quarto-resource-document-latexmk-latex-makeindex":{"type":"string","description":"be a string","tags":{"formats":["pdf","beamer"],"description":"Program to use for `makeindex`."},"documentation":"The brand mode to use for rendering the document, light\nor dark.","$id":"quarto-resource-document-latexmk-latex-makeindex"},"quarto-resource-document-latexmk-latex-makeindex-opts":{"_internalId":4389,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["pdf","beamer"],"description":"Array of command line options for `makeindex`."},"documentation":"The options for margins and text layout for this document.","$id":"quarto-resource-document-latexmk-latex-makeindex-opts"},"quarto-resource-document-latexmk-latex-tlmgr-opts":{"_internalId":4394,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["pdf","beamer"],"description":"Array of command line options for `tlmgr`."},"documentation":"The page layout to use for this document (article,\nfull, or custom)","$id":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"quarto-resource-document-latexmk-latex-output-dir":{"type":"string","description":"be a string","tags":{"formats":["pdf","beamer"],"description":"Output directory for intermediates and PDF."},"documentation":"Target page width for output (used to compute columns widths for\nlayout divs)","$id":"quarto-resource-document-latexmk-latex-output-dir"},"quarto-resource-document-latexmk-latex-tinytex":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Set to `false` to prevent an installation of TinyTex from being used to compile PDF documents."},"documentation":"Properties of the grid system used to layout Quarto HTML and Typst\npages.","$id":"quarto-resource-document-latexmk-latex-tinytex"},"quarto-resource-document-latexmk-latex-input-paths":{"_internalId":4403,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["pdf","beamer"],"description":"Array of paths LaTeX should search for inputs."},"documentation":"Defines whether to use the standard, slim, or full content grid or to\nautomatically select the most appropriate content grid.","$id":"quarto-resource-document-latexmk-latex-input-paths"},"quarto-resource-document-layout-documentclass":{"type":"string","description":"be a string","completions":["scrartcl","scrbook","scrreprt","scrlttr2","article","book","report","memoir"],"tags":{"formats":["$pdf-all"],"description":"The document class."},"documentation":"The base width of the sidebar (left) column in an HTML page.","$id":"quarto-resource-document-layout-documentclass"},"quarto-resource-document-layout-classoption":{"_internalId":4411,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4410,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-files","$pdf-all"],"description":{"short":"Options for the document class,","long":"For LaTeX/PDF output, the options set for the document\nclass.\n\nFor HTML output using KaTeX, you can render display\nmath equations flush left using `classoption: fleqn`\n"}},"documentation":"The base width of the margin (right) column. For Typst, this controls\nthe width of the margin note column.","$id":"quarto-resource-document-layout-classoption"},"quarto-resource-document-layout-pagestyle":{"type":"string","description":"be a string","completions":["plain","empty","headings"],"tags":{"formats":["$pdf-all"],"description":"Control the `\\pagestyle{}` for the document."},"documentation":"The base width of the body (center) column. For Typst, this is\ncomputed as the remainder after other columns.","$id":"quarto-resource-document-layout-pagestyle"},"quarto-resource-document-layout-papersize":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","typst"],"description":"The paper size for the document.\n"},"documentation":"The width of the gutter that appears between columns. For Typst, this\nis the gap between the text column and margin notes.","$id":"quarto-resource-document-layout-papersize"},"quarto-resource-document-layout-brand-mode":{"_internalId":4418,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"formats":["typst","revealjs"],"description":"The brand mode to use for rendering the document, `light` or `dark`.\n"},"documentation":"The layout of the appendix for this document (none,\nplain, or default)","$id":"quarto-resource-document-layout-brand-mode"},"quarto-resource-document-layout-layout":{"_internalId":4424,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4423,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"The options for margins and text layout for this document.","long":"The options for margins and text layout for this document.\n\nSee [ConTeXt Layout](https://wiki.contextgarden.net/Layout) for additional information.\n"}},"documentation":"Controls the formats which are provided in the citation section of\nthe appendix (false, display, or\nbibtex).","$id":"quarto-resource-document-layout-layout"},"quarto-resource-document-layout-page-layout":{"_internalId":4427,"type":"enum","enum":["article","full","custom"],"description":"be one of: `article`, `full`, `custom`","completions":["article","full","custom"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"The page layout to use for this document (`article`, `full`, or `custom`)"},"documentation":"The layout of the title block for this document (none,\nplain, or default).","$id":"quarto-resource-document-layout-page-layout"},"quarto-resource-document-layout-page-width":{"type":"number","description":"be a number","tags":{"formats":["docx","$odt-all"],"description":{"short":"Target page width for output (used to compute columns widths for `layout` divs)\n","long":"Target body page width for output (used to compute columns widths for `layout` divs).\nDefaults to 6.5 inches, which corresponds to default letter page settings in \ndocx and odt (8.5 inches with 1 inch for each margins).\n"}},"documentation":"Apply a banner style treatment to the title block.","$id":"quarto-resource-document-layout-page-width"},"quarto-resource-document-layout-grid":{"_internalId":4443,"type":"object","description":"be an object","properties":{"content-mode":{"_internalId":4434,"type":"enum","enum":["auto","standard","full","slim"],"description":"be one of: `auto`, `standard`, `full`, `slim`","completions":["auto","standard","full","slim"],"exhaustiveCompletions":true,"tags":{"description":"Defines whether to use the standard, slim, or full content grid or to automatically select the most appropriate content grid."},"documentation":"Enables or disables the display of categories in the title block."},"sidebar-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the sidebar (left) column in an HTML page."},"documentation":"Adds a css max-width to the body Element."},"margin-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the margin (right) column. For Typst, this controls the width of the margin note column."},"documentation":"Sets the left margin of the document."},"body-width":{"type":"string","description":"be a string","tags":{"description":"The base width of the body (center) column. For Typst, this is computed as the remainder after other columns."},"documentation":"Sets the right margin of the document."},"gutter-width":{"type":"string","description":"be a string","tags":{"description":"The width of the gutter that appears between columns. For Typst, this is the gap between the text column and margin notes."},"documentation":"Sets the top margin of the document."}},"patternProperties":{},"closed":true,"tags":{"formats":["$html-doc","typst"],"description":{"short":"Properties of the grid system used to layout Quarto HTML and Typst pages."}},"documentation":"Sets the color of text elements in a banner style title block.","$id":"quarto-resource-document-layout-grid"},"quarto-resource-document-layout-appendix-style":{"_internalId":4449,"type":"anyOf","anyOf":[{"_internalId":4448,"type":"enum","enum":["default","plain","none"],"description":"be one of: `default`, `plain`, `none`","completions":["default","plain","none"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `default`, `plain`, `none`","tags":{"formats":["$html-doc"],"description":{"short":"The layout of the appendix for this document (`none`, `plain`, or `default`)","long":"The layout of the appendix for this document (`none`, `plain`, or `default`).\n\nTo completely disable any styling of the appendix, choose the appendix style `none`. For minimal styling, choose `plain.`\n"}},"documentation":"Sets the bottom margin of the document.","$id":"quarto-resource-document-layout-appendix-style"},"quarto-resource-document-layout-appendix-cite-as":{"_internalId":4461,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4460,"type":"anyOf","anyOf":[{"_internalId":4458,"type":"enum","enum":["display","bibtex"],"description":"be one of: `display`, `bibtex`","completions":["display","bibtex"],"exhaustiveCompletions":true},{"_internalId":4459,"type":"array","description":"be an array of values, where each element must be one of: `display`, `bibtex`","items":{"_internalId":4458,"type":"enum","enum":["display","bibtex"],"description":"be one of: `display`, `bibtex`","completions":["display","bibtex"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `display`, `bibtex`, an array of values, where each element must be one of: `display`, `bibtex`","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: one of: `display`, `bibtex`, an array of values, where each element must be one of: `display`, `bibtex`","tags":{"formats":["$html-doc"],"description":{"short":"Controls the formats which are provided in the citation section of the appendix (`false`, `display`, or `bibtex`).","long":"Controls the formats which are provided in the citation section of the appendix.\n\nUse `false` to disable the display of the 'cite as' appendix. Pass one or more of `display` or `bibtex` to enable that\nformat in 'cite as' appendix.\n"}},"documentation":"Margin settings for Reveal.js or Typst output.","$id":"quarto-resource-document-layout-appendix-cite-as"},"quarto-resource-document-layout-title-block-style":{"_internalId":4467,"type":"anyOf","anyOf":[{"_internalId":4466,"type":"enum","enum":["default","plain","manuscript","none"],"description":"be one of: `default`, `plain`, `manuscript`, `none`","completions":["default","plain","manuscript","none"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `default`, `plain`, `manuscript`, `none`","tags":{"formats":["$html-doc"],"description":{"short":"The layout of the title block for this document (`none`, `plain`, or `default`).","long":"The layout of the title block for this document (`none`, `plain`, or `default`).\n\nTo completely disable any styling of the title block, choose the style `none`. For minimal styling, choose `plain.`\n"}},"documentation":"Horizontal margin (e.g. 1.5in)","$id":"quarto-resource-document-layout-title-block-style"},"quarto-resource-document-layout-title-block-banner":{"_internalId":4474,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc"],"description":{"short":"Apply a banner style treatment to the title block.","long":"Applies a banner style treatment for the title block. You may specify one of the following values:\n\n`true`\n: Will enable the banner style display and automatically select a background color based upon the theme.\n\n``\n: If you provide a CSS color value, the banner will be enabled and the background color set to the provided CSS color.\n\n``\n: If you provide the path to a file, the banner will be enabled and the background image will be set to the file path.\n\nSee `title-block-banner-color` if you'd like to control the color of the title block banner text.\n"}},"documentation":"Vertical margin (e.g. 1.5in)","$id":"quarto-resource-document-layout-title-block-banner"},"quarto-resource-document-layout-title-block-banner-color":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":{"short":"Sets the color of text elements in a banner style title block.","long":"Sets the color of text elements in a banner style title block. Use one of the following values:\n\n`body` | `body-bg`\n: Will set the text color to the body text color or body background color, respectively.\n\n``\n: If you provide a CSS color value, the text color will be set to the provided CSS color.\n"}},"documentation":"Top margin (e.g. 1.5in)","$id":"quarto-resource-document-layout-title-block-banner-color"},"quarto-resource-document-layout-title-block-categories":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Enables or disables the display of categories in the title block."}},"documentation":"Bottom margin (e.g. 1.5in)","$id":"quarto-resource-document-layout-title-block-categories"},"quarto-resource-document-layout-max-width":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Adds a css `max-width` to the body Element."},"documentation":"Left margin (e.g. 1.5in)","$id":"quarto-resource-document-layout-max-width"},"quarto-resource-document-layout-margin-left":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the left margin of the document.","long":"For HTML output, sets the `margin-left` property on the Body element.\n\nFor LaTeX output, sets the left margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the left margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the left page margin.\n"}},"documentation":"Right margin (e.g. 1.5in)","$id":"quarto-resource-document-layout-margin-left"},"quarto-resource-document-layout-margin-right":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the right margin of the document.","long":"For HTML output, sets the `margin-right` property on the Body element.\n\nFor LaTeX output, sets the right margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the right margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the right page margin.\n"}},"documentation":"Options for the geometry package.","$id":"quarto-resource-document-layout-margin-right"},"quarto-resource-document-layout-margin-top":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the top margin of the document.","long":"For HTML output, sets the `margin-top` property on the Body element.\n\nFor LaTeX output, sets the top margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the top margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the top page margin.\n"}},"documentation":"Additional non-color options for the hyperref package.","$id":"quarto-resource-document-layout-margin-top"},"quarto-resource-document-layout-margin-bottom":{"type":"string","description":"be a string","tags":{"formats":["$html-files","context","$pdf-all"],"description":{"short":"Sets the bottom margin of the document.","long":"For HTML output, sets the `margin-bottom` property on the Body element.\n\nFor LaTeX output, sets the bottom margin if `geometry` is not \nused (otherwise `geometry` overrides this value)\n\nFor ConTeXt output, sets the bottom margin if `layout` is not used, \notherwise `layout` overrides these.\n\nFor `wkhtmltopdf` sets the bottom page margin.\n"}},"documentation":"Whether to use document class settings for indentation.","$id":"quarto-resource-document-layout-margin-bottom"},"quarto-resource-document-layout-margin":{"_internalId":4508,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":4507,"type":"object","description":"be an object","properties":{"x":{"type":"string","description":"be a string","tags":{"description":"Horizontal margin (e.g. 1.5in)"},"documentation":"Directory containing reveal.js files."},"y":{"type":"string","description":"be a string","tags":{"description":"Vertical margin (e.g. 1.5in)"},"documentation":"The base url for s5 presentations."},"top":{"type":"string","description":"be a string","tags":{"description":"Top margin (e.g. 1.5in)"},"documentation":"The base url for Slidy presentations."},"bottom":{"type":"string","description":"be a string","tags":{"description":"Bottom margin (e.g. 1.5in)"},"documentation":"The base url for Slideous presentations."},"left":{"type":"string","description":"be a string","tags":{"description":"Left margin (e.g. 1.5in)"},"documentation":"Enable or disable lightbox treatment for images in this document. See\nLightbox\nFigures for more details."},"right":{"type":"string","description":"be a string","tags":{"description":"Right margin (e.g. 1.5in)"},"documentation":"Set this to auto if you’d like any image to be given\nlightbox treatment."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a number, an object","tags":{"formats":["revealjs","typst"],"description":{"short":"Margin settings for Reveal.js or Typst output.","long":"For `revealjs`, the factor of the display size that should remain empty around the content (e.g. 0.1).\n\nFor `typst`, a dictionary specifying page margins. Use `x` and `y` for symmetric\nhorizontal/vertical margins, or `top`, `bottom`, `left`, `right` for\nindividual sides. Values should include units (e.g. `1.5in`, `2cm`).\n"}},"documentation":"Make \\paragraph and \\subparagraph\nfree-standing rather than run-in.","$id":"quarto-resource-document-layout-margin"},"quarto-resource-document-layout-geometry":{"_internalId":4514,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4513,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Options for the geometry package.","long":"Options for the [geometry](https://ctan.org/pkg/geometry) package. For example:\n\n```yaml\ngeometry:\n - top=30mm\n - left=20mm\n - heightrounded\n```\n"}},"documentation":"The effect that should be used when opening and closing the lightbox.\nOne of fade, zoom, none. Defaults\nto zoom.","$id":"quarto-resource-document-layout-geometry"},"quarto-resource-document-layout-hyperrefoptions":{"_internalId":4520,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4519,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":{"short":"Additional non-color options for the hyperref package.","long":"Options for the [hyperref](https://ctan.org/pkg/hyperref) package. For example:\n\n```yaml\nhyperrefoptions:\n - linktoc=all\n - pdfwindowui\n - pdfpagemode=FullScreen \n```\n\nTo customize link colors, please see the [Quarto PDF reference](https://quarto.org/docs/reference/formats/pdf.html#colors).\n"}},"documentation":"The position of the title and description when displaying a lightbox.\nOne of top, bottom, left,\nright. Defaults to bottom.","$id":"quarto-resource-document-layout-hyperrefoptions"},"quarto-resource-document-layout-indent":{"_internalId":4527,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["$pdf-all","ms"],"description":{"short":"Whether to use document class settings for indentation.","long":"Whether to use document class settings for indentation. If the document \nclass settings are not used, the default LaTeX template removes indentation \nand adds space between paragraphs\n\nFor groff (`ms`) documents, the paragraph indent, for example, `2m`.\n"}},"documentation":"Whether galleries should ‘loop’ to first image in the gallery if the\nuser continues past the last image of the gallery. Boolean that defaults\nto true.","$id":"quarto-resource-document-layout-indent"},"quarto-resource-document-layout-block-headings":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":{"short":"Make `\\paragraph` and `\\subparagraph` free-standing rather than run-in.","long":"Make `\\paragraph` and `\\subparagraph` (fourth- and\nfifth-level headings, or fifth- and sixth-level with book\nclasses) free-standing rather than run-in; requires further\nformatting to distinguish from `\\subsubsection` (third- or\nfourth-level headings). Instead of using this option,\n[KOMA-Script](https://ctan.org/pkg/koma-script) can adjust headings \nmore extensively:\n\n```yaml\nheader-includes: |\n \\RedeclareSectionCommand[\n beforeskip=-10pt plus -2pt minus -1pt,\n afterskip=1sp plus -1sp minus 1sp,\n font=\\normalfont\\itshape]{paragraph}\n \\RedeclareSectionCommand[\n beforeskip=-10pt plus -2pt minus -1pt,\n afterskip=1sp plus -1sp minus 1sp,\n font=\\normalfont\\scshape,\n indent=0pt]{subparagraph}\n```\n"}},"documentation":"A class name to apply to the lightbox to allow css targeting. This\nwill replace the lightbox class with your custom class name.","$id":"quarto-resource-document-layout-block-headings"},"quarto-resource-document-library-revealjs-url":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Directory containing reveal.js files."},"documentation":"Show a special icon next to links that leave the current site.","$id":"quarto-resource-document-library-revealjs-url"},"quarto-resource-document-library-s5-url":{"type":"string","description":"be a string","tags":{"formats":["s5"],"description":"The base url for s5 presentations."},"documentation":"Open external links in a new browser window or tab (rather than\nnavigating the current tab).","$id":"quarto-resource-document-library-s5-url"},"quarto-resource-document-library-slidy-url":{"type":"string","description":"be a string","tags":{"formats":["slidy"],"description":"The base url for Slidy presentations."},"documentation":"A regular expression that can be used to determine whether a link is\nan internal link.","$id":"quarto-resource-document-library-slidy-url"},"quarto-resource-document-library-slideous-url":{"type":"string","description":"be a string","tags":{"formats":["slideous"],"description":"The base url for Slideous presentations."},"documentation":"Controls whether links to other rendered formats are displayed in\nHTML output.","$id":"quarto-resource-document-library-slideous-url"},"quarto-resource-document-lightbox-lightbox":{"_internalId":4567,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4544,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"_internalId":4566,"type":"object","description":"be an object","properties":{"match":{"_internalId":4551,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Set this to `auto` if you'd like any image to be given lightbox treatment.","long":"Set this to `auto` if you'd like any image to be given lightbox treatment. If you omit this, only images with the class `lightbox` will be given the lightbox treatment.\n"}},"documentation":"The href for the link."},"effect":{"_internalId":4556,"type":"enum","enum":["fade","zoom","none"],"description":"be one of: `fade`, `zoom`, `none`","completions":["fade","zoom","none"],"exhaustiveCompletions":true,"tags":{"description":"The effect that should be used when opening and closing the lightbox. One of `fade`, `zoom`, `none`. Defaults to `zoom`."},"documentation":"The icon for the link."},"desc-position":{"_internalId":4561,"type":"enum","enum":["top","bottom","left","right"],"description":"be one of: `top`, `bottom`, `left`, `right`","completions":["top","bottom","left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the title and description when displaying a lightbox. One of `top`, `bottom`, `left`, `right`. Defaults to `bottom`."},"documentation":"The format that this link represents."},"loop":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether galleries should 'loop' to first image in the gallery if the user continues past the last image of the gallery. Boolean that defaults to `true`."},"documentation":"The title for this link."},"css-class":{"type":"string","description":"be a string","tags":{"description":"A class name to apply to the lightbox to allow css targeting. This will replace the lightbox class with your custom class name."},"documentation":"The icon for this link."}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, 'auto', an object","tags":{"formats":["$html-doc"],"description":"Enable or disable lightbox treatment for images in this document. See [Lightbox Figures](https://quarto.org/docs/output-formats/html-lightbox-figures.html) for more details."},"documentation":"The title for the link.","$id":"quarto-resource-document-lightbox-lightbox"},"quarto-resource-document-links-link-external-icon":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc","revealjs"],"description":"Show a special icon next to links that leave the current site."},"documentation":"The title for the link.","$id":"quarto-resource-document-links-link-external-icon"},"quarto-resource-document-links-link-external-newwindow":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc","revealjs"],"description":"Open external links in a new browser window or tab (rather than navigating the current tab)."},"documentation":"The href for the link.","$id":"quarto-resource-document-links-link-external-newwindow"},"quarto-resource-document-links-link-external-filter":{"type":"string","description":"be a string","tags":{"formats":["$html-doc","revealjs"],"description":{"short":"A regular expression that can be used to determine whether a link is an internal link.","long":"A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with `http://www.quarto.org/custom` or `https://www.quarto.org/custom`\nas internal links (and others will be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n"}},"documentation":"The icon for the link.","$id":"quarto-resource-document-links-link-external-filter"},"quarto-resource-document-links-format-links":{"_internalId":4605,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4604,"type":"anyOf","anyOf":[{"_internalId":4602,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4592,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The title for the link."},"documentation":"Configures the HTML viewer for notebooks that provide embedded\ncontent."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The style of document to render. Setting this to\nnotebook will create additional notebook style\naffordances."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for the link."},"documentation":"Options for controlling the display and behavior of Notebook\npreviews."}},"patternProperties":{},"required":["text","href"]},{"_internalId":4601,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string","tags":{"description":"The format that this link represents."},"documentation":"Whether to show a back button in the notebook preview."},"text":{"type":"string","description":"be a string","tags":{"description":"The title for this link."},"documentation":"Include a canonical link tag in website pages"},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for this link."},"documentation":"Automatically generate the contents of a page from a list of Quarto\ndocuments or other custom data."}},"patternProperties":{},"required":["text","format"]}],"description":"be at least one of: a string, an object, an object"},{"_internalId":4603,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object, an object","items":{"_internalId":4602,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4592,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The title for the link."},"documentation":"Configures the HTML viewer for notebooks that provide embedded\ncontent."},"href":{"type":"string","description":"be a string","tags":{"description":"The href for the link."},"documentation":"The style of document to render. Setting this to\nnotebook will create additional notebook style\naffordances."},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for the link."},"documentation":"Options for controlling the display and behavior of Notebook\npreviews."}},"patternProperties":{},"required":["text","href"]},{"_internalId":4601,"type":"object","description":"be an object","properties":{"format":{"type":"string","description":"be a string","tags":{"description":"The format that this link represents."},"documentation":"Whether to show a back button in the notebook preview."},"text":{"type":"string","description":"be a string","tags":{"description":"The title for this link."},"documentation":"Include a canonical link tag in website pages"},"icon":{"type":"string","description":"be a string","tags":{"description":"The icon for this link."},"documentation":"Automatically generate the contents of a page from a list of Quarto\ndocuments or other custom data."}},"patternProperties":{},"required":["text","format"]}],"description":"be at least one of: a string, an object, an object"}}],"description":"be at least one of: at least one of: a string, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: a string, an object, an object, an array of values, where each element must be at least one of: a string, an object, an object","tags":{"formats":["$html-doc"],"description":{"short":"Controls whether links to other rendered formats are displayed in HTML output.","long":"Controls whether links to other rendered formats are displayed in HTML output.\n\nPass `false` to disable the display of format lengths or pass a list of format names for which you'd\nlike links to be shown.\n"}},"documentation":"The format that this link represents.","$id":"quarto-resource-document-links-format-links"},"quarto-resource-document-links-notebook-links":{"_internalId":4613,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4612,"type":"enum","enum":["inline","global"],"description":"be one of: `inline`, `global`","completions":["inline","global"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `inline`, `global`","tags":{"formats":["$html-doc"],"description":{"short":"Controls the display of links to notebooks that provided embedded content or are created from documents.","long":"Controls the display of links to notebooks that provided embedded content or are created from documents.\n\nSpecify `false` to disable linking to source Notebooks. Specify `inline` to show links to source notebooks beneath the content they provide. \nSpecify `global` to show a set of global links to source notebooks.\n"}},"documentation":"Mermaid diagram options","$id":"quarto-resource-document-links-notebook-links"},"quarto-resource-document-links-other-links":{"_internalId":4622,"type":"anyOf","anyOf":[{"_internalId":4618,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":4621,"type":"ref","$ref":"other-links","description":"be other-links"}],"description":"be at least one of: 'false', other-links","tags":{"formats":["$html-doc"],"description":"A list of links that should be displayed below the table of contents in an `Other Links` section."},"documentation":"The mermaid built-in theme to use.","$id":"quarto-resource-document-links-other-links"},"quarto-resource-document-links-code-links":{"_internalId":4631,"type":"anyOf","anyOf":[{"_internalId":4627,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true},{"_internalId":4630,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: 'false', code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of links that should be displayed below the table of contents in an `Code Links` section."},"documentation":"List of keywords to be included in the document metadata.","$id":"quarto-resource-document-links-code-links"},"quarto-resource-document-links-notebook-subarticles":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$jats-all"],"description":{"short":"Controls whether referenced notebooks are embedded in JATS output as subarticles.","long":"Controls the display of links to notebooks that provided embedded content or are created from documents.\n\nDefaults to `true` - specify `false` to disable embedding Notebook as subarticles with the JATS output.\n"}},"documentation":"The document subject","$id":"quarto-resource-document-links-notebook-subarticles"},"quarto-resource-document-links-notebook-view":{"_internalId":4650,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4649,"type":"anyOf","anyOf":[{"_internalId":4647,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4646,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"},{"_internalId":4648,"type":"array","description":"be an array of values, where each element must be at least one of: a string, notebook-view-schema","items":{"_internalId":4647,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4646,"type":"ref","$ref":"notebook-view-schema","description":"be notebook-view-schema"}],"description":"be at least one of: a string, notebook-view-schema"}}],"description":"be at least one of: at least one of: a string, notebook-view-schema, an array of values, where each element must be at least one of: a string, notebook-view-schema","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: a string, notebook-view-schema, an array of values, where each element must be at least one of: a string, notebook-view-schema","tags":{"formats":["$html-doc"],"description":"Configures the HTML viewer for notebooks that provide embedded content."},"documentation":"The subject text.","$id":"quarto-resource-document-links-notebook-view"},"quarto-resource-document-links-notebook-view-style":{"_internalId":4653,"type":"enum","enum":["document","notebook"],"description":"be one of: `document`, `notebook`","completions":["document","notebook"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"The style of document to render. Setting this to `notebook` will create additional notebook style affordances.","hidden":true},"documentation":"An EPUB reserved authority value.","$id":"quarto-resource-document-links-notebook-view-style"},"quarto-resource-document-links-notebook-preview-options":{"_internalId":4658,"type":"object","description":"be an object","properties":{"back":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a back button in the notebook preview."},"documentation":"The document description. Some applications show this as\nComments metadata."}},"patternProperties":{},"tags":{"formats":["$html-doc"],"description":"Options for controlling the display and behavior of Notebook previews."},"documentation":"The subject term (defined by the schema).","$id":"quarto-resource-document-links-notebook-preview-options"},"quarto-resource-document-links-canonical-url":{"_internalId":4665,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["$html-doc"],"description":{"short":"Include a canonical link tag in website pages","long":"Include a canonical link tag in website pages. You may pass either `true` to \nautomatically generate a canonical link, or pass a canonical url that you'd like\nto have placed in the `href` attribute of the tag.\n\nCanonical links can only be generated for websites with a known `site-url`.\n"}},"documentation":"The document category.","$id":"quarto-resource-document-links-canonical-url"},"quarto-resource-document-listing-listing":{"_internalId":4682,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":4681,"type":"anyOf","anyOf":[{"_internalId":4679,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4678,"type":"ref","$ref":"website-listing","description":"be website-listing"}],"description":"be at least one of: a string, website-listing"},{"_internalId":4680,"type":"array","description":"be an array of values, where each element must be at least one of: a string, website-listing","items":{"_internalId":4679,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4678,"type":"ref","$ref":"website-listing","description":"be website-listing"}],"description":"be at least one of: a string, website-listing"}}],"description":"be at least one of: at least one of: a string, website-listing, an array of values, where each element must be at least one of: a string, website-listing","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: at least one of: a string, website-listing, an array of values, where each element must be at least one of: a string, website-listing","tags":{"formats":["$html-doc"],"description":"Automatically generate the contents of a page from a list of Quarto documents or other custom data."},"documentation":"The copyright for this document, if any.","$id":"quarto-resource-document-listing-listing"},"quarto-resource-document-mermaid-mermaid":{"_internalId":4688,"type":"object","description":"be an object","properties":{"theme":{"_internalId":4687,"type":"enum","enum":["default","dark","forest","neutral"],"description":"be one of: `default`, `dark`, `forest`, `neutral`","completions":["default","dark","forest","neutral"],"exhaustiveCompletions":true,"tags":{"description":"The mermaid built-in theme to use."},"documentation":"The holder of the copyright."}},"patternProperties":{},"tags":{"formats":["$html-files"],"description":"Mermaid diagram options"},"documentation":"The year for this copyright","$id":"quarto-resource-document-mermaid-mermaid"},"quarto-resource-document-metadata-keywords":{"_internalId":4694,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4693,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$asciidoc-all","$html-files","$pdf-all","context","odt","$office-all"],"description":"List of keywords to be included in the document metadata."},"documentation":"The holder of the copyright.","$id":"quarto-resource-document-metadata-keywords"},"quarto-resource-document-metadata-subject":{"_internalId":4708,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4707,"type":"object","description":"be an object","properties":{"text":{"type":"string","description":"be a string","tags":{"description":"The subject text."},"documentation":"The text to display for the license."},"authority":{"type":"string","description":"be a string","tags":{"description":"An EPUB reserved authority value."},"documentation":"The License for this document, if any. (e.g. CC BY)"},"term":{"type":"string","description":"be a string","tags":{"description":"The subject term (defined by the schema)."},"documentation":"The type of the license."}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an object","tags":{"formats":["$pdf-all","$office-all","odt","$epub-all"],"description":"The document subject"},"documentation":"The text to display for the license.","$id":"quarto-resource-document-metadata-subject"},"quarto-resource-document-metadata-description":{"type":"string","description":"be a string","tags":{"formats":["odt","$office-all"],"description":"The document description. Some applications show this as `Comments` metadata."},"documentation":"A URL to the license.","$id":"quarto-resource-document-metadata-description"},"quarto-resource-document-metadata-category":{"type":"string","description":"be a string","tags":{"formats":["$office-all"],"description":"The document category."},"documentation":"The text to display for the license.","$id":"quarto-resource-document-metadata-category"},"quarto-resource-document-metadata-copyright":{"_internalId":4743,"type":"anyOf","anyOf":[{"_internalId":4740,"type":"object","description":"be an object","properties":{"year":{"_internalId":4727,"type":"anyOf","anyOf":[{"_internalId":4725,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number"},{"_internalId":4726,"type":"array","description":"be an array of values, where each element must be at least one of: a string, a number","items":{"_internalId":4725,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number"}}],"description":"be at least one of: at least one of: a string, a number, an array of values, where each element must be at least one of: a string, a number","tags":{"complete-from":["anyOf",0],"description":"The year for this copyright"},"documentation":"A URL to the license."},"holder":{"_internalId":4733,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The holder of the copyright."},"documentation":"Sets the title metadata for the document"},{"_internalId":4732,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The holder of the copyright."},"documentation":"Sets the title metadata for the document"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"statement":{"_internalId":4739,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"Specify STRING as a prefix at the beginning of the title that appears\nin the HTML header (but not in the title as it appears at the beginning\nof the body)"},{"_internalId":4738,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"Specify STRING as a prefix at the beginning of the title that appears\nin the HTML header (but not in the title as it appears at the beginning\nof the body)"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string","tags":{"formats":["$html-doc","$jats-all"],"description":"The copyright for this document, if any."},"documentation":"The type of the license.","$id":"quarto-resource-document-metadata-copyright"},"quarto-resource-document-metadata-license":{"_internalId":4761,"type":"anyOf","anyOf":[{"_internalId":4759,"type":"anyOf","anyOf":[{"_internalId":4756,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of the license."},"documentation":"The depth to which sections should be numbered."},"link":{"type":"string","description":"be a string","tags":{"description":"A URL to the license."},"documentation":"The numbering depth for sections. (Use number-depth\ninstead)."},"text":{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"Offset for section headings in output (offsets are 0 by default)"}},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"},{"_internalId":4760,"type":"array","description":"be an array of values, where each element must be at least one of: an object, a string","items":{"_internalId":4759,"type":"anyOf","anyOf":[{"_internalId":4756,"type":"object","description":"be an object","properties":{"type":{"type":"string","description":"be a string","tags":{"description":"The type of the license."},"documentation":"The depth to which sections should be numbered."},"link":{"type":"string","description":"be a string","tags":{"description":"A URL to the license."},"documentation":"The numbering depth for sections. (Use number-depth\ninstead)."},"text":{"type":"string","description":"be a string","tags":{"description":"The text to display for the license."},"documentation":"Offset for section headings in output (offsets are 0 by default)"}},"patternProperties":{}},{"type":"string","description":"be a string"}],"description":"be at least one of: an object, a string"}}],"description":"be at least one of: at least one of: an object, a string, an array of values, where each element must be at least one of: an object, a string","tags":{"complete-from":["anyOf",0],"formats":["$html-doc","$jats-all"],"description":{"short":"The License for this document, if any. (e.g. `CC BY`)","long":"The license for this document, if any. \n\nCreative Commons licenses `CC BY`, `CC BY-SA`, `CC BY-ND`, `CC BY-NC`, `CC BY-NC-SA`, and `CC BY-NC-ND` will automatically generate a license link\nin the document appendix. Other license text will be placed in the appendix verbatim.\n"}},"documentation":"Sets the description metadata for the document","$id":"quarto-resource-document-metadata-license"},"quarto-resource-document-metadata-title-meta":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"Sets the title metadata for the document"},"documentation":"Schema to use for numbering sections, e.g. 1.A.1","$id":"quarto-resource-document-metadata-title-meta"},"quarto-resource-document-metadata-pagetitle":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Sets the title metadata for the document"},"documentation":"Shift heading levels by a positive or negative integer. For example,\nwith shift-heading-level-by: -1, level 2 headings become\nlevel 1 headings.","$id":"quarto-resource-document-metadata-pagetitle"},"quarto-resource-document-metadata-title-prefix":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Specify STRING as a prefix at the beginning of the title that appears in \nthe HTML header (but not in the title as it appears at the beginning of the body)\n"},"documentation":"Schema to use for numbering pages, e.g. 1 or\ni, or false to omit page numbering.","$id":"quarto-resource-document-metadata-title-prefix"},"quarto-resource-document-metadata-description-meta":{"type":"string","description":"be a string","tags":{"formats":["$html-files"],"description":"Sets the description metadata for the document"},"documentation":"Sets the page numbering style and location for the document.","$id":"quarto-resource-document-metadata-description-meta"},"quarto-resource-document-metadata-author-meta":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","$html-files"],"description":"Sets the author metadata for the document"},"documentation":"Treat top-level headings as the given division type\n(default, section, chapter, or\npart). The hierarchy order is part, chapter, then section;\nall headings are shifted such that the top-level heading becomes the\nspecified type.","$id":"quarto-resource-document-metadata-author-meta"},"quarto-resource-document-metadata-date-meta":{"type":"string","description":"be a string","tags":{"formats":["$html-all","$pdf-all"],"description":"Sets the date metadata for the document"},"documentation":"If true, force the presence of the OJS runtime. If\nfalse, force the absence instead. If unset, the OJS runtime\nis included only if OJS cells are present in the document.","$id":"quarto-resource-document-metadata-date-meta"},"quarto-resource-document-numbering-number-sections":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Use the specified file as a style reference in producing a docx,\npptx, or odt file.","tags":{"description":{"short":"Number section headings","long":"Number section headings rendered output. By default, sections are not numbered.\nSections with class `.unnumbered` will never be numbered, even if `number-sections`\nis specified.\n"}},"$id":"quarto-resource-document-numbering-number-sections"},"quarto-resource-document-numbering-number-depth":{"type":"number","description":"be a number","tags":{"formats":["$html-all","$pdf-all","docx"],"description":{"short":"The depth to which sections should be numbered.","long":"By default, all headings in your document create a \nnumbered section. You customize numbering depth using \nthe `number-depth` option. \n\nFor example, to only number sections immediately below \nthe chapter level, use this:\n\n```yaml \nnumber-depth: 1\n```\n"}},"documentation":"Branding information to use for this document. If a string, the path\nto a brand file. If false, don’t use branding on this document. If an\nobject, an inline brand definition, or an object with light and dark\nbrand paths or definitions.","$id":"quarto-resource-document-numbering-number-depth"},"quarto-resource-document-numbering-secnumdepth":{"type":"number","description":"be a number","tags":{"formats":["$pdf-all"],"description":"The numbering depth for sections. (Use `number-depth` instead).","hidden":true},"documentation":"Theme name, theme scss file, or a mix of both.","$id":"quarto-resource-document-numbering-secnumdepth"},"quarto-resource-document-numbering-number-offset":{"_internalId":4785,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":4784,"type":"array","description":"be an array of values, where each element must be a number","items":{"type":"number","description":"be a number"}}],"description":"be at least one of: a number, an array of values, where each element must be a number","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":{"short":"Offset for section headings in output (offsets are 0 by default)","long":"Offset for section headings in output (offsets are 0 by default)\nThe first number is added to the section number for\ntop-level headings, the second for second-level headings, and so on.\nSo, for example, if you want the first top-level heading in your\ndocument to be numbered \"6\", specify `number-offset: 5`. If your\ndocument starts with a level-2 heading which you want to be numbered\n\"1.5\", specify `number-offset: [1,4]`. Implies `number-sections`\n"}},"documentation":"The light theme name, theme scss file, or a mix of both.","$id":"quarto-resource-document-numbering-number-offset"},"quarto-resource-document-numbering-section-numbering":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":"Schema to use for numbering sections, e.g. `1.A.1`"},"documentation":"The light theme name, theme scss file, or a mix of both.","$id":"quarto-resource-document-numbering-section-numbering"},"quarto-resource-document-numbering-shift-heading-level-by":{"type":"number","description":"be a number","documentation":"The dark theme name, theme scss file, or a mix of both.","tags":{"description":{"short":"Shift heading levels by a positive or negative integer. For example, with \n`shift-heading-level-by: -1`, level 2 headings become level 1 headings.\n","long":"Shift heading levels by a positive or negative integer.\nFor example, with `shift-heading-level-by: -1`, level 2\nheadings become level 1 headings, and level 3 headings\nbecome level 2 headings. Headings cannot have a level\nless than 1, so a heading that would be shifted below level 1\nbecomes a regular paragraph. Exception: with a shift of -N,\na level-N heading at the beginning of the document\nreplaces the metadata title.\n"}},"$id":"quarto-resource-document-numbering-shift-heading-level-by"},"quarto-resource-document-numbering-page-numbering":{"_internalId":4796,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["typst"],"description":{"short":"Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n","long":"Schema to use for numbering pages, e.g. `1` or `i`, or `false` to omit page numbering.\n\nSee [Typst Numbering](https://typst.app/docs/reference/model/numbering/) \nfor additional information.\n"}},"documentation":"The dark theme name, theme scss file, or a mix of both.","$id":"quarto-resource-document-numbering-page-numbering"},"quarto-resource-document-numbering-pagenumbering":{"_internalId":4802,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4801,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"Sets the page numbering style and location for the document.","long":"Sets the page numbering style and location for the document using the\n`\\setuppagenumbering` command. \n\nSee [ConTeXt Page Numbering](https://wiki.contextgarden.net/Command/setuppagenumbering) \nfor additional information.\n"}},"documentation":"Classes to apply to the body of the document.","$id":"quarto-resource-document-numbering-pagenumbering"},"quarto-resource-document-numbering-top-level-division":{"_internalId":4805,"type":"enum","enum":["default","section","chapter","part"],"description":"be one of: `default`, `section`, `chapter`, `part`","completions":["default","section","chapter","part"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","context","$docbook-all","tei"],"description":{"short":"Treat top-level headings as the given division type (`default`, `section`, `chapter`, or `part`). The hierarchy\norder is part, chapter, then section; all headings are shifted such \nthat the top-level heading becomes the specified type.\n","long":"Treat top-level headings as the given division type (`default`, `section`, `chapter`, or `part`). The hierarchy\norder is part, chapter, then section; all headings are shifted such \nthat the top-level heading becomes the specified type. \n\nThe default behavior is to determine the\nbest division type via heuristics: unless other conditions\napply, `section` is chosen. When the `documentclass`\nvariable is set to `report`, `book`, or `memoir` (unless the\n`article` option is specified), `chapter` is implied as the\nsetting for this option. If `beamer` is the output format,\nspecifying either `chapter` or `part` will cause top-level\nheadings to become `\\part{..}`, while second-level headings\nremain as their default type.\n"}},"documentation":"Disables the built in html features like theming, anchor sections,\ncode block behavior, and more.","$id":"quarto-resource-document-numbering-top-level-division"},"quarto-resource-document-ojs-ojs-engine":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"If `true`, force the presence of the OJS runtime. If `false`, force the absence instead.\nIf unset, the OJS runtime is included only if OJS cells are present in the document.\n"},"documentation":"Enables inclusion of Pandoc default CSS for this document.","$id":"quarto-resource-document-ojs-ojs-engine"},"quarto-resource-document-options-reference-doc":{"type":"string","description":"be a string","tags":{"formats":["$office-all","odt"],"description":"Use the specified file as a style reference in producing a docx, \npptx, or odt file.\n"},"documentation":"One or more CSS style sheets.","$id":"quarto-resource-document-options-reference-doc"},"quarto-resource-document-options-brand":{"_internalId":4812,"type":"ref","$ref":"brand-path-bool-light-dark","description":"be brand-path-bool-light-dark","documentation":"Enables hover over a section title to see an anchor link.","tags":{"description":"Branding information to use for this document. If a string, the path to a brand file.\nIf false, don't use branding on this document. If an object, an inline brand\ndefinition, or an object with light and dark brand paths or definitions.\n"},"$id":"quarto-resource-document-options-brand"},"quarto-resource-document-options-theme":{"_internalId":4837,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4821,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},{"_internalId":4836,"type":"object","description":"be an object","properties":{"light":{"_internalId":4829,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The light theme name, theme scss file, or a mix of both."},"documentation":"Enables setting dark mode based on the\nprefers-color-scheme media query."},{"_internalId":4828,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The light theme name, theme scss file, or a mix of both."},"documentation":"Enables setting dark mode based on the\nprefers-color-scheme media query."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"dark":{"_internalId":4835,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"The dark theme name, theme scss file, or a mix of both."},"documentation":"Wrap sections in <section> tags and attach\nidentifiers to the enclosing <section> rather than\nthe heading itself."},{"_internalId":4834,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"The dark theme name, theme scss file, or a mix of both."},"documentation":"Wrap sections in <section> tags and attach\nidentifiers to the enclosing <section> rather than\nthe heading itself."}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}}},"patternProperties":{},"closed":true}],"description":"be at least one of: a string, an array of values, where each element must be a string, an object","tags":{"formats":["$html-doc","revealjs","beamer","dashboard"],"description":"Theme name, theme scss file, or a mix of both."},"documentation":"Enables tabsets to present content.","$id":"quarto-resource-document-options-theme"},"quarto-resource-document-options-body-classes":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"Classes to apply to the body of the document.\n"},"documentation":"Specify a prefix to be added to all identifiers and internal\nlinks.","$id":"quarto-resource-document-options-body-classes"},"quarto-resource-document-options-minimal":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Disables the built in html features like theming, anchor sections, code block behavior, and more."},"documentation":"Method for obfuscating mailto: links in HTML documents.","$id":"quarto-resource-document-options-minimal"},"quarto-resource-document-options-document-css":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables inclusion of Pandoc default CSS for this document.","hidden":true},"documentation":"Use <q> tags for quotes in HTML.","$id":"quarto-resource-document-options-document-css"},"quarto-resource-document-options-css":{"_internalId":4849,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4848,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$html-all"],"description":"One or more CSS style sheets."},"documentation":"Use the specified engine when producing PDF output.","$id":"quarto-resource-document-options-css"},"quarto-resource-document-options-anchor-sections":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Enables hover over a section title to see an anchor link."},"documentation":"Use the given string as a command-line argument to the\npdf-engine.","$id":"quarto-resource-document-options-anchor-sections"},"quarto-resource-document-options-tabsets":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Enables tabsets to present content."},"documentation":"Pass multiple command-line arguments to the\npdf-engine.","$id":"quarto-resource-document-options-tabsets"},"quarto-resource-document-options-smooth-scroll":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Enables smooth scrolling within the page."},"documentation":"Whether to produce a Beamer article from this presentation.","$id":"quarto-resource-document-options-smooth-scroll"},"quarto-resource-document-options-respect-user-color-scheme":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Enables setting dark mode based on the `prefers-color-scheme` media query.","long":"If set, Quarto reads the `prefers-color-scheme` media query to determine whether to show\nthe user a dark or light page. Otherwise the author-preferred color scheme is shown.\n"}},"documentation":"Add an extra Beamer option using \\setbeameroption{}.","$id":"quarto-resource-document-options-respect-user-color-scheme"},"quarto-resource-document-options-html-math-method":{"_internalId":4871,"type":"anyOf","anyOf":[{"_internalId":4862,"type":"ref","$ref":"math-methods","description":"be math-methods"},{"_internalId":4870,"type":"object","description":"be an object","properties":{"method":{"_internalId":4867,"type":"ref","$ref":"math-methods","description":"be math-methods"},"url":{"type":"string","description":"be a string"}},"patternProperties":{},"required":["method"]}],"description":"be at least one of: math-methods, an object","tags":{"formats":["$html-doc","$epub-all","gfm"],"description":{"short":"Method use to render math in HTML output","long":"Method use to render math in HTML output (`plain`, `webtex`, `gladtex`, `mathml`, `mathjax`, `katex`).\n\nSee the Pandoc documentation on [Math Rendering in HTML](https://pandoc.org/MANUAL.html#math-rendering-in-html)\nfor additional details.\n"}},"documentation":"The aspect ratio for this presentation.","$id":"quarto-resource-document-options-html-math-method"},"quarto-resource-document-options-section-divs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Wrap sections in `
` tags and attach identifiers to the enclosing `
`\nrather than the heading itself.\n"},"documentation":"The logo image.","$id":"quarto-resource-document-options-section-divs"},"quarto-resource-document-options-identifier-prefix":{"type":"string","description":"be a string","tags":{"formats":["$html-files","$docbook-all","$markdown-all","haddock"],"description":{"short":"Specify a prefix to be added to all identifiers and internal links.","long":"Specify a prefix to be added to all identifiers and internal links in HTML and\nDocBook output, and to footnote numbers in Markdown and Haddock output. \nThis is useful for preventing duplicate identifiers when generating fragments\nto be included in other pages.\n"}},"documentation":"The image for the title slide.","$id":"quarto-resource-document-options-identifier-prefix"},"quarto-resource-document-options-email-obfuscation":{"_internalId":4878,"type":"enum","enum":["none","references","javascript"],"description":"be one of: `none`, `references`, `javascript`","completions":["none","references","javascript"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Method for obfuscating mailto: links in HTML documents.","long":"Specify a method for obfuscating `mailto:` links in HTML documents.\n\n- `javascript`: Obfuscate links using JavaScript.\n- `references`: Obfuscate links by printing their letters as decimal or hexadecimal character references.\n- `none` (default): Do not obfuscate links.\n"}},"documentation":"Controls navigation symbols for the presentation (empty,\nframe, vertical, or\nhorizontal)","$id":"quarto-resource-document-options-email-obfuscation"},"quarto-resource-document-options-html-q-tags":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-all"],"description":"Use `` tags for quotes in HTML."},"documentation":"Whether to enable title pages for new sections.","$id":"quarto-resource-document-options-html-q-tags"},"quarto-resource-document-options-pdf-engine":{"_internalId":4883,"type":"enum","enum":["pdflatex","lualatex","xelatex","latexmk","tectonic","wkhtmltopdf","weasyprint","pagedjs-cli","prince","context","pdfroff","typst"],"description":"be one of: `pdflatex`, `lualatex`, `xelatex`, `latexmk`, `tectonic`, `wkhtmltopdf`, `weasyprint`, `pagedjs-cli`, `prince`, `context`, `pdfroff`, `typst`","completions":["pdflatex","lualatex","xelatex","latexmk","tectonic","wkhtmltopdf","weasyprint","pagedjs-cli","prince","context","pdfroff","typst"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","ms","context"],"description":{"short":"Use the specified engine when producing PDF output.","long":"Use the specified engine when producing PDF output. If the engine is not\nin your PATH, the full path of the engine may be specified here. If this\noption is not specified, Quarto uses the following defaults\ndepending on the output format in use:\n\n- `latex`: `lualatex` (other options: `pdflatex`, `xelatex`,\n `tectonic`, `latexmk`)\n- `context`: `context`\n- `html`: `wkhtmltopdf` (other options: `prince`, `weasyprint`, `pagedjs-cli`;\n see [print-css.rocks](https://print-css.rocks) for a good\n introduction to PDF generation from HTML/CSS.)\n- `ms`: `pdfroff`\n- `typst`: `typst`\n"}},"documentation":"The Beamer color theme for this presentation, passed to\n\\usecolortheme.","$id":"quarto-resource-document-options-pdf-engine"},"quarto-resource-document-options-pdf-engine-opt":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all","ms","context"],"description":{"short":"Use the given string as a command-line argument to the `pdf-engine`.","long":"Use the given string as a command-line argument to the pdf-engine.\nFor example, to use a persistent directory foo for latexmk’s auxiliary\nfiles, use `pdf-engine-opt: -outdir=foo`. Note that no check for \nduplicate options is done.\n"}},"documentation":"The Beamer color theme options for this presentation, passed to\n\\usecolortheme.","$id":"quarto-resource-document-options-pdf-engine-opt"},"quarto-resource-document-options-pdf-engine-opts":{"_internalId":4890,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$pdf-all","ms","context"],"description":{"short":"Pass multiple command-line arguments to the `pdf-engine`.","long":"Use the given strings passed as a array as command-line arguments to the pdf-engine.\nThis is an alternative to `pdf-engine-opt` for passing multiple options.\n"}},"documentation":"The Beamer font theme for this presentation, passed to\n\\usefonttheme.","$id":"quarto-resource-document-options-pdf-engine-opts"},"quarto-resource-document-options-beamerarticle":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf"],"description":"Whether to produce a Beamer article from this presentation."},"documentation":"The Beamer font theme options for this presentation, passed to\n\\usefonttheme.","$id":"quarto-resource-document-options-beamerarticle"},"quarto-resource-document-options-beameroption":{"_internalId":4898,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4897,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"Add an extra Beamer option using `\\setbeameroption{}`."},"documentation":"The Beamer inner theme for this presentation, passed to\n\\useinnertheme.","$id":"quarto-resource-document-options-beameroption"},"quarto-resource-document-options-aspectratio":{"_internalId":4901,"type":"enum","enum":[43,169,1610,149,141,54,32],"description":"be one of: `43`, `169`, `1610`, `149`, `141`, `54`, `32`","completions":["43","169","1610","149","141","54","32"],"exhaustiveCompletions":true,"tags":{"formats":["beamer"],"description":"The aspect ratio for this presentation."},"documentation":"The Beamer inner theme options for this presentation, passed to\n\\useinnertheme.","$id":"quarto-resource-document-options-aspectratio"},"quarto-resource-document-options-logo":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The logo image."},"documentation":"The Beamer outer theme for this presentation, passed to\n\\useoutertheme.","$id":"quarto-resource-document-options-logo"},"quarto-resource-document-options-titlegraphic":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The image for the title slide."},"documentation":"The Beamer outer theme options for this presentation, passed to\n\\useoutertheme.","$id":"quarto-resource-document-options-titlegraphic"},"quarto-resource-document-options-navigation":{"_internalId":4908,"type":"enum","enum":["empty","frame","vertical","horizontal"],"description":"be one of: `empty`, `frame`, `vertical`, `horizontal`","completions":["empty","frame","vertical","horizontal"],"exhaustiveCompletions":true,"tags":{"formats":["beamer"],"description":"Controls navigation symbols for the presentation (`empty`, `frame`, `vertical`, or `horizontal`)"},"documentation":"Options passed to LaTeX Beamer themes inside\n\\usetheme.","$id":"quarto-resource-document-options-navigation"},"quarto-resource-document-options-section-titles":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["beamer"],"description":"Whether to enable title pages for new sections."},"documentation":"The section number in man pages.","$id":"quarto-resource-document-options-section-titles"},"quarto-resource-document-options-colortheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer color theme for this presentation, passed to `\\usecolortheme`."},"documentation":"Enable and disable extensions for markdown output (e.g. “+emoji”)","$id":"quarto-resource-document-options-colortheme"},"quarto-resource-document-options-colorthemeoptions":{"_internalId":4918,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4917,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer color theme options for this presentation, passed to `\\usecolortheme`."},"documentation":"Specify whether to use atx (#-prefixed) or\nsetext (underlined) headings for level 1 and 2 headings\n(atx or setext).","$id":"quarto-resource-document-options-colorthemeoptions"},"quarto-resource-document-options-fonttheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer font theme for this presentation, passed to `\\usefonttheme`."},"documentation":"Determines which ipynb cell output formats are rendered\n(none, all, or best).","$id":"quarto-resource-document-options-fonttheme"},"quarto-resource-document-options-fontthemeoptions":{"_internalId":4926,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4925,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer font theme options for this presentation, passed to `\\usefonttheme`."},"documentation":"semver version range for required quarto version","$id":"quarto-resource-document-options-fontthemeoptions"},"quarto-resource-document-options-innertheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer inner theme for this presentation, passed to `\\useinnertheme`."},"documentation":"The mode to use when previewing this document.","$id":"quarto-resource-document-options-innertheme"},"quarto-resource-document-options-innerthemeoptions":{"_internalId":4934,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4933,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer inner theme options for this presentation, passed to `\\useinnertheme`."},"documentation":"Adds the necessary setup to the document preamble to generate PDF/A\nof the type specified.","$id":"quarto-resource-document-options-innerthemeoptions"},"quarto-resource-document-options-outertheme":{"type":"string","description":"be a string","tags":{"formats":["beamer"],"description":"The Beamer outer theme for this presentation, passed to `\\useoutertheme`."},"documentation":"When used in conjunction with pdfa, specifies the ICC\nprofile to use in the PDF, e.g. default.cmyk.","$id":"quarto-resource-document-options-outertheme"},"quarto-resource-document-options-outerthemeoptions":{"_internalId":4942,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4941,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"The Beamer outer theme options for this presentation, passed to `\\useoutertheme`."},"documentation":"When used in conjunction with pdfa, specifies the output\nintent for the colors.","$id":"quarto-resource-document-options-outerthemeoptions"},"quarto-resource-document-options-themeoptions":{"_internalId":4948,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4947,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["beamer"],"description":"Options passed to LaTeX Beamer themes inside `\\usetheme`."},"documentation":"PDF conformance standard (e.g., ua-2, a-2b, 1.7)","$id":"quarto-resource-document-options-themeoptions"},"quarto-resource-document-options-section":{"type":"number","description":"be a number","tags":{"formats":["man"],"description":"The section number in man pages."},"documentation":"Document bibliography (BibTeX or CSL). May be a single file or a list\nof files","$id":"quarto-resource-document-options-section"},"quarto-resource-document-options-variant":{"type":"string","description":"be a string","tags":{"formats":["$markdown-all"],"description":"Enable and disable extensions for markdown output (e.g. \"+emoji\")\n"},"documentation":"Citation Style Language file to use for formatting references.","$id":"quarto-resource-document-options-variant"},"quarto-resource-document-options-markdown-headings":{"_internalId":4955,"type":"enum","enum":["setext","atx"],"description":"be one of: `setext`, `atx`","completions":["setext","atx"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all","ipynb"],"description":"Specify whether to use `atx` (`#`-prefixed) or\n`setext` (underlined) headings for level 1 and 2\nheadings (`atx` or `setext`).\n"},"documentation":"Enables a hover popup for citation that shows the reference\ninformation.","$id":"quarto-resource-document-options-markdown-headings"},"quarto-resource-document-options-ipynb-output":{"_internalId":4958,"type":"enum","enum":["none","all","best"],"description":"be one of: `none`, `all`, `best`","completions":["none","all","best"],"exhaustiveCompletions":true,"tags":{"formats":["ipynb"],"description":{"short":"Determines which ipynb cell output formats are rendered (`none`, `all`, or `best`).","long":"Determines which ipynb cell output formats are rendered.\n\n- `all`: Preserve all of the data formats included in the original.\n- `none`: Omit the contents of data cells.\n- `best` (default): Instruct pandoc to try to pick the\n richest data block in each output cell that is compatible\n with the output format.\n"}},"documentation":"Where citation information should be displayed (document\nor margin)","$id":"quarto-resource-document-options-ipynb-output"},"quarto-resource-document-options-quarto-required":{"type":"string","description":"be a string","documentation":"Method used to format citations (citeproc,\nnatbib, or biblatex).","tags":{"description":{"short":"semver version range for required quarto version","long":"A semver version range describing the supported quarto versions for this document\nor project.\n\nExamples:\n\n- `>= 1.1.0`: Require at least quarto version 1.1\n- `1.*`: Require any quarto versions whose major version number is 1\n"}},"$id":"quarto-resource-document-options-quarto-required"},"quarto-resource-document-options-preview-mode":{"type":"string","description":"be a string","tags":{"formats":["$jats-all","gfm"],"description":{"short":"The mode to use when previewing this document.","long":"The mode to use when previewing this document. To disable any special\npreviewing features, pass `raw` as the preview-mode.\n"}},"documentation":"Turn on built-in citation processing","$id":"quarto-resource-document-options-preview-mode"},"quarto-resource-document-pdfa-pdfa":{"_internalId":4969,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"type":"string","description":"be a string"}],"description":"be at least one of: `true` or `false`, a string","tags":{"formats":["context"],"description":{"short":"Adds the necessary setup to the document preamble to generate PDF/A of the type specified.","long":"Adds the necessary setup to the document preamble to generate PDF/A of the type specified.\n\nIf the value is set to `true`, `1b:2005` will be used as default.\n\nTo successfully generate PDF/A the required\nICC color profiles have to be available and the content and all\nincluded files (such as images) have to be standard conforming.\nThe ICC profiles and output intent may be specified using the\nvariables `pdfaiccprofile` and `pdfaintent`. See also [ConTeXt\nPDFA](https://wiki.contextgarden.net/PDF/A) for more details.\n"}},"documentation":"A list of options for BibLaTeX.","$id":"quarto-resource-document-pdfa-pdfa"},"quarto-resource-document-pdfa-pdfaiccprofile":{"_internalId":4975,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4974,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["context"],"description":{"short":"When used in conjunction with `pdfa`, specifies the ICC profile to use \nin the PDF, e.g. `default.cmyk`.\n","long":"When used in conjunction with `pdfa`, specifies the ICC profile to use \nin the PDF, e.g. `default.cmyk`.\n\nIf left unspecified, `sRGB.icc` is used as default. May be repeated to \ninclude multiple profiles. Note that the profiles have to be available \non the system. They can be obtained from \n[ConTeXt ICC Profiles](https://wiki.contextgarden.net/PDFX#ICC_profiles).\n"}},"documentation":"One or more options to provide for natbib when\ngenerating a bibliography.","$id":"quarto-resource-document-pdfa-pdfaiccprofile"},"quarto-resource-document-pdfa-pdfaintent":{"type":"string","description":"be a string","tags":{"formats":["context"],"description":{"short":"When used in conjunction with `pdfa`, specifies the output intent for the colors.","long":"When used in conjunction with `pdfa`, specifies the output intent for\nthe colors, for example `ISO coated v2 300\\letterpercent\\space (ECI)`\n\nIf left unspecified, `sRGB IEC61966-2.1` is used as default.\n"}},"documentation":"The bibliography style to use\n(e.g. \\bibliographystyle{dinat}) when using\nnatbib or biblatex.","$id":"quarto-resource-document-pdfa-pdfaintent"},"quarto-resource-document-pdfa-pdf-standard":{"_internalId":4984,"type":"anyOf","anyOf":[{"_internalId":4982,"type":"enum","enum":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"description":"be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","completions":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"exhaustiveCompletions":true},{"_internalId":4983,"type":"array","description":"be an array of values, where each element must be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","items":{"_internalId":4982,"type":"enum","enum":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"description":"be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","completions":["1.4","1.5","1.6","1.7","2.0","a-1b","a-2a","a-2b","a-2u","a-3a","a-3b","a-3u","a-4","a-4f","a-1a","a-4e","ua-1","ua-2","x-4","x-4p","x-5g","x-5n","x-5pg","x-6","x-6n","x-6p"],"exhaustiveCompletions":true}}],"description":"be at least one of: one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`, an array of values, where each element must be one of: `1.4`, `1.5`, `1.6`, `1.7`, `2.0`, `a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`, `a-1a`, `a-4e`, `ua-1`, `ua-2`, `x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all","typst"],"description":{"short":"PDF conformance standard (e.g., ua-2, a-2b, 1.7)","long":"Specifies PDF conformance standards and/or version for the output.\n\nAccepts a single value or array of values:\n\n**PDF versions** (both Typst and LaTeX):\n`1.4`, `1.5`, `1.6`, `1.7`, `2.0`\n\n**PDF/A standards** (both engines):\n`a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`\n\n**PDF/A standards** (Typst only):\n`a-1a`, `a-4e`\n\n**PDF/UA standards**:\n`ua-1` (Typst), `ua-2` (LaTeX)\n\n**PDF/X standards** (LaTeX only):\n`x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`\n\nExample: `pdf-standard: [a-2b, ua-2]` for accessible archival PDF.\n"}},"documentation":"The bibliography style to use\n(e.g. #set bibliography(style: \"apa\")) when using typst\nbuilt-in citation system (e.g when not citeproc: true).","$id":"quarto-resource-document-pdfa-pdf-standard"},"quarto-resource-document-references-bibliography":{"_internalId":4990,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":4989,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Document bibliography (BibTeX or CSL). May be a single file or a list of files\n"},"documentation":"The bibliography title to use when using natbib or\nbiblatex.","$id":"quarto-resource-document-references-bibliography"},"quarto-resource-document-references-csl":{"type":"string","description":"be a string","documentation":"Controls whether to output bibliography configuration for\nnatbib or biblatex when cite method is not\nciteproc.","tags":{"description":"Citation Style Language file to use for formatting references."},"$id":"quarto-resource-document-references-csl"},"quarto-resource-document-references-citations-hover":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":"Enables a hover popup for citation that shows the reference information."},"documentation":"JSON file containing abbreviations of journals that should be used in\nformatted bibliographies.","$id":"quarto-resource-document-references-citations-hover"},"quarto-resource-document-references-citation-location":{"_internalId":4997,"type":"enum","enum":["document","margin"],"description":"be one of: `document`, `margin`","completions":["document","margin"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc","typst"],"description":"Where citation information should be displayed (`document` or `margin`)"},"documentation":"If true, citations will be hyperlinked to the corresponding\nbibliography entries (for author-date and numerical styles only).\nDefaults to false.","$id":"quarto-resource-document-references-citation-location"},"quarto-resource-document-references-cite-method":{"_internalId":5000,"type":"enum","enum":["citeproc","natbib","biblatex"],"description":"be one of: `citeproc`, `natbib`, `biblatex`","completions":["citeproc","natbib","biblatex"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Method used to format citations (`citeproc`, `natbib`, or `biblatex`).\n"},"documentation":"If true, DOIs, PMCIDs, PMID, and URLs in bibliographies will be\nrendered as hyperlinks.","$id":"quarto-resource-document-references-cite-method"},"quarto-resource-document-references-citeproc":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"documentation":"Places footnote references or superscripted numerical citations after\nfollowing punctuation.","tags":{"description":{"short":"Turn on built-in citation processing","long":"Turn on built-in citation processing. To use this feature, you will need\nto have a document containing citations and a source of bibliographic data: \neither an external bibliography file or a list of `references` in the \ndocument's YAML metadata. You can optionally also include a `csl` \ncitation style file.\n"}},"$id":"quarto-resource-document-references-citeproc"},"quarto-resource-document-references-biblatexoptions":{"_internalId":5008,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5007,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":"A list of options for BibLaTeX."},"documentation":"Format to read from","$id":"quarto-resource-document-references-biblatexoptions"},"quarto-resource-document-references-natbiboptions":{"_internalId":5014,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5013,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["$pdf-all"],"description":"One or more options to provide for `natbib` when generating a bibliography."},"documentation":"Format to read from","$id":"quarto-resource-document-references-natbiboptions"},"quarto-resource-document-references-biblio-style":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"The bibliography style to use (e.g. `\\bibliographystyle{dinat}`) when using `natbib` or `biblatex`."},"documentation":"Output file to write to","$id":"quarto-resource-document-references-biblio-style"},"quarto-resource-document-references-bibliographystyle":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":"The bibliography style to use (e.g. `#set bibliography(style: \"apa\")`) when using typst built-in citation system (e.g when not `citeproc: true`)."},"documentation":"Extension to use for generated output file","$id":"quarto-resource-document-references-bibliographystyle"},"quarto-resource-document-references-biblio-title":{"type":"string","description":"be a string","tags":{"formats":["$pdf-all"],"description":"The bibliography title to use when using `natbib` or `biblatex`."},"documentation":"Use the specified file as a custom template for the generated\ndocument.","$id":"quarto-resource-document-references-biblio-title"},"quarto-resource-document-references-biblio-config":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"Controls whether to output bibliography configuration for `natbib` or `biblatex` when cite method is not `citeproc`."},"documentation":"Include the specified files as partials accessible to the template\nfor the generated content.","$id":"quarto-resource-document-references-biblio-config"},"quarto-resource-document-references-citation-abbreviations":{"type":"string","description":"be a string","documentation":"Produce a standalone HTML file with no external dependencies","tags":{"description":{"short":"JSON file containing abbreviations of journals that should be used in formatted bibliographies.","long":"JSON file containing abbreviations of journals that should be\nused in formatted bibliographies when `form=\"short\"` is\nspecified. The format of the file can be illustrated with an\nexample:\n\n```json\n{ \"default\": {\n \"container-title\": {\n \"Lloyd's Law Reports\": \"Lloyd's Rep\",\n \"Estates Gazette\": \"EG\",\n \"Scots Law Times\": \"SLT\"\n }\n }\n}\n```\n"}},"$id":"quarto-resource-document-references-citation-abbreviations"},"quarto-resource-document-references-link-citations":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","docx"],"description":"If true, citations will be hyperlinked to the corresponding bibliography entries (for author-date and numerical styles only). Defaults to false."},"documentation":"Produce a standalone HTML file with no external dependencies","$id":"quarto-resource-document-references-link-citations"},"quarto-resource-document-references-link-bibliography":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","docx"],"description":{"short":"If true, DOIs, PMCIDs, PMID, and URLs in bibliographies will be rendered as hyperlinks.","long":"If true, DOIs, PMCIDs, PMID, and URLs in bibliographies will be rendered as hyperlinks. (If an entry contains a DOI, PMCID, PMID, or URL, but none of \nthese fields are rendered by the style, then the title, or in the absence of a title the whole entry, will be hyperlinked.) Defaults to true.\n"}},"documentation":"Embed math libraries (e.g. MathJax) within\nself-contained output.","$id":"quarto-resource-document-references-link-bibliography"},"quarto-resource-document-references-notes-after-punctuation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","docx"],"description":{"short":"Places footnote references or superscripted numerical citations after following punctuation.","long":"If true (the default for note styles), Quarto (via Pandoc) will put footnote references or superscripted numerical citations after \nfollowing punctuation. For example, if the source contains `blah blah [@jones99]`., the result will look like `blah blah.[^1]`, with \nthe note moved after the period and the space collapsed. \n\nIf false, the space will still be collapsed, but the footnote will not be moved after the punctuation. The option may also be used \nin numerical styles that use superscripts for citation numbers (but for these styles the default is not to move the citation).\n"}},"documentation":"Specify executables or Lua scripts to be used as a filter\ntransforming the pandoc AST after the input is parsed and before the\noutput is written.","$id":"quarto-resource-document-references-notes-after-punctuation"},"quarto-resource-document-render-from":{"type":"string","description":"be a string","documentation":"Specify Lua scripts that implement shortcode handlers","tags":{"description":{"short":"Format to read from","long":"Format to read from. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. markdown+emoji).\n"}},"$id":"quarto-resource-document-render-from"},"quarto-resource-document-render-reader":{"type":"string","description":"be a string","documentation":"Keep the markdown file generated by executing code","tags":{"description":{"short":"Format to read from","long":"Format to read from. Extensions can be individually enabled or disabled by appending +EXTENSION or -EXTENSION to the format name (e.g. markdown+emoji).\n"}},"$id":"quarto-resource-document-render-reader"},"quarto-resource-document-render-output-file":{"_internalId":5035,"type":"ref","$ref":"pandoc-format-output-file","description":"be pandoc-format-output-file","documentation":"Keep the notebook file generated from executing code.","tags":{"description":"Output file to write to"},"$id":"quarto-resource-document-render-output-file"},"quarto-resource-document-render-output-ext":{"type":"string","description":"be a string","documentation":"Filters to pre-process ipynb files before rendering to markdown","tags":{"description":"Extension to use for generated output file\n"},"$id":"quarto-resource-document-render-output-ext"},"quarto-resource-document-render-template":{"type":"string","description":"be a string","tags":{"formats":["!$office-all","!ipynb"],"description":"Use the specified file as a custom template for the generated document.\n"},"documentation":"Specify which nodes should be run interactively (displaying output\nfrom expressions)","$id":"quarto-resource-document-render-template"},"quarto-resource-document-render-template-partials":{"_internalId":5045,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5044,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"formats":["!$office-all","!ipynb"],"description":"Include the specified files as partials accessible to the template for the generated content.\n"},"documentation":"If true, use the “notebook_connected” plotly renderer, which\ndownloads its dependencies from a CDN and requires an internet\nconnection to view.","$id":"quarto-resource-document-render-template-partials"},"quarto-resource-document-render-embed-resources":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Produce a standalone HTML file with no external dependencies","long":"Produce a standalone HTML file with no external dependencies, using\n`data:` URIs to incorporate the contents of linked scripts, stylesheets,\nimages, and videos. The resulting file should be \"self-contained,\" in the\nsense that it needs no external files and no net access to be displayed\nproperly by a browser. This option works only with HTML output formats,\nincluding `html4`, `html5`, `html+lhs`, `html5+lhs`, `s5`, `slidy`,\n`slideous`, `dzslides`, and `revealjs`. Scripts, images, and stylesheets at\nabsolute URLs will be downloaded; those at relative URLs will be sought\nrelative to the working directory (if the first source\nfile is local) or relative to the base URL (if the first source\nfile is remote). Elements with the attribute\n`data-external=\"1\"` will be left alone; the documents they\nlink to will not be incorporated in the document.\nLimitation: resources that are loaded dynamically through\nJavaScript cannot be incorporated; as a result, some\nadvanced features (e.g. zoom or speaker notes) may not work\nin an offline \"self-contained\" `reveal.js` slide show.\n"}},"documentation":"Keep the intermediate typst file used during render.","$id":"quarto-resource-document-render-embed-resources"},"quarto-resource-document-render-self-contained":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Produce a standalone HTML file with no external dependencies","long":"Produce a standalone HTML file with no external dependencies. Note that\nthis option has been deprecated in favor of `embed-resources`.\n"},"hidden":true},"documentation":"Keep the intermediate tex file used during render.","$id":"quarto-resource-document-render-self-contained"},"quarto-resource-document-render-self-contained-math":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-files"],"description":{"short":"Embed math libraries (e.g. MathJax) within `self-contained` output.","long":"Embed math libraries (e.g. MathJax) within `self-contained` output.\nNote that math libraries are not embedded by default because they are \n quite large and often time consuming to download.\n"}},"documentation":"Extract images and other media contained in or linked from the source\ndocument to the path DIR.","$id":"quarto-resource-document-render-self-contained-math"},"quarto-resource-document-render-filters":{"_internalId":5054,"type":"ref","$ref":"pandoc-format-filters","description":"be pandoc-format-filters","documentation":"List of paths to search for images and other resources.","tags":{"description":"Specify executables or Lua scripts to be used as a filter transforming\nthe pandoc AST after the input is parsed and before the output is written.\n"},"$id":"quarto-resource-document-render-filters"},"quarto-resource-document-render-shortcodes":{"_internalId":5057,"type":"ref","$ref":"pandoc-shortcodes","description":"be pandoc-shortcodes","documentation":"Specify a default extension to use when image paths/URLs have no\nextension.","tags":{"description":"Specify Lua scripts that implement shortcode handlers\n"},"$id":"quarto-resource-document-render-shortcodes"},"quarto-resource-document-render-keep-md":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"description":"Keep the markdown file generated by executing code"},"documentation":"Specifies a custom abbreviations file, with abbreviations one to a\nline.","$id":"quarto-resource-document-render-keep-md"},"quarto-resource-document-render-keep-ipynb":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"description":"Keep the notebook file generated from executing code."},"documentation":"Specify the default dpi (dots per inch) value for conversion from\npixels to inch/ centimeters and vice versa.","$id":"quarto-resource-document-render-keep-ipynb"},"quarto-resource-document-render-ipynb-filters":{"_internalId":5066,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"contexts":["document-execute"],"description":"Filters to pre-process ipynb files before rendering to markdown"},"documentation":"If none, do not process tables in HTML input.","$id":"quarto-resource-document-render-ipynb-filters"},"quarto-resource-document-render-ipynb-shell-interactivity":{"_internalId":5069,"type":"enum","enum":[null,"all","last","last_expr","none","last_expr_or_assign"],"description":"be one of: `null`, `all`, `last`, `last_expr`, `none`, `last_expr_or_assign`","completions":["null","all","last","last_expr","none","last_expr_or_assign"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"engine":"jupyter","description":"Specify which nodes should be run interactively (displaying output from expressions)\n"},"documentation":"If none, ignore any divs with\nhtml-pre-tag-processing=parse enabled.","$id":"quarto-resource-document-render-ipynb-shell-interactivity"},"quarto-resource-document-render-plotly-connected":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"contexts":["document-execute"],"engine":"jupyter","description":"If true, use the \"notebook_connected\" plotly renderer, which downloads\nits dependencies from a CDN and requires an internet connection to view.\n"},"documentation":"CSS property translation","$id":"quarto-resource-document-render-plotly-connected"},"quarto-resource-document-render-keep-typ":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":"Keep the intermediate typst file used during render."},"documentation":"If true, attempt to use rsvg-convert to\nconvert SVG images to PDF.","$id":"quarto-resource-document-render-keep-typ"},"quarto-resource-document-render-keep-tex":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pdf","beamer"],"description":"Keep the intermediate tex file used during render."},"documentation":"Logo image (placed in bottom right corner of slides)","$id":"quarto-resource-document-render-keep-tex"},"quarto-resource-document-render-extract-media":{"type":"string","description":"be a string","documentation":"Footer to include on all slides","tags":{"description":{"short":"Extract images and other media contained in or linked from the source document to the\npath DIR.\n","long":"Extract images and other media contained in or linked from the source document to the\npath DIR, creating it if necessary, and adjust the images references in the document\nso they point to the extracted files. Media are downloaded, read from the file\nsystem, or extracted from a binary container (e.g. docx), as needed. The original\nfile paths are used if they are relative paths not containing ... Otherwise filenames\nare constructed from the SHA1 hash of the contents.\n"}},"$id":"quarto-resource-document-render-extract-media"},"quarto-resource-document-render-resource-path":{"_internalId":5082,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"documentation":"Allow content that overflows slides vertically to scroll","tags":{"description":"List of paths to search for images and other resources.\n"},"$id":"quarto-resource-document-render-resource-path"},"quarto-resource-document-render-default-image-extension":{"type":"string","description":"be a string","documentation":"Use a smaller default font for slide content","tags":{"description":{"short":"Specify a default extension to use when image paths/URLs have no extension.\n","long":"Specify a default extension to use when image paths/URLs have no\nextension. This allows you to use the same source for formats that\nrequire different kinds of images. Currently this option only affects\nthe Markdown and LaTeX readers.\n"}},"$id":"quarto-resource-document-render-default-image-extension"},"quarto-resource-document-render-abbreviations":{"type":"string","description":"be a string","documentation":"Location of output relative to the code that generated it\n(default, fragment, slide,\ncolumn, or column-location)","tags":{"description":{"short":"Specifies a custom abbreviations file, with abbreviations one to a line.\n","long":"Specifies a custom abbreviations file, with abbreviations one to a line.\nThis list is used when reading Markdown input: strings found in this list\nwill be followed by a nonbreaking space, and the period will not produce sentence-ending space in formats like LaTeX. The strings may not contain\nspaces.\n"}},"$id":"quarto-resource-document-render-abbreviations"},"quarto-resource-document-render-dpi":{"type":"number","description":"be a number","documentation":"Flags if the presentation is running in an embedded mode","tags":{"description":{"short":"Specify the default dpi (dots per inch) value for conversion from pixels to inch/\ncentimeters and vice versa.\n","long":"Specify the default dpi (dots per inch) value for conversion from pixels to inch/\ncentimeters and vice versa. (Technically, the correct term would be ppi: pixels per\ninch.) The default is `96`. When images contain information about dpi internally, the\nencoded value is used instead of the default specified by this option.\n"}},"$id":"quarto-resource-document-render-dpi"},"quarto-resource-document-render-html-table-processing":{"_internalId":5091,"type":"enum","enum":["none"],"description":"be 'none'","completions":["none"],"exhaustiveCompletions":true,"documentation":"The display mode that will be used to show slides","tags":{"description":"If `none`, do not process tables in HTML input."},"$id":"quarto-resource-document-render-html-table-processing"},"quarto-resource-document-render-html-pre-tag-processing":{"_internalId":5094,"type":"enum","enum":["none","parse"],"description":"be one of: `none`, `parse`","completions":["none","parse"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":"If `none`, ignore any divs with `html-pre-tag-processing=parse` enabled."},"documentation":"For slides with a single top-level image, automatically stretch it to\nfill the slide.","$id":"quarto-resource-document-render-html-pre-tag-processing"},"quarto-resource-document-render-css-property-processing":{"_internalId":5097,"type":"enum","enum":["none","translate"],"description":"be one of: `none`, `translate`","completions":["none","translate"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":{"short":"CSS property translation","long":"If `translate`, translate CSS properties into output format properties. If `none`, do not process css properties."}},"documentation":"The ‘normal’ width of the presentation","$id":"quarto-resource-document-render-css-property-processing"},"quarto-resource-document-render-use-rsvg-convert":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all"],"description":"If `true`, attempt to use `rsvg-convert` to convert SVG images to PDF."},"documentation":"The ‘normal’ height of the presentation","$id":"quarto-resource-document-render-use-rsvg-convert"},"quarto-resource-document-reveal-content-logo":{"_internalId":5102,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"formats":["revealjs"],"description":"Logo image (placed in bottom right corner of slides)"},"documentation":"Bounds for smallest possible scale to apply to content","$id":"quarto-resource-document-reveal-content-logo"},"quarto-resource-document-reveal-content-footer":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":{"short":"Footer to include on all slides","long":"Footer to include on all slides. Can also be set per-slide by including a\ndiv with class `.footer` on the slide.\n"}},"documentation":"Bounds for largest possible scale to apply to content","$id":"quarto-resource-document-reveal-content-footer"},"quarto-resource-document-reveal-content-scrollable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Allow content that overflows slides vertically to scroll","long":"`true` to allow content that overflows slides vertically to scroll. This can also\nbe set per-slide by including the `.scrollable` class on the slide title.\n"}},"documentation":"Vertical centering of slides","$id":"quarto-resource-document-reveal-content-scrollable"},"quarto-resource-document-reveal-content-smaller":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Use a smaller default font for slide content","long":"`true` to use a smaller default font for slide content. This can also\nbe set per-slide by including the `.smaller` class on the slide title.\n"}},"documentation":"Disables the default reveal.js slide layout (scaling and\ncentering)","$id":"quarto-resource-document-reveal-content-smaller"},"quarto-resource-document-reveal-content-output-location":{"_internalId":5111,"type":"enum","enum":["default","fragment","slide","column","column-fragment"],"description":"be one of: `default`, `fragment`, `slide`, `column`, `column-fragment`","completions":["default","fragment","slide","column","column-fragment"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Location of output relative to the code that generated it (`default`, `fragment`, `slide`, `column`, or `column-location`)","long":"Location of output relative to the code that generated it. The possible values are as follows:\n\n- `default`: Normal flow of the slide after the code\n- `fragment`: In a fragment (not visible until you advance)\n- `slide`: On a new slide after the curent one\n- `column`: In an adjacent column \n- `column-fragment`: In an adjacent column (not visible until you advance)\n\nNote that this option is supported only for the `revealjs` format.\n"}},"documentation":"Sets the maximum height for source code blocks that appear in the\npresentation.","$id":"quarto-resource-document-reveal-content-output-location"},"quarto-resource-document-reveal-hidden-embedded":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Flags if the presentation is running in an embedded mode\n","hidden":true},"documentation":"Open links in an iframe preview overlay (true,\nfalse, or auto)","$id":"quarto-resource-document-reveal-hidden-embedded"},"quarto-resource-document-reveal-hidden-display":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"The display mode that will be used to show slides","hidden":true},"documentation":"Autoplay embedded media (null, true, or\nfalse). Default is null (only when\nautoplay attribute is specified)","$id":"quarto-resource-document-reveal-hidden-display"},"quarto-resource-document-reveal-layout-auto-stretch":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"For slides with a single top-level image, automatically stretch it to fill the slide."},"documentation":"Global override for preloading lazy-loaded iframes\n(null, true, or false).","$id":"quarto-resource-document-reveal-layout-auto-stretch"},"quarto-resource-document-reveal-layout-width":{"_internalId":5124,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","tags":{"formats":["revealjs"],"description":{"short":"The 'normal' width of the presentation","long":"The \"normal\" width of the presentation, aspect ratio will\nbe preserved when the presentation is scaled to fit different\nresolutions. Can be specified using percentage units.\n"}},"documentation":"Number of slides away from the current slide to pre-load resources\nfor","$id":"quarto-resource-document-reveal-layout-width"},"quarto-resource-document-reveal-layout-height":{"_internalId":5131,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"string","description":"be a string"}],"description":"be at least one of: a number, a string","tags":{"formats":["revealjs"],"description":{"short":"The 'normal' height of the presentation","long":"The \"normal\" height of the presentation, aspect ratio will\nbe preserved when the presentation is scaled to fit different\nresolutions. Can be specified using percentage units.\n"}},"documentation":"Number of slides away from the current slide to pre-load resources\nfor (on mobile devices).","$id":"quarto-resource-document-reveal-layout-height"},"quarto-resource-document-reveal-layout-min-scale":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Bounds for smallest possible scale to apply to content"},"documentation":"Parallax background image","$id":"quarto-resource-document-reveal-layout-min-scale"},"quarto-resource-document-reveal-layout-max-scale":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Bounds for largest possible scale to apply to content"},"documentation":"Parallax background size (e.g. ‘2100px 900px’)","$id":"quarto-resource-document-reveal-layout-max-scale"},"quarto-resource-document-reveal-layout-center":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Vertical centering of slides"},"documentation":"Number of pixels to move the parallax background horizontally per\nslide.","$id":"quarto-resource-document-reveal-layout-center"},"quarto-resource-document-reveal-layout-disable-layout":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Disables the default reveal.js slide layout (scaling and centering)\n"},"documentation":"Number of pixels to move the parallax background vertically per\nslide.","$id":"quarto-resource-document-reveal-layout-disable-layout"},"quarto-resource-document-reveal-layout-code-block-height":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Sets the maximum height for source code blocks that appear in the presentation.\n"},"documentation":"Display a presentation progress bar","$id":"quarto-resource-document-reveal-layout-code-block-height"},"quarto-resource-document-reveal-media-preview-links":{"_internalId":5149,"type":"anyOf","anyOf":[{"_internalId":5146,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: 'auto', `true` or `false`","tags":{"formats":["revealjs"],"description":{"short":"Open links in an iframe preview overlay (`true`, `false`, or `auto`)","long":"Open links in an iframe preview overlay.\n\n- `true`: Open links in iframe preview overlay\n- `false`: Do not open links in iframe preview overlay\n- `auto` (default): Open links in iframe preview overlay, in fullscreen mode.\n"}},"documentation":"Push each slide change to the browser history","$id":"quarto-resource-document-reveal-media-preview-links"},"quarto-resource-document-reveal-media-auto-play-media":{"_internalId":5152,"type":"enum","enum":[null,true,false],"description":"be one of: `null`, `true`, `false`","completions":["null","true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Autoplay embedded media (`null`, `true`, or `false`). Default is `null` (only when `autoplay` \nattribute is specified)\n"},"documentation":"Navigation progression (linear, vertical,\nor grid)","$id":"quarto-resource-document-reveal-media-auto-play-media"},"quarto-resource-document-reveal-media-preload-iframes":{"_internalId":5155,"type":"enum","enum":[null,true,false],"description":"be one of: `null`, `true`, `false`","completions":["null","true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Global override for preloading lazy-loaded iframes (`null`, `true`, or `false`).","long":"Global override for preloading lazy-loaded iframes\n\n- `null`: Iframes with data-src AND data-preload will be loaded when within\n the `viewDistance`, iframes with only data-src will be loaded when visible\n- `true`: All iframes with data-src will be loaded when within the viewDistance\n- `false`: All iframes with data-src will be loaded only when visible\n"}},"documentation":"Enable touch navigation on devices with touch input","$id":"quarto-resource-document-reveal-media-preload-iframes"},"quarto-resource-document-reveal-media-view-distance":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of slides away from the current slide to pre-load resources for"},"documentation":"Enable keyboard shortcuts for navigation","$id":"quarto-resource-document-reveal-media-view-distance"},"quarto-resource-document-reveal-media-mobile-view-distance":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of slides away from the current slide to pre-load resources for (on mobile devices).\n"},"documentation":"Enable slide navigation via mouse wheel","$id":"quarto-resource-document-reveal-media-mobile-view-distance"},"quarto-resource-document-reveal-media-parallax-background-image":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Parallax background image"},"documentation":"Hide cursor if inactive","$id":"quarto-resource-document-reveal-media-parallax-background-image"},"quarto-resource-document-reveal-media-parallax-background-size":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Parallax background size (e.g. '2100px 900px')"},"documentation":"Time before the cursor is hidden (in ms)","$id":"quarto-resource-document-reveal-media-parallax-background-size"},"quarto-resource-document-reveal-media-parallax-background-horizontal":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of pixels to move the parallax background horizontally per slide."},"documentation":"Loop the presentation","$id":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"quarto-resource-document-reveal-media-parallax-background-vertical":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Number of pixels to move the parallax background vertically per slide."},"documentation":"Randomize the order of slides each time the presentation loads","$id":"quarto-resource-document-reveal-media-parallax-background-vertical"},"quarto-resource-document-reveal-navigation-progress":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Display a presentation progress bar"},"documentation":"Show arrow controls for navigating through slides (true,\nfalse, or auto).","$id":"quarto-resource-document-reveal-navigation-progress"},"quarto-resource-document-reveal-navigation-history":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Push each slide change to the browser history\n"},"documentation":"Location for navigation controls (edges or\nbottom-right)","$id":"quarto-resource-document-reveal-navigation-history"},"quarto-resource-document-reveal-navigation-navigation-mode":{"_internalId":5174,"type":"enum","enum":["linear","vertical","grid"],"description":"be one of: `linear`, `vertical`, `grid`","completions":["linear","vertical","grid"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Navigation progression (`linear`, `vertical`, or `grid`)","long":"Changes the behavior of navigation directions.\n\n- `linear`: Removes the up/down arrows. Left/right arrows step through all\n slides (both horizontal and vertical).\n\n- `vertical`: Left/right arrow keys step between horizontal slides, up/down\n arrow keys step between vertical slides. Space key steps through\n all slides (both horizontal and vertical).\n\n- `grid`: When this is enabled, stepping left/right from a vertical stack\n to an adjacent vertical stack will land you at the same vertical\n index.\n"}},"documentation":"Help the user learn the controls by providing visual hints.","$id":"quarto-resource-document-reveal-navigation-navigation-mode"},"quarto-resource-document-reveal-navigation-touch":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable touch navigation on devices with touch input\n"},"documentation":"Visibility rule for backwards navigation arrows (faded,\nhidden, or visible).","$id":"quarto-resource-document-reveal-navigation-touch"},"quarto-resource-document-reveal-navigation-keyboard":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable keyboard shortcuts for navigation"},"documentation":"Automatically progress all slides at the specified interval","$id":"quarto-resource-document-reveal-navigation-keyboard"},"quarto-resource-document-reveal-navigation-mouse-wheel":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable slide navigation via mouse wheel"},"documentation":"Stop auto-sliding after user input","$id":"quarto-resource-document-reveal-navigation-mouse-wheel"},"quarto-resource-document-reveal-navigation-hide-inactive-cursor":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Hide cursor if inactive"},"documentation":"Navigation method to use when auto sliding (defaults to\nnavigateNext)","$id":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"quarto-resource-document-reveal-navigation-hide-cursor-time":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Time before the cursor is hidden (in ms)"},"documentation":"Expected average seconds per slide (used by pacing timer in speaker\nview)","$id":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"quarto-resource-document-reveal-navigation-loop":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Loop the presentation"},"documentation":"Flags whether it should be possible to pause the presentation\n(blackout)","$id":"quarto-resource-document-reveal-navigation-loop"},"quarto-resource-document-reveal-navigation-shuffle":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Randomize the order of slides each time the presentation loads"},"documentation":"Show a help overlay when the ? key is pressed","$id":"quarto-resource-document-reveal-navigation-shuffle"},"quarto-resource-document-reveal-navigation-controls":{"_internalId":5196,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5195,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'auto'","tags":{"formats":["revealjs"],"description":{"short":"Show arrow controls for navigating through slides (`true`, `false`, or `auto`).","long":"Show arrow controls for navigating through slides.\n\n- `true`: Always show controls\n- `false`: Never show controls\n- `auto` (default): Show controls when vertical slides are present or when the deck is embedded in an iframe.\n"}},"documentation":"Add the current slide to the URL hash","$id":"quarto-resource-document-reveal-navigation-controls"},"quarto-resource-document-reveal-navigation-controls-layout":{"_internalId":5199,"type":"enum","enum":["edges","bottom-right"],"description":"be one of: `edges`, `bottom-right`","completions":["edges","bottom-right"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Location for navigation controls (`edges` or `bottom-right`)"},"documentation":"URL hash type (number or title)","$id":"quarto-resource-document-reveal-navigation-controls-layout"},"quarto-resource-document-reveal-navigation-controls-tutorial":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Help the user learn the controls by providing visual hints."},"documentation":"Use 1 based indexing for hash links to match slide number","$id":"quarto-resource-document-reveal-navigation-controls-tutorial"},"quarto-resource-document-reveal-navigation-controls-back-arrows":{"_internalId":5204,"type":"enum","enum":["faded","hidden","visible"],"description":"be one of: `faded`, `hidden`, `visible`","completions":["faded","hidden","visible"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Visibility rule for backwards navigation arrows (`faded`, `hidden`, or `visible`).\n"},"documentation":"Monitor the hash and change slides accordingly","$id":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"quarto-resource-document-reveal-navigation-auto-slide":{"_internalId":5212,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"_internalId":5211,"type":"enum","enum":[false],"description":"be 'false'","completions":["false"],"exhaustiveCompletions":true}],"description":"be at least one of: a number, 'false'","tags":{"formats":["revealjs"],"description":"Automatically progress all slides at the specified interval"},"documentation":"Include the current fragment in the URL","$id":"quarto-resource-document-reveal-navigation-auto-slide"},"quarto-resource-document-reveal-navigation-auto-slide-stoppable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Stop auto-sliding after user input"},"documentation":"Play a subtle sound when changing slides","$id":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"quarto-resource-document-reveal-navigation-auto-slide-method":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":"Navigation method to use when auto sliding (defaults to navigateNext)"},"documentation":"Deactivate jump to slide feature.","$id":"quarto-resource-document-reveal-navigation-auto-slide-method"},"quarto-resource-document-reveal-navigation-default-timing":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":"Expected average seconds per slide (used by pacing timer in speaker view)"},"documentation":"Slides that are too tall to fit within a single page will expand onto\nmultiple pages","$id":"quarto-resource-document-reveal-navigation-default-timing"},"quarto-resource-document-reveal-navigation-pause":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Flags whether it should be possible to pause the presentation (blackout)\n"},"documentation":"Prints each fragment on a separate slide","$id":"quarto-resource-document-reveal-navigation-pause"},"quarto-resource-document-reveal-navigation-help":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Show a help overlay when the `?` key is pressed\n"},"documentation":"Offset used to reduce the height of content within exported PDF\npages.","$id":"quarto-resource-document-reveal-navigation-help"},"quarto-resource-document-reveal-navigation-hash":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Add the current slide to the URL hash"},"documentation":"Enable the slide overview mode","$id":"quarto-resource-document-reveal-navigation-hash"},"quarto-resource-document-reveal-navigation-hash-type":{"_internalId":5227,"type":"enum","enum":["number","title"],"description":"be one of: `number`, `title`","completions":["number","title"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"URL hash type (`number` or `title`)"},"documentation":"Configuration for revealjs menu.","$id":"quarto-resource-document-reveal-navigation-hash-type"},"quarto-resource-document-reveal-navigation-hash-one-based-index":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Use 1 based indexing for hash links to match slide number\n"},"documentation":"Side of the presentation where the menu will be shown\n(left or right)","$id":"quarto-resource-document-reveal-navigation-hash-one-based-index"},"quarto-resource-document-reveal-navigation-respond-to-hash-changes":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Monitor the hash and change slides accordingly\n"},"documentation":"Width of the menu","$id":"quarto-resource-document-reveal-navigation-respond-to-hash-changes"},"quarto-resource-document-reveal-navigation-fragment-in-url":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Include the current fragment in the URL"},"documentation":"Add slide numbers to menu items","$id":"quarto-resource-document-reveal-navigation-fragment-in-url"},"quarto-resource-document-reveal-navigation-slide-tone":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Play a subtle sound when changing slides"},"documentation":"For slides with no title, attempt to use the start of the text\ncontent as the title instead.","$id":"quarto-resource-document-reveal-navigation-slide-tone"},"quarto-resource-document-reveal-navigation-jump-to-slide":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Deactivate jump to slide feature."},"documentation":"Configuration for revealjs chalkboard.","$id":"quarto-resource-document-reveal-navigation-jump-to-slide"},"quarto-resource-document-reveal-print-pdf-max-pages-per-slide":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":{"short":"Slides that are too tall to fit within a single page will expand onto multiple pages","long":"Slides that are too tall to fit within a single page will expand onto multiple pages. You can limit how many pages a slide may expand to using this option.\n"}},"documentation":"Visual theme for drawing surface (chalkboard or\nwhiteboard)","$id":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide"},"quarto-resource-document-reveal-print-pdf-separate-fragments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Prints each fragment on a separate slide"},"documentation":"The drawing width of the boardmarker. Defaults to 3. Larger values\ndraw thicker lines.","$id":"quarto-resource-document-reveal-print-pdf-separate-fragments"},"quarto-resource-document-reveal-print-pdf-page-height-offset":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":{"short":"Offset used to reduce the height of content within exported PDF pages.","long":"Offset used to reduce the height of content within exported PDF pages.\nThis exists to account for environment differences based on how you\nprint to PDF. CLI printing options, like phantomjs and wkpdf, can end\non precisely the total height of the document whereas in-browser\nprinting has to end one pixel before.\n"}},"documentation":"The drawing width of the chalk. Defaults to 7. Larger values draw\nthicker lines.","$id":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"quarto-resource-document-reveal-tools-overview":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Enable the slide overview mode"},"documentation":"Optional file name for pre-recorded drawings (download drawings using\nthe D key)","$id":"quarto-resource-document-reveal-tools-overview"},"quarto-resource-document-reveal-tools-menu":{"_internalId":5262,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5261,"type":"object","description":"be an object","properties":{"side":{"_internalId":5254,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"Side of the presentation where the menu will be shown (`left` or `right`)"},"documentation":"Add chalkboard buttons at the bottom of the slide"},"width":{"type":"string","description":"be a string","completions":["normal","wide","third","half","full"],"tags":{"description":"Width of the menu"},"documentation":"Gives the duration (in ms) of the transition for a slide change, so\nthat the notes canvas is drawn after the transition is completed."},"numbers":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Add slide numbers to menu items"},"documentation":"Configuration for reveal presentation multiplexing."},"use-text-content-for-missing-titles":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"For slides with no title, attempt to use the start of the text content as the title instead.\n"},"documentation":"Multiplex token server (defaults to Reveal-hosted server)"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention side,width,numbers,use-text-content-for-missing-titles","type":"string","pattern":"(?!(^use_text_content_for_missing_titles$|^useTextContentForMissingTitles$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for revealjs menu."},"documentation":"Configuration option to prevent changes to existing drawings","$id":"quarto-resource-document-reveal-tools-menu"},"quarto-resource-document-reveal-tools-chalkboard":{"_internalId":5285,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5284,"type":"object","description":"be an object","properties":{"theme":{"_internalId":5271,"type":"enum","enum":["chalkboard","whiteboard"],"description":"be one of: `chalkboard`, `whiteboard`","completions":["chalkboard","whiteboard"],"exhaustiveCompletions":true,"tags":{"description":"Visual theme for drawing surface (`chalkboard` or `whiteboard`)"},"documentation":"Secret provided by multiplex token server"},"boardmarker-width":{"type":"number","description":"be a number","tags":{"description":"The drawing width of the boardmarker. Defaults to 3. Larger values draw thicker lines.\n"},"documentation":"Control the scroll view feature of Revealjs"},"chalk-width":{"type":"number","description":"be a number","tags":{"description":"The drawing width of the chalk. Defaults to 7. Larger values draw thicker lines.\n"},"documentation":"Activate scroll view by default for the presentation. Otherwise, it\nis manually avalaible by adding ?view=scroll to url."},"src":{"type":"string","description":"be a string","tags":{"description":"Optional file name for pre-recorded drawings (download drawings using the `D` key)\n"},"documentation":"Show the scrollbar while scrolling, hide while idle (default\nauto). Set to ‘true’ to always show, false to\nalways hide."},"read-only":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Configuration option to prevent changes to existing drawings\n"},"documentation":"When scrolling, it will automatically snap to the closest slide. Only\nsnap when close to the top of a slide using proximity.\nDisable snapping altogether by setting to false."},"buttons":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Add chalkboard buttons at the bottom of the slide\n"},"documentation":"By default each slide will be sized to be as tall as the viewport. If\nyou prefer a more dense layout with multiple slides visible in parallel,\nset to compact."},"transition":{"type":"number","description":"be a number","tags":{"description":"Gives the duration (in ms) of the transition for a slide change, \nso that the notes canvas is drawn after the transition is completed.\n"},"documentation":"Control scroll view activation width. The scroll view is\nautomatically unable when the viewport reaches mobile widths. Set to\n0 to disable automatic scroll view."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention theme,boardmarker-width,chalk-width,src,read-only,buttons,transition","type":"string","pattern":"(?!(^boardmarker_width$|^boardmarkerWidth$|^chalk_width$|^chalkWidth$|^read_only$|^readOnly$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for revealjs chalkboard."},"documentation":"Unique presentation id provided by multiplex token server","$id":"quarto-resource-document-reveal-tools-chalkboard"},"quarto-resource-document-reveal-tools-multiplex":{"_internalId":5299,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5298,"type":"object","description":"be an object","properties":{"url":{"type":"string","description":"be a string","tags":{"description":"Multiplex token server (defaults to Reveal-hosted server)\n"},"documentation":"Slide transition speed (default, fast, or\nslow)"},"id":{"type":"string","description":"be a string","tags":{"description":"Unique presentation id provided by multiplex token server"},"documentation":"Transition style for full page slide backgrounds"},"secret":{"type":"string","description":"be a string","tags":{"description":"Secret provided by multiplex token server"},"documentation":"Turns fragments on and off globally"}},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Configuration for reveal presentation multiplexing."},"documentation":"Transition style for slides","$id":"quarto-resource-document-reveal-tools-multiplex"},"quarto-resource-document-reveal-tools-scroll-view":{"_internalId":5325,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5324,"type":"object","description":"be an object","properties":{"activate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Activate scroll view by default for the presentation. Otherwise, it is manually avalaible by adding `?view=scroll` to url."},"documentation":"Default CSS easing function for auto-animation"},"progress":{"_internalId":5315,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5314,"type":"enum","enum":["auto"],"description":"be 'auto'","completions":["auto"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'auto'","tags":{"description":"Show the scrollbar while scrolling, hide while idle (default `auto`). Set to 'true' to always show, `false` to always hide."},"documentation":"Duration (in seconds) of auto-animate transition"},"snap":{"_internalId":5318,"type":"enum","enum":["mandatory","proximity",false],"description":"be one of: `mandatory`, `proximity`, `false`","completions":["mandatory","proximity","false"],"exhaustiveCompletions":true,"tags":{"description":"When scrolling, it will automatically snap to the closest slide. Only snap when close to the top of a slide using `proximity`. Disable snapping altogether by setting to `false`.\n"},"documentation":"Auto-animate unmatched elements."},"layout":{"_internalId":5321,"type":"enum","enum":["compact","full"],"description":"be one of: `compact`, `full`","completions":["compact","full"],"exhaustiveCompletions":true,"tags":{"description":"By default each slide will be sized to be as tall as the viewport. If you prefer a more dense layout with multiple slides visible in parallel, set to `compact`.\n"},"documentation":"CSS properties that can be auto-animated (positional styles like top,\nleft, etc. are always animated)."},"activation-width":{"type":"number","description":"be a number","tags":{"description":"Control scroll view activation width. The scroll view is automatically unable when the viewport reaches mobile widths. Set to `0` to disable automatic scroll view.\n"},"documentation":"Make list items in slide shows display incrementally (one by one).\nThe default is for lists to be displayed all at once."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention activate,progress,snap,layout,activation-width","type":"string","pattern":"(?!(^activation_width$|^activationWidth$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["revealjs"],"description":"Control the scroll view feature of Revealjs"},"documentation":"Globally enable/disable auto-animate (enabled by default)","$id":"quarto-resource-document-reveal-tools-scroll-view"},"quarto-resource-document-reveal-transitions-transition":{"_internalId":5328,"type":"enum","enum":["none","fade","slide","convex","concave","zoom"],"description":"be one of: `none`, `fade`, `slide`, `convex`, `concave`, `zoom`","completions":["none","fade","slide","convex","concave","zoom"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Transition style for slides","long":"Transition style for slides backgrounds.\n(`none`, `fade`, `slide`, `convex`, `concave`, or `zoom`)\n"}},"documentation":"Specifies that headings with the specified level create slides.\nHeadings above this level in the hierarchy are used to divide the slide\nshow into sections.","$id":"quarto-resource-document-reveal-transitions-transition"},"quarto-resource-document-reveal-transitions-transition-speed":{"_internalId":5331,"type":"enum","enum":["default","fast","slow"],"description":"be one of: `default`, `fast`, `slow`","completions":["default","fast","slow"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Slide transition speed (`default`, `fast`, or `slow`)"},"documentation":"Display the page number of the current slide","$id":"quarto-resource-document-reveal-transitions-transition-speed"},"quarto-resource-document-reveal-transitions-background-transition":{"_internalId":5334,"type":"enum","enum":["none","fade","slide","convex","concave","zoom"],"description":"be one of: `none`, `fade`, `slide`, `convex`, `concave`, `zoom`","completions":["none","fade","slide","convex","concave","zoom"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Transition style for full page slide backgrounds","long":"Transition style for full page slide backgrounds.\n(`none`, `fade`, `slide`, `convex`, `concave`, or `zoom`)\n"}},"documentation":"Contexts in which the slide number appears (all,\nprint, or speaker)","$id":"quarto-resource-document-reveal-transitions-background-transition"},"quarto-resource-document-reveal-transitions-fragments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Turns fragments on and off globally"},"documentation":"Additional attributes for the title slide of a reveal.js\npresentation.","$id":"quarto-resource-document-reveal-transitions-fragments"},"quarto-resource-document-reveal-transitions-auto-animate":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Globally enable/disable auto-animate (enabled by default)"},"documentation":"CSS color for title slide background","$id":"quarto-resource-document-reveal-transitions-auto-animate"},"quarto-resource-document-reveal-transitions-auto-animate-easing":{"type":"string","description":"be a string","tags":{"formats":["revealjs"],"description":{"short":"Default CSS easing function for auto-animation","long":"Default CSS easing function for auto-animation.\nCan be overridden per-slide or per-element via attributes.\n"}},"documentation":"URL or path to the background image.","$id":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"quarto-resource-document-reveal-transitions-auto-animate-duration":{"type":"number","description":"be a number","tags":{"formats":["revealjs"],"description":{"short":"Duration (in seconds) of auto-animate transition","long":"Duration (in seconds) of auto-animate transition.\nCan be overridden per-slide or per-element via attributes.\n"}},"documentation":"CSS background size (defaults to cover)","$id":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"quarto-resource-document-reveal-transitions-auto-animate-unmatched":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":{"short":"Auto-animate unmatched elements.","long":"Auto-animate unmatched elements.\nCan be overridden per-slide or per-element via attributes.\n"}},"documentation":"CSS background position (defaults to center)","$id":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"quarto-resource-document-reveal-transitions-auto-animate-styles":{"_internalId":5350,"type":"array","description":"be an array of values, where each element must be one of: `opacity`, `color`, `background-color`, `padding`, `font-size`, `line-height`, `letter-spacing`, `border-width`, `border-color`, `border-radius`, `outline`, `outline-offset`","items":{"_internalId":5349,"type":"enum","enum":["opacity","color","background-color","padding","font-size","line-height","letter-spacing","border-width","border-color","border-radius","outline","outline-offset"],"description":"be one of: `opacity`, `color`, `background-color`, `padding`, `font-size`, `line-height`, `letter-spacing`, `border-width`, `border-color`, `border-radius`, `outline`, `outline-offset`","completions":["opacity","color","background-color","padding","font-size","line-height","letter-spacing","border-width","border-color","border-radius","outline","outline-offset"],"exhaustiveCompletions":true},"tags":{"formats":["revealjs"],"description":{"short":"CSS properties that can be auto-animated (positional styles like top, left, etc.\nare always animated).\n"}},"documentation":"CSS background repeat (defaults to no-repeat)","$id":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"quarto-resource-document-slides-incremental":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["pptx","beamer","$html-pres"],"description":"Make list items in slide shows display incrementally (one by one). \nThe default is for lists to be displayed all at once.\n"},"documentation":"Opacity of the background image on a 0-1 scale. 0 is transparent and\n1 is fully opaque.","$id":"quarto-resource-document-slides-incremental"},"quarto-resource-document-slides-slide-level":{"type":"number","description":"be a number","tags":{"formats":["pptx","beamer","$html-pres"],"description":{"short":"Specifies that headings with the specified level create slides.\nHeadings above this level in the hierarchy are used to divide \nthe slide show into sections.\n","long":"Specifies that headings with the specified level create slides.\nHeadings above this level in the hierarchy are used to divide \nthe slide show into sections; headings below this level create \nsubheads within a slide. Valid values are 0-6. If a slide level\nof 0 is specified, slides will not be split automatically on \nheadings, and horizontal rules must be used to indicate slide \nboundaries. If a slide level is not specified explicitly, the\nslide level will be set automatically based on the contents of\nthe document\n"}},"documentation":"The title slide style. Use pandoc to select the Pandoc\ndefault title slide style.","$id":"quarto-resource-document-slides-slide-level"},"quarto-resource-document-slides-slide-number":{"_internalId":5362,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5361,"type":"enum","enum":["h.v","h/v","c","c/t"],"description":"be one of: `h.v`, `h/v`, `c`, `c/t`","completions":["h.v","h/v","c","c/t"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, one of: `h.v`, `h/v`, `c`, `c/t`","tags":{"formats":["revealjs"],"description":{"short":"Display the page number of the current slide","long":"Display the page number of the current slide\n\n- `true`: Show slide number\n- `false`: Hide slide number\n\nCan optionally be set as a string that specifies the number formatting:\n\n- `h.v`: Horizontal . vertical slide number\n- `h/v`: Horizontal / vertical slide number\n- `c`: Flattened slide number\n- `c/t`: Flattened slide number / total slides (default)\n"}},"documentation":"Vertical centering of title slide","$id":"quarto-resource-document-slides-slide-number"},"quarto-resource-document-slides-show-slide-number":{"_internalId":5365,"type":"enum","enum":["all","print","speaker"],"description":"be one of: `all`, `print`, `speaker`","completions":["all","print","speaker"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Contexts in which the slide number appears (`all`, `print`, or `speaker`)"},"documentation":"Make speaker notes visible to all viewers","$id":"quarto-resource-document-slides-show-slide-number"},"quarto-resource-document-slides-title-slide-attributes":{"_internalId":5380,"type":"object","description":"be an object","properties":{"data-background-color":{"type":"string","description":"be a string","tags":{"description":"CSS color for title slide background"},"documentation":"Method used to print tables in Knitr engine documents\n(default, kable, tibble, or\npaged). Uses default if not specified."},"data-background-image":{"type":"string","description":"be a string","tags":{"description":"URL or path to the background image."},"documentation":"Determine how text is wrapped in the output (auto,\nnone, or preserve)."},"data-background-size":{"type":"string","description":"be a string","tags":{"description":"CSS background size (defaults to `cover`)"},"documentation":"For text formats, specify length of lines in characters. For\ntypst, number of columns for body text."},"data-background-position":{"type":"string","description":"be a string","tags":{"description":"CSS background position (defaults to `center`)"},"documentation":"Specify the number of spaces per tab (default is 4)."},"data-background-repeat":{"type":"string","description":"be a string","tags":{"description":"CSS background repeat (defaults to `no-repeat`)"},"documentation":"Preserve tabs within code instead of converting them to spaces."},"data-background-opacity":{"type":"string","description":"be a string","tags":{"description":"Opacity of the background image on a 0-1 scale. \n0 is transparent and 1 is fully opaque.\n"},"documentation":"Manually specify line endings (lf, crlf, or\nnative)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention data-background-color,data-background-image,data-background-size,data-background-position,data-background-repeat,data-background-opacity","type":"string","pattern":"(?!(^data_background_color$|^dataBackgroundColor$|^data_background_image$|^dataBackgroundImage$|^data_background_size$|^dataBackgroundSize$|^data_background_position$|^dataBackgroundPosition$|^data_background_repeat$|^dataBackgroundRepeat$|^data_background_opacity$|^dataBackgroundOpacity$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true,"formats":["revealjs"],"description":{"short":"Additional attributes for the title slide of a reveal.js presentation.","long":"Additional attributes for the title slide of a reveal.js presentation as a map of \nattribute names and values. For example\n\n```yaml\n title-slide-attributes:\n data-background-image: /path/to/title_image.png\n data-background-size: contain \n```\n\n(Note that the data- prefix is required here, as it isn’t added automatically.)\n"}},"documentation":"Change the presentation direction to be RTL","$id":"quarto-resource-document-slides-title-slide-attributes"},"quarto-resource-document-slides-title-slide-style":{"_internalId":5383,"type":"enum","enum":["pandoc","default"],"description":"be one of: `pandoc`, `default`","completions":["pandoc","default"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"The title slide style. Use `pandoc` to select the Pandoc default title slide style."},"documentation":"Strip out HTML comments in source, rather than passing them on to\noutput.","$id":"quarto-resource-document-slides-title-slide-style"},"quarto-resource-document-slides-center-title-slide":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Vertical centering of title slide"},"documentation":"Use only ASCII characters in output.","$id":"quarto-resource-document-slides-center-title-slide"},"quarto-resource-document-slides-show-notes":{"_internalId":5393,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5392,"type":"enum","enum":["separate-page"],"description":"be 'separate-page'","completions":["separate-page"],"exhaustiveCompletions":true}],"description":"be at least one of: `true` or `false`, 'separate-page'","tags":{"formats":["revealjs"],"description":"Make speaker notes visible to all viewers\n"},"documentation":"Include an automatically generated table of contents","$id":"quarto-resource-document-slides-show-notes"},"quarto-resource-document-slides-rtl":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["revealjs"],"description":"Change the presentation direction to be RTL\n"},"documentation":"Include an automatically generated table of contents","$id":"quarto-resource-document-slides-rtl"},"quarto-resource-document-tables-df-print":{"_internalId":5398,"type":"enum","enum":["default","kable","tibble","paged"],"description":"be one of: `default`, `kable`, `tibble`, `paged`","completions":["default","kable","tibble","paged"],"exhaustiveCompletions":true,"tags":{"engine":"knitr","description":{"short":"Method used to print tables in Knitr engine documents (`default`,\n`kable`, `tibble`, or `paged`). Uses `default` if not specified.\n","long":"Method used to print tables in Knitr engine documents:\n\n- `default`: Use the default S3 method for the data frame.\n- `kable`: Markdown table using the `knitr::kable()` function.\n- `tibble`: Plain text table using the `tibble` package.\n- `paged`: HTML table with paging for row and column overflow.\n\nThe default printing method is `kable`.\n"}},"documentation":"The amount of indentation to use for each level of the table of\ncontents. The default is “1.5em”.","$id":"quarto-resource-document-tables-df-print"},"quarto-resource-document-text-wrap":{"_internalId":5401,"type":"enum","enum":["auto","none","preserve"],"description":"be one of: `auto`, `none`, `preserve`","completions":["auto","none","preserve"],"exhaustiveCompletions":true,"tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Determine how text is wrapped in the output (`auto`, `none`, or `preserve`).","long":"Determine how text is wrapped in the output (the source code, not the rendered\nversion). \n\n- `auto` (default): Pandoc will attempt to wrap lines to the column width specified by `columns` (default 72). \n- `none`: Pandoc will not wrap lines at all. \n- `preserve`: Pandoc will attempt to preserve the wrapping from the source\n document. Where there are nonsemantic newlines in the source, there will be\n nonsemantic newlines in the output as well.\n"}},"documentation":"Specify the number of section levels to include in the table of\ncontents. The default is 3","$id":"quarto-resource-document-text-wrap"},"quarto-resource-document-text-columns":{"type":"number","description":"be a number","tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all","typst"],"description":{"short":"For text formats, specify length of lines in characters. For `typst`, number of columns for body text.","long":"Specify length of lines in characters. This affects text wrapping in generated source\ncode (see `wrap`). It also affects calculation of column widths for plain text\ntables. \n\nFor `typst`, number of columns for body text.\n"}},"documentation":"Location for table of contents (body, left,\nright (default), left-body,\nright-body).","$id":"quarto-resource-document-text-columns"},"quarto-resource-document-text-tab-stop":{"type":"number","description":"be a number","tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Specify the number of spaces per tab (default is 4).","long":"Specify the number of spaces per tab (default is 4). Note that tabs\nwithin normal textual input are always converted to spaces. Tabs \nwithin code are also converted, however this can be disabled with\n`preserve-tabs: false`.\n"}},"documentation":"The title used for the table of contents.","$id":"quarto-resource-document-text-tab-stop"},"quarto-resource-document-text-preserve-tabs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Preserve tabs within code instead of converting them to spaces.\n","long":"Preserve tabs within code instead of converting them to spaces.\n(By default, pandoc converts tabs to spaces before parsing its input.) \nNote that this will only affect tabs in literal code spans and code blocks. \nTabs in regular text are always treated as spaces.\n"}},"documentation":"Specifies the depth of items in the table of contents that should be\ndisplayed as expanded in HTML output. Use true to expand\nall or false to collapse all.","$id":"quarto-resource-document-text-preserve-tabs"},"quarto-resource-document-text-eol":{"_internalId":5410,"type":"enum","enum":["lf","crlf","native"],"description":"be one of: `lf`, `crlf`, `native`","completions":["lf","crlf","native"],"exhaustiveCompletions":true,"tags":{"formats":["!$pdf-all","!$office-all","!$odt-all","!$html-all","!$docbook-all"],"description":{"short":"Manually specify line endings (`lf`, `crlf`, or `native`).","long":"Manually specify line endings: \n\n- `crlf`: Use Windows line endings\n- `lf`: Use macOS/Linux/UNIX line endings\n- `native` (default): Use line endings appropriate to the OS on which pandoc is being run).\n"}},"documentation":"Print a list of figures in the document.","$id":"quarto-resource-document-text-eol"},"quarto-resource-document-text-strip-comments":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$markdown-all","textile","$html-files"],"description":{"short":"Strip out HTML comments in source, rather than passing them on to output.","long":"Strip out HTML comments in the Markdown source,\nrather than passing them on to Markdown, Textile or HTML\noutput as raw HTML. This does not apply to HTML comments\ninside raw HTML blocks when the `markdown_in_html_blocks`\nextension is not set.\n"}},"documentation":"Print a list of tables in the document.","$id":"quarto-resource-document-text-strip-comments"},"quarto-resource-document-text-ascii":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-all","$pdf-all","$markdown-all","ms"],"description":{"short":"Use only ASCII characters in output.","long":"Use only ASCII characters in output. Currently supported for XML\nand HTML formats (which use entities instead of UTF-8 when this\noption is selected), CommonMark, gfm, and Markdown (which use\nentities), roff ms (which use hexadecimal escapes), and to a\nlimited degree LaTeX (which uses standard commands for accented\ncharacters when possible). roff man output uses ASCII by default.\n"}},"documentation":"Setting this to false prevents this document from being included in\nsearches.","$id":"quarto-resource-document-text-ascii"},"quarto-resource-document-toc-toc":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["!man","!$docbook-all","!$jats-all"],"description":{"short":"Include an automatically generated table of contents","long":"Include an automatically generated table of contents (or, in\nthe case of `latex`, `context`, `docx`, `odt`,\n`opendocument`, `rst`, or `ms`, an instruction to create\none) in the output document.\n\nNote that if you are producing a PDF via `ms`, the table\nof contents will appear at the beginning of the\ndocument, before the title. If you would prefer it to\nbe at the end of the document, use the option\n`pdf-engine-opt: --no-toc-relocation`.\n"}},"documentation":"Setting this to false prevents the repo-actions from\nappearing on this page. Other possible values are none or\none or more of edit, source, and\nissue, e.g.\n[edit, source, issue].","$id":"quarto-resource-document-toc-toc"},"quarto-resource-document-toc-table-of-contents":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["!man","!$docbook-all","!$jats-all"],"description":{"short":"Include an automatically generated table of contents","long":"Include an automatically generated table of contents (or, in\nthe case of `latex`, `context`, `docx`, `odt`,\n`opendocument`, `rst`, or `ms`, an instruction to create\none) in the output document.\n\nNote that if you are producing a PDF via `ms`, the table\nof contents will appear at the beginning of the\ndocument, before the title. If you would prefer it to\nbe at the end of the document, use the option\n`pdf-engine-opt: --no-toc-relocation`.\n"}},"documentation":"Links to source repository actions","$id":"quarto-resource-document-toc-table-of-contents"},"quarto-resource-document-toc-toc-indent":{"type":"string","description":"be a string","tags":{"formats":["typst"],"description":"The amount of indentation to use for each level of the table of contents.\nThe default is \"1.5em\".\n"},"documentation":"Links to source repository actions","$id":"quarto-resource-document-toc-toc-indent"},"quarto-resource-document-toc-toc-depth":{"type":"number","description":"be a number","tags":{"formats":["!man","!$docbook-all","!$jats-all","!beamer"],"description":"Specify the number of section levels to include in the table of contents.\nThe default is 3\n"},"documentation":"URLs that alias this document, when included in a website.","$id":"quarto-resource-document-toc-toc-depth"},"quarto-resource-document-toc-toc-location":{"_internalId":5423,"type":"enum","enum":["body","left","right","left-body","right-body"],"description":"be one of: `body`, `left`, `right`, `left-body`, `right-body`","completions":["body","left","right","left-body","right-body"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"Location for table of contents (`body`, `left`, `right` (default), `left-body`, `right-body`).\n","long":"Location for table of contents:\n\n- `body`: Show the Table of Contents in the center body of the document. \n- `left`: Show the Table of Contents in left margin of the document.\n- `right`(default): Show the Table of Contents in right margin of the document.\n- `left-body`: Show two Tables of Contents in both the center body and the left margin of the document.\n- `right-body`: Show two Tables of Contents in both the center body and the right margin of the document.\n"}},"documentation":"The path to a preview image for this document.","$id":"quarto-resource-document-toc-toc-location"},"quarto-resource-document-toc-toc-title":{"type":"string","description":"be a string","tags":{"formats":["$epub-all","$odt-all","$office-all","$pdf-all","$html-doc","revealjs"],"description":"The title used for the table of contents."},"documentation":"The height of the preview image for this document.","$id":"quarto-resource-document-toc-toc-title"},"quarto-resource-document-toc-toc-expand":{"_internalId":5432,"type":"anyOf","anyOf":[{"type":"number","description":"be a number"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a number, `true` or `false`","tags":{"formats":["$html-doc"],"description":"Specifies the depth of items in the table of contents that should be displayed as expanded in HTML output. Use `true` to expand all or `false` to collapse all.\n"},"documentation":"The width of the preview image for this document.","$id":"quarto-resource-document-toc-toc-expand"},"quarto-resource-document-toc-lof":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","typst"],"description":"Print a list of figures in the document."},"documentation":"The alt text for preview image on this page.","$id":"quarto-resource-document-toc-lof"},"quarto-resource-document-toc-lot":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$pdf-all","typst"],"description":"Print a list of tables in the document."},"documentation":"If true, the preview image will only load when it comes into\nview.","$id":"quarto-resource-document-toc-lot"},"quarto-resource-document-website-search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":"Setting this to false prevents this document from being included in searches."},"documentation":"Project configuration.","$id":"quarto-resource-document-website-search"},"quarto-resource-document-website-repo-actions":{"_internalId":5450,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5449,"type":"anyOf","anyOf":[{"_internalId":5447,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Working directory for computations"},{"_internalId":5448,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":5447,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Working directory for computations"}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"formats":["$html-doc"],"description":"Setting this to false prevents the `repo-actions` from appearing on this page.\nOther possible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.\n"},"documentation":"Project type (default, website,\nbook, or manuscript)","$id":"quarto-resource-document-website-repo-actions"},"quarto-resource-document-website-aliases":{"_internalId":5455,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"formats":["$html-doc"],"description":"URLs that alias this document, when included in a website."},"documentation":"Output directory","$id":"quarto-resource-document-website-aliases"},"quarto-resource-document-website-image":{"_internalId":5462,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"formats":["$html-doc"],"description":{"short":"The path to a preview image for this document.","long":"The path to a preview image for this content. By default, \nQuarto will use the image value from the site: metadata. \nIf you provide an image, you may also optionally provide \nan image-width and image-height to improve \nthe appearance of your Twitter Card.\n\nIf image is not provided, Quarto will automatically attempt \nto locate a preview image.\n"}},"documentation":"HTML library (JS/CSS/etc.) directory","$id":"quarto-resource-document-website-image"},"quarto-resource-document-website-image-height":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The height of the preview image for this document."},"documentation":"Additional file resources to be copied to output directory","$id":"quarto-resource-document-website-image-height"},"quarto-resource-document-website-image-width":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The width of the preview image for this document."},"documentation":"Additional file resources to be copied to output directory","$id":"quarto-resource-document-website-image-width"},"quarto-resource-document-website-image-alt":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The alt text for preview image on this page."},"documentation":"Path to brand.yml or object with light and dark paths to\nbrand.yml","$id":"quarto-resource-document-website-image-alt"},"quarto-resource-document-website-image-lazy-loading":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"formats":["$html-doc"],"description":{"short":"If true, the preview image will only load when it comes into view.","long":"Enables lazy loading for the preview image. If true, the preview image element \nwill have `loading=\"lazy\"`, and will only load when it comes into view.\n\nIf false, the preview image will load immediately.\n"}},"documentation":"Options for quarto preview","$id":"quarto-resource-document-website-image-lazy-loading"},"quarto-resource-project-project":{"_internalId":5535,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string"},"type":{"type":"string","description":"be a string","completions":["default","website","book","manuscript"],"tags":{"description":"Project type (`default`, `website`, `book`, or `manuscript`)"},"documentation":"Scripts to run as a post-render step"},"render":{"_internalId":5483,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Files to render (defaults to all files)"},"documentation":"Array of paths used to detect the project type within a directory"},"execute-dir":{"_internalId":5486,"type":"enum","enum":["file","project"],"description":"be one of: `file`, `project`","completions":["file","project"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Working directory for computations","long":"Control the working directory for computations. \n\n- `file`: Use the directory of the file that is currently executing.\n- `project`: Use the root directory of the project.\n"}},"documentation":"Website configuration."},"output-dir":{"type":"string","description":"be a string","tags":{"description":"Output directory"},"documentation":"Book configuration."},"lib-dir":{"type":"string","description":"be a string","tags":{"description":"HTML library (JS/CSS/etc.) directory"},"documentation":"Book title"},"resources":{"_internalId":5498,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"The path to the favicon for this website"},{"_internalId":5497,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"The path to the favicon for this website"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"brand":{"_internalId":5503,"type":"ref","$ref":"brand-path-only-light-dark","description":"be brand-path-only-light-dark","tags":{"description":"Path to brand.yml or object with light and dark paths to brand.yml\n"},"documentation":"Base URL for published website"},"preview":{"_internalId":5508,"type":"ref","$ref":"project-preview","description":"be project-preview","tags":{"description":"Options for `quarto preview`"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"pre-render":{"_internalId":5516,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5515,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a pre-render step"},"documentation":"Base URL for website source code repository"},"post-render":{"_internalId":5524,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5523,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a post-render step"},"documentation":"The value of the target attribute for repo links"},"detect":{"_internalId":5534,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":5533,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},"completions":[],"tags":{"hidden":true,"description":"Array of paths used to detect the project type within a directory"},"documentation":"The value of the rel attribute for repo links"}},"patternProperties":{},"closed":true,"documentation":"Scripts to run as a pre-render step","tags":{"description":"Project configuration."},"$id":"quarto-resource-project-project"},"quarto-resource-project-website":{"_internalId":5538,"type":"ref","$ref":"base-website","description":"be base-website","documentation":"Subdirectory of repository containing website","tags":{"description":"Website configuration."},"$id":"quarto-resource-project-website"},"quarto-resource-project-book":{"_internalId":1729,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Book title"},"documentation":"URL to use for the ‘report an issue’ repository action."},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"Links to source repository actions"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Links to source repository actions"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Generate llms.txt and .llms.md files for LLM-friendly content\nconsumption."},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"Enable Google Analytics for this website"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"The Google tracking Id or measurement Id of this website."},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Storage options for Google Analytics data"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"Anonymize the user ip address."},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"The version number of Google Analytics to use."},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},"repo-actions":{"_internalId":534,"type":"anyOf","anyOf":[{"_internalId":532,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Provides an announcement displayed at the top of the page."},{"_internalId":533,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":532,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Provides an announcement displayed at the top of the page."}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"The content of the announcement. Supports markdown formatting."},"llms-txt":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Generate llms.txt and .llms.md files for LLM-friendly content consumption.\n"},"documentation":"Whether this announcement may be dismissed by the user."},"google-analytics":{"_internalId":560,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":559,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"The position of the announcement."},"storage":{"_internalId":551,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"Request cookie consent before enabling scripts that set cookies"},"version":{"_internalId":558,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"The type of consent that should be requested"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"The icon to display in the announcement"},"plausible-analytics":{"_internalId":570,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":569,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"The style of the consent banner that is displayed"},"announcement":{"_internalId":600,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":599,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement. Supports markdown formatting."},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"The text to display for the cookie preferences link in the website\nfooter."},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"Provide full text search for website"},"position":{"_internalId":593,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"Location for search widget (navbar or\nsidebar)"},"type":{"_internalId":598,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"Type of search UI (overlay or textbox)"}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"The url to the website’s cookie or privacy policy."},"cookie-consent":{"_internalId":632,"type":"anyOf","anyOf":[{"_internalId":605,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":631,"type":"object","description":"be an object","properties":{"type":{"_internalId":612,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"Matches after which to collapse additional results"},"style":{"_internalId":615,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"Provide button for copying search link"},"palette":{"_internalId":618,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"Number of matches to display (defaults to 20)"},"search":{"_internalId":719,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":718,"type":"object","description":"be an object","properties":{"location":{"_internalId":641,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"The name of the index to use when performing a search"},"type":{"_internalId":644,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"The unique ID used by Algolia to identify your application"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"The Search-Only API key to use to connect to Algolia"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"Enable tracking of Algolia analytics events"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"Field that contains the URL of index entries"},"keyboard-shortcut":{"_internalId":666,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Field that contains the text of index entries"},{"_internalId":665,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Field that contains the text of index entries"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":676,"type":"anyOf","anyOf":[{"_internalId":673,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Field that contains the section of index entries"},"algolia":{"_internalId":717,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"Top navigation options"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"The navbar title. Uses the project title if none is specified.\nSupports markdown formatting."},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Alternate text for the logo image."},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"index-fields":{"_internalId":713,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"The navbar’s background color (named or hex color)."},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"The navbar’s foreground color (named or hex color)."},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Include a search box in the navbar."},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Always show the navbar (keeping it pinned)."}},"patternProperties":{},"closed":true},"params":{"_internalId":716,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"Collapse the navbar into a menu when the display becomes narrow."}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"Additional parameters to pass when executing a search"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Use external Algolia search index"},"navbar":{"_internalId":773,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":772,"type":"object","description":"be an object","properties":{"title":{"_internalId":732,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified. Supports markdown formatting."},"documentation":"List of items for the left side of the navbar."},"logo":{"_internalId":735,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"List of items for the right side of the navbar."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"Side navigation options"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"The identifier for this sidebar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Specification of image that will be displayed in the sidebar."},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"Alternate text for the logo image."},"collapse-below":{"_internalId":752,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"left":{"_internalId":758,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":757,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"Include a search control in the sidebar."},"right":{"_internalId":764,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":763,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"List of sidebar tools"},"toggle-position":{"_internalId":769,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"List of items for the sidebar"},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"The style of sidebar (docked or\nfloating)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"sidebar":{"_internalId":844,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":843,"type":"anyOf","anyOf":[{"_internalId":841,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar’s foreground color (named or hex color)."},"title":{"_internalId":790,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified. Supports markdown formatting."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"logo":{"_internalId":793,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Markdown to place above sidebar content (text or file path)"},"tools":{"_internalId":805,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":804,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"Markdown to place below sidebar content (text or file path)"},"contents":{"_internalId":808,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"style":{"_internalId":811,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to insert below each page’s body."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place above margin content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to place below margin content (text or file path)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Provide next and previous article links in footer"},"alignment":{"_internalId":824,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Provide a ‘back to top’ navigation button"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Shared page footer"},"header":{"_internalId":834,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":833,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"footer":{"_internalId":840,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":839,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":842,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":841,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar’s foreground color (named or hex color)."},"title":{"_internalId":790,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified. Supports markdown formatting."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"logo":{"_internalId":793,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Markdown to place above sidebar content (text or file path)"},"tools":{"_internalId":805,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":804,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"Markdown to place below sidebar content (text or file path)"},"contents":{"_internalId":808,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"style":{"_internalId":811,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to insert below each page’s body."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place above margin content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to place below margin content (text or file path)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Provide next and previous article links in footer"},"alignment":{"_internalId":824,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Provide a ‘back to top’ navigation button"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Shared page footer"},"header":{"_internalId":834,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":833,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"footer":{"_internalId":840,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":839,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"The sidebar’s background color (named or hex color)."},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Publish open graph metadata"},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Publish twitter card metadata"},"margin-header":{"_internalId":854,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":853,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"A list of other links to appear below the TOC."},"margin-footer":{"_internalId":860,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":859,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"A list of code links to appear with this document."},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"A list of input documents that should be treated as drafts"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"How to handle drafts that are encountered."},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"Book subtitle"},"page-footer":{"_internalId":874,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":873,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"Author or authors of the book"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Author or authors of the book"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Book publication date"},"comments":{"_internalId":883,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":891,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":890,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Format string for dates in the book"},"twitter-card":{"_internalId":899,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":898,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"Book abstract"},"other-links":{"_internalId":904,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"Book part and chapter files"},"code-links":{"_internalId":914,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":913,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"Book appendix files"},"drafts":{"_internalId":922,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":921,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"Book references file"},"draft-mode":{"_internalId":927,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Cover image (used in HTML and ePub formats)"},"author":{"_internalId":947,"type":"anyOf","anyOf":[{"_internalId":945,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":943,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},{"_internalId":946,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":945,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":943,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string","tags":{"description":"Book publication date"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},"chapters":{"_internalId":960,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Custom tools for navbar or sidebar"},"appendices":{"_internalId":965,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"The Digital Object Identifier for this book."},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"A url to the abstract for this item."},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Date the item has been accessed."},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"cover-image-alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for cover image (used in HTML format)"},"documentation":"Archive storing the item"},"sharing":{"_internalId":980,"type":"anyOf","anyOf":[{"_internalId":978,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},{"_internalId":979,"type":"array","description":"be an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","items":{"_internalId":978,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."}}],"description":"be at least one of: one of: `twitter`, `facebook`, `linkedin`, an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","tags":{"complete-from":["anyOf",0]}},"downloads":{"_internalId":987,"type":"anyOf","anyOf":[{"_internalId":985,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},{"_internalId":986,"type":"array","description":"be an array of values, where each element must be one of: `pdf`, `epub`, `docx`","items":{"_internalId":985,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."}}],"description":"be at least one of: one of: `pdf`, `epub`, `docx`, an array of values, where each element must be one of: `pdf`, `epub`, `docx`","tags":{"complete-from":["anyOf",0]}},"tools":{"_internalId":993,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":992,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Custom tools for navbar or sidebar"},"documentation":"Date the item was initially available"},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"Call number (to locate the item in a library)."},"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"accessed":{"_internalId":1438,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"available-date":{"_internalId":1461,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Composer (e.g. of a musical score)."},"chair":{"_internalId":1466,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"chapter-number":{"_internalId":1469,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Title of the container holding the item."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Short/abbreviated form of container-title;"},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"citation-number":{"_internalId":1478,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Curator of an exhibit or collection (e.g. in a museum).","completions":[]},"collection-editor":{"_internalId":1481,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"collection-number":{"_internalId":1484,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Director (e.g. of a film)."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"compiler":{"_internalId":1489,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"composer":{"_internalId":1492,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"The editor of the item."},"container-author":{"_internalId":1495,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Combined editor and translator of a work."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Date the event related to an item took place.","completions":[]},"contributor":{"_internalId":1502,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"curator":{"_internalId":1505,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Executive producer of the item (e.g. of a television series)."},"director":{"_internalId":1510,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"A url to the full text for this item."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1519,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"Type, class, or subtype of the item"},"editor":{"_internalId":1522,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Guest (e.g. on a TV show or podcast)."},"editorial-director":{"_internalId":1525,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"editor-translator":{"_internalId":1528,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"A value which uniquely identifies this item."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1535,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Interviewer (e.g. of an interview)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"executive-producer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"International Standard Serial Number."},"first-reference-note-number":{"_internalId":1547,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Issue number of the item or container holding the item"},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Date the item was issued/published."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"guest":{"_internalId":1554,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"host":{"_internalId":1557,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"The language of the item (used only for citation of the item)."},"id":{"_internalId":1564,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"A value which uniquely identifies this item."},"documentation":"The license information applicable to an item."},"illustrator":{"_internalId":1567,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"A cite-specific pinpointer within the item."},"interviewer":{"_internalId":1570,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"Narrator (e.g. of an audio book)."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1585,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Number identifying the item (e.g. a report number)."},"issued":{"_internalId":1588,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Total number of pages of the cited item."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The original creator of a work."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"Issue date of the original version."},"locator":{"_internalId":1599,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"narrator":{"_internalId":1604,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"number":{"_internalId":1609,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"number-of-pages":{"_internalId":1612,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"number-of-volumes":{"_internalId":1615,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"organizer":{"_internalId":1618,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"Title of the specific part of an item being cited."},"original-author":{"_internalId":1621,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"A url to the pdf for this item."},"original-date":{"_internalId":1624,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"PubMed Central reference number."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"PubMed reference number."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Printing number of the item or container holding the item."},"page":{"_internalId":1633,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"page-first":{"_internalId":1636,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"A public url for this item."},"page-last":{"_internalId":1639,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"The publisher of the item."},"part-number":{"_internalId":1642,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"The geographic location of the publisher."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Recipient (e.g. of a letter)."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"Author of the item reviewed by the current item."},"performer":{"_internalId":1649,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Title of the item reviewed by the current item."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Scale of e.g. a map or model."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1664,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"producer":{"_internalId":1667,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"Creator of a series (e.g. of a television series)."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"recipient":{"_internalId":1676,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"reviewed-author":{"_internalId":1679,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Short/abbreviated form oftitle."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Translator"},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"The type\nof the item."},"script-writer":{"_internalId":1688,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"section":{"_internalId":1691,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"series-creator":{"_internalId":1694,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Title of the volume of the item or container holding the item."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"submitted":{"_internalId":1701,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Manuscript configuration"},"supplement-number":{"_internalId":1704,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"internal-schema-hack"},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’.","completions":[]},"translator":{"_internalId":1709,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"When defined, run axe-core accessibility tests on the document."},"type":{"_internalId":1712,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"If set, output axe-core results on console. json:\nproduce structured output; console: print output to\njavascript console; document: produce a visual report of\nviolations in the document itself."},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"The logo image."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1721,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Advanced geometry settings for Typst margin layout."},"volume":{"_internalId":1724,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Inner (left) margin geometry."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Outer (right) margin geometry."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Minimum vertical spacing between margin notes (default: 8pt)."}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Book configuration."},"documentation":"Branch of website source code (defaults to main)","$id":"quarto-resource-project-book"},"quarto-resource-project-manuscript":{"_internalId":5548,"type":"ref","$ref":"manuscript-schema","description":"be manuscript-schema","documentation":"Visual style for theorem environments in Typst output.","tags":{"description":"Manuscript configuration"},"$id":"quarto-resource-project-manuscript"},"quarto-resource-project-type":{"_internalId":5551,"type":"enum","enum":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"description":"be 'cd93424f-d5ba-4e95-91c6-1890eab59fc7'","completions":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"exhaustiveCompletions":true,"documentation":"Email format version","tags":{"description":"internal-schema-hack","hidden":true},"$id":"quarto-resource-project-type"},"quarto-resource-project-engines":{"_internalId":5562,"type":"array","description":"be an array of values, where each element must be at least one of: a string, external-engine","items":{"_internalId":5561,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5560,"type":"ref","$ref":"external-engine","description":"be external-engine"}],"description":"be at least one of: a string, external-engine"},"documentation":"Project configuration.","tags":{"description":"List execution engines you want to give priority when determining which engine should render a notebook. If two engines have support for a notebook, the one listed earlier will be chosen. Quarto's default order is 'knitr', 'jupyter', 'markdown', 'julia'."},"$id":"quarto-resource-project-engines"},"quarto-resource-document-a11y-axe":{"_internalId":5573,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":5572,"type":"object","description":"be an object","properties":{"output":{"_internalId":5571,"type":"enum","enum":["json","console","document"],"description":"be one of: `json`, `console`, `document`","completions":["json","console","document"],"exhaustiveCompletions":true,"tags":{"description":"If set, output axe-core results on console. `json`: produce structured output; `console`: print output to javascript console; `document`: produce a visual report of violations in the document itself."},"documentation":"Files to render (defaults to all files)"}},"patternProperties":{}}],"description":"be at least one of: `true` or `false`, an object","tags":{"formats":["$html-files"],"description":"When defined, run axe-core accessibility tests on the document."},"documentation":"Project type (default, website,\nbook, or manuscript)","$id":"quarto-resource-document-a11y-axe"},"quarto-resource-document-typst-logo":{"_internalId":5576,"type":"ref","$ref":"logo-light-dark-specifier-path-optional","description":"be logo-light-dark-specifier-path-optional","tags":{"formats":["typst"],"description":"The logo image."},"documentation":"Working directory for computations","$id":"quarto-resource-document-typst-logo"},"quarto-resource-document-typst-margin-geometry":{"_internalId":5587,"type":"object","description":"be an object","properties":{"inner":{"_internalId":5581,"type":"ref","$ref":"marginalia-side-geometry","description":"be marginalia-side-geometry","tags":{"description":"Inner (left) margin geometry."},"documentation":"HTML library (JS/CSS/etc.) directory"},"outer":{"_internalId":5584,"type":"ref","$ref":"marginalia-side-geometry","description":"be marginalia-side-geometry","tags":{"description":"Outer (right) margin geometry."},"documentation":"Additional file resources to be copied to output directory"},"clearance":{"type":"string","description":"be a string","tags":{"description":"Minimum vertical spacing between margin notes (default: 8pt)."},"documentation":"Additional file resources to be copied to output directory"}},"patternProperties":{},"closed":true,"tags":{"formats":["typst"],"description":{"short":"Advanced geometry settings for Typst margin layout.","long":"Fine-grained control over marginalia package geometry. Most users should\nuse `margin` and `grid` options instead; these values are computed automatically.\n\nUser-specified values override the computed defaults.\n"}},"documentation":"Output directory","$id":"quarto-resource-document-typst-margin-geometry"},"quarto-resource-document-typst-theorem-appearance":{"_internalId":5590,"type":"enum","enum":["simple","fancy","clouds","rainbow"],"description":"be one of: `simple`, `fancy`, `clouds`, `rainbow`","completions":["simple","fancy","clouds","rainbow"],"exhaustiveCompletions":true,"tags":{"formats":["typst"],"description":{"short":"Visual style for theorem environments in Typst output.","long":"Controls how theorems, lemmas, definitions, etc. are rendered:\n\n- `simple`: Plain text with bold title and italic body (default)\n- `fancy`: Colored boxes using brand colors\n- `clouds`: Rounded colored background boxes\n- `rainbow`: Colored left border with colored title\n"}},"documentation":"Path to brand.yml or object with light and dark paths to\nbrand.yml","$id":"quarto-resource-document-typst-theorem-appearance"},"quarto-resource-document-email-email-version":{"_internalId":5593,"type":"enum","enum":[1,2],"description":"be one of: `1`, `2`","completions":["1","2"],"exhaustiveCompletions":true,"tags":{"formats":["email"],"description":{"short":"Email format version","long":"Specifies which email format version to use.\n\n- `1`: Legacy email format with document-level metadata (compatible with older Connect versions)\n- `2`: New email format with multiple individual emails and v2 markers (requires Posit Connect 2026.03 or later)\n"}},"documentation":"Options for quarto preview","$id":"quarto-resource-document-email-email-version"},"front-matter-execute":{"_internalId":5617,"type":"object","description":"be an object","properties":{"eval":{"_internalId":5594,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":5595,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":5596,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":5597,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":5598,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":5599,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"engine":{"_internalId":5600,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":5601,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":5602,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":5603,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":5604,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":5605,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":5606,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":5607,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":5608,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":5609,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":5610,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":5611,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"keep-md":{"_internalId":5612,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":5613,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":5614,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":5615,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":5616,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected","type":"string","pattern":"(?!(^daemon_restart$|^daemonRestart$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"front-matter-execute"},"front-matter-format":{"_internalId":216236,"type":"anyOf","anyOf":[{"_internalId":216232,"type":"anyOf","anyOf":[{"_internalId":216152,"type":"string","pattern":"^(.+-)?ansi([-+].+)?$","description":"be 'ansi'","completions":["ansi"]},{"_internalId":216153,"type":"string","pattern":"^(.+-)?asciidoc([-+].+)?$","description":"be 'asciidoc'","completions":["asciidoc"]},{"_internalId":216154,"type":"string","pattern":"^(.+-)?asciidoc_legacy([-+].+)?$","description":"be 'asciidoc_legacy'","completions":["asciidoc_legacy"]},{"_internalId":216155,"type":"string","pattern":"^(.+-)?asciidoctor([-+].+)?$","description":"be 'asciidoctor'","completions":["asciidoctor"]},{"_internalId":216156,"type":"string","pattern":"^(.+-)?bbcode([-+].+)?$","description":"be 'bbcode'","completions":["bbcode"]},{"_internalId":216157,"type":"string","pattern":"^(.+-)?bbcode_fluxbb([-+].+)?$","description":"be 'bbcode_fluxbb'","completions":["bbcode_fluxbb"]},{"_internalId":216158,"type":"string","pattern":"^(.+-)?bbcode_hubzilla([-+].+)?$","description":"be 'bbcode_hubzilla'","completions":["bbcode_hubzilla"]},{"_internalId":216159,"type":"string","pattern":"^(.+-)?bbcode_phpbb([-+].+)?$","description":"be 'bbcode_phpbb'","completions":["bbcode_phpbb"]},{"_internalId":216160,"type":"string","pattern":"^(.+-)?bbcode_steam([-+].+)?$","description":"be 'bbcode_steam'","completions":["bbcode_steam"]},{"_internalId":216161,"type":"string","pattern":"^(.+-)?bbcode_xenforo([-+].+)?$","description":"be 'bbcode_xenforo'","completions":["bbcode_xenforo"]},{"_internalId":216162,"type":"string","pattern":"^(.+-)?beamer([-+].+)?$","description":"be 'beamer'","completions":["beamer"]},{"_internalId":216163,"type":"string","pattern":"^(.+-)?biblatex([-+].+)?$","description":"be 'biblatex'","completions":["biblatex"]},{"_internalId":216164,"type":"string","pattern":"^(.+-)?bibtex([-+].+)?$","description":"be 'bibtex'","completions":["bibtex"]},{"_internalId":216165,"type":"string","pattern":"^(.+-)?chunkedhtml([-+].+)?$","description":"be 'chunkedhtml'","completions":["chunkedhtml"]},{"_internalId":216166,"type":"string","pattern":"^(.+-)?commonmark([-+].+)?$","description":"be 'commonmark'","completions":["commonmark"]},{"_internalId":216167,"type":"string","pattern":"^(.+-)?commonmark_x([-+].+)?$","description":"be 'commonmark_x'","completions":["commonmark_x"]},{"_internalId":216168,"type":"string","pattern":"^(.+-)?context([-+].+)?$","description":"be 'context'","completions":["context"]},{"_internalId":216169,"type":"string","pattern":"^(.+-)?csljson([-+].+)?$","description":"be 'csljson'","completions":["csljson"]},{"_internalId":216170,"type":"string","pattern":"^(.+-)?djot([-+].+)?$","description":"be 'djot'","completions":["djot"]},{"_internalId":216171,"type":"string","pattern":"^(.+-)?docbook([-+].+)?$","description":"be 'docbook'","completions":["docbook"]},{"_internalId":216172,"type":"string","pattern":"^(.+-)?docbook4([-+].+)?$","description":"be 'docbook4'"},{"_internalId":216173,"type":"string","pattern":"^(.+-)?docbook5([-+].+)?$","description":"be 'docbook5'"},{"_internalId":216174,"type":"string","pattern":"^(.+-)?docx([-+].+)?$","description":"be 'docx'","completions":["docx"]},{"_internalId":216175,"type":"string","pattern":"^(.+-)?dokuwiki([-+].+)?$","description":"be 'dokuwiki'","completions":["dokuwiki"]},{"_internalId":216176,"type":"string","pattern":"^(.+-)?dzslides([-+].+)?$","description":"be 'dzslides'","completions":["dzslides"]},{"_internalId":216177,"type":"string","pattern":"^(.+-)?epub([-+].+)?$","description":"be 'epub'","completions":["epub"]},{"_internalId":216178,"type":"string","pattern":"^(.+-)?epub2([-+].+)?$","description":"be 'epub2'"},{"_internalId":216179,"type":"string","pattern":"^(.+-)?epub3([-+].+)?$","description":"be 'epub3'"},{"_internalId":216180,"type":"string","pattern":"^(.+-)?fb2([-+].+)?$","description":"be 'fb2'","completions":["fb2"]},{"_internalId":216181,"type":"string","pattern":"^(.+-)?gfm([-+].+)?$","description":"be 'gfm'","completions":["gfm"]},{"_internalId":216182,"type":"string","pattern":"^(.+-)?haddock([-+].+)?$","description":"be 'haddock'","completions":["haddock"]},{"_internalId":216183,"type":"string","pattern":"^(.+-)?html([-+].+)?$","description":"be 'html'","completions":["html"]},{"_internalId":216184,"type":"string","pattern":"^(.+-)?html4([-+].+)?$","description":"be 'html4'"},{"_internalId":216185,"type":"string","pattern":"^(.+-)?html5([-+].+)?$","description":"be 'html5'"},{"_internalId":216186,"type":"string","pattern":"^(.+-)?icml([-+].+)?$","description":"be 'icml'","completions":["icml"]},{"_internalId":216187,"type":"string","pattern":"^(.+-)?ipynb([-+].+)?$","description":"be 'ipynb'","completions":["ipynb"]},{"_internalId":216188,"type":"string","pattern":"^(.+-)?jats([-+].+)?$","description":"be 'jats'","completions":["jats"]},{"_internalId":216189,"type":"string","pattern":"^(.+-)?jats_archiving([-+].+)?$","description":"be 'jats_archiving'","completions":["jats_archiving"]},{"_internalId":216190,"type":"string","pattern":"^(.+-)?jats_articleauthoring([-+].+)?$","description":"be 'jats_articleauthoring'","completions":["jats_articleauthoring"]},{"_internalId":216191,"type":"string","pattern":"^(.+-)?jats_publishing([-+].+)?$","description":"be 'jats_publishing'","completions":["jats_publishing"]},{"_internalId":216192,"type":"string","pattern":"^(.+-)?jira([-+].+)?$","description":"be 'jira'","completions":["jira"]},{"_internalId":216193,"type":"string","pattern":"^(.+-)?json([-+].+)?$","description":"be 'json'","completions":["json"]},{"_internalId":216194,"type":"string","pattern":"^(.+-)?latex([-+].+)?$","description":"be 'latex'","completions":["latex"]},{"_internalId":216195,"type":"string","pattern":"^(.+-)?man([-+].+)?$","description":"be 'man'","completions":["man"]},{"_internalId":216196,"type":"string","pattern":"^(.+-)?markdown([-+].+)?$","description":"be 'markdown'","completions":["markdown"]},{"_internalId":216197,"type":"string","pattern":"^(.+-)?markdown_github([-+].+)?$","description":"be 'markdown_github'","completions":["markdown_github"]},{"_internalId":216198,"type":"string","pattern":"^(.+-)?markdown_mmd([-+].+)?$","description":"be 'markdown_mmd'","completions":["markdown_mmd"]},{"_internalId":216199,"type":"string","pattern":"^(.+-)?markdown_phpextra([-+].+)?$","description":"be 'markdown_phpextra'","completions":["markdown_phpextra"]},{"_internalId":216200,"type":"string","pattern":"^(.+-)?markdown_strict([-+].+)?$","description":"be 'markdown_strict'","completions":["markdown_strict"]},{"_internalId":216201,"type":"string","pattern":"^(.+-)?markua([-+].+)?$","description":"be 'markua'","completions":["markua"]},{"_internalId":216202,"type":"string","pattern":"^(.+-)?mediawiki([-+].+)?$","description":"be 'mediawiki'","completions":["mediawiki"]},{"_internalId":216203,"type":"string","pattern":"^(.+-)?ms([-+].+)?$","description":"be 'ms'","completions":["ms"]},{"_internalId":216204,"type":"string","pattern":"^(.+-)?muse([-+].+)?$","description":"be 'muse'","completions":["muse"]},{"_internalId":216205,"type":"string","pattern":"^(.+-)?native([-+].+)?$","description":"be 'native'","completions":["native"]},{"_internalId":216206,"type":"string","pattern":"^(.+-)?odt([-+].+)?$","description":"be 'odt'","completions":["odt"]},{"_internalId":216207,"type":"string","pattern":"^(.+-)?opendocument([-+].+)?$","description":"be 'opendocument'","completions":["opendocument"]},{"_internalId":216208,"type":"string","pattern":"^(.+-)?opml([-+].+)?$","description":"be 'opml'","completions":["opml"]},{"_internalId":216209,"type":"string","pattern":"^(.+-)?org([-+].+)?$","description":"be 'org'","completions":["org"]},{"_internalId":216210,"type":"string","pattern":"^(.+-)?pdf([-+].+)?$","description":"be 'pdf'","completions":["pdf"]},{"_internalId":216211,"type":"string","pattern":"^(.+-)?plain([-+].+)?$","description":"be 'plain'","completions":["plain"]},{"_internalId":216212,"type":"string","pattern":"^(.+-)?pptx([-+].+)?$","description":"be 'pptx'","completions":["pptx"]},{"_internalId":216213,"type":"string","pattern":"^(.+-)?revealjs([-+].+)?$","description":"be 'revealjs'","completions":["revealjs"]},{"_internalId":216214,"type":"string","pattern":"^(.+-)?rst([-+].+)?$","description":"be 'rst'","completions":["rst"]},{"_internalId":216215,"type":"string","pattern":"^(.+-)?rtf([-+].+)?$","description":"be 'rtf'","completions":["rtf"]},{"_internalId":216216,"type":"string","pattern":"^(.+-)?s5([-+].+)?$","description":"be 's5'","completions":["s5"]},{"_internalId":216217,"type":"string","pattern":"^(.+-)?slideous([-+].+)?$","description":"be 'slideous'","completions":["slideous"]},{"_internalId":216218,"type":"string","pattern":"^(.+-)?slidy([-+].+)?$","description":"be 'slidy'","completions":["slidy"]},{"_internalId":216219,"type":"string","pattern":"^(.+-)?tei([-+].+)?$","description":"be 'tei'","completions":["tei"]},{"_internalId":216220,"type":"string","pattern":"^(.+-)?texinfo([-+].+)?$","description":"be 'texinfo'","completions":["texinfo"]},{"_internalId":216221,"type":"string","pattern":"^(.+-)?textile([-+].+)?$","description":"be 'textile'","completions":["textile"]},{"_internalId":216222,"type":"string","pattern":"^(.+-)?typst([-+].+)?$","description":"be 'typst'","completions":["typst"]},{"_internalId":216223,"type":"string","pattern":"^(.+-)?vimdoc([-+].+)?$","description":"be 'vimdoc'","completions":["vimdoc"]},{"_internalId":216224,"type":"string","pattern":"^(.+-)?xml([-+].+)?$","description":"be 'xml'","completions":["xml"]},{"_internalId":216225,"type":"string","pattern":"^(.+-)?xwiki([-+].+)?$","description":"be 'xwiki'","completions":["xwiki"]},{"_internalId":216226,"type":"string","pattern":"^(.+-)?zimwiki([-+].+)?$","description":"be 'zimwiki'","completions":["zimwiki"]},{"_internalId":216227,"type":"string","pattern":"^(.+-)?md([-+].+)?$","description":"be 'md'","completions":["md"]},{"_internalId":216228,"type":"string","pattern":"^(.+-)?hugo([-+].+)?$","description":"be 'hugo'","completions":["hugo"]},{"_internalId":216229,"type":"string","pattern":"^(.+-)?dashboard([-+].+)?$","description":"be 'dashboard'","completions":["dashboard"]},{"_internalId":216230,"type":"string","pattern":"^(.+-)?email([-+].+)?$","description":"be 'email'","completions":["email"]},{"_internalId":216231,"type":"string","pattern":"^.+.lua$","description":"be a string that satisfies regex \"^.+.lua$\""}],"description":"be the name of a pandoc-supported output format"},{"_internalId":216233,"type":"object","description":"be an object","properties":{},"patternProperties":{},"propertyNames":{"_internalId":216231,"type":"string","pattern":"^.+.lua$","description":"be a string that satisfies regex \"^.+.lua$\""}},{"_internalId":216235,"type":"allOf","allOf":[{"_internalId":216234,"type":"object","description":"be an object","properties":{},"patternProperties":{"^(.+-)?ansi([-+].+)?$":{"_internalId":8267,"type":"anyOf","anyOf":[{"_internalId":8265,"type":"object","description":"be an object","properties":{"eval":{"_internalId":8169,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":8170,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":8171,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":8172,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":8173,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":8174,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":8175,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":8176,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":8177,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":8178,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":8179,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":8180,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":8181,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":8182,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":8183,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":8184,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":8185,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":8186,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":8187,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":8188,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":8189,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":8190,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":8191,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":8192,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":8193,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":8194,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":8195,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":8196,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":8197,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":8198,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":8199,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":8200,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":8201,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":8202,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":8203,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":8204,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":8204,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":8205,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":8206,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":8207,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":8208,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":8209,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":8210,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":8211,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":8212,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":8213,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":8214,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":8215,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":8216,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":8217,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":8218,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":8219,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":8220,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":8221,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":8222,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":8223,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":8224,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":8225,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":8226,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":8227,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":8228,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":8229,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":8230,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":8231,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":8232,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":8233,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":8234,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":8235,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":8236,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":8237,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":8238,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":8239,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":8240,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":8240,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":8241,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":8242,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":8243,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":8244,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":8245,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":8246,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":8247,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":8248,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":8249,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":8250,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":8251,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":8252,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":8253,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":8254,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":8255,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":8256,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":8257,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":8258,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":8259,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":8260,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":8261,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":8262,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":8263,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":8263,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":8264,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":8266,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoc([-+].+)?$":{"_internalId":10918,"type":"anyOf","anyOf":[{"_internalId":10916,"type":"object","description":"be an object","properties":{"eval":{"_internalId":10818,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":10819,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":10820,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":10821,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":10822,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":10823,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":10824,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":10825,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":10826,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":10827,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":10828,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":10829,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":10830,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":10831,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":10832,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":10833,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":10834,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":10835,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":10836,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":10837,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":10838,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":10839,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":10840,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":10841,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":10842,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":10843,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":10844,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":10845,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":10846,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":10847,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":10848,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":10849,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":10850,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":10851,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":10852,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":10853,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":10854,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":10854,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":10855,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":10856,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":10857,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":10858,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":10859,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":10860,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":10861,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":10862,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":10863,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":10864,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":10865,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":10866,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":10867,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":10868,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":10869,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":10870,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":10871,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":10872,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":10873,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":10874,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":10875,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":10876,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":10877,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":10878,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":10879,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":10880,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":10881,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"keywords":{"_internalId":10882,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":10883,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":10884,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":10885,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":10886,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":10887,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":10888,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":10889,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":10890,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":10891,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":10891,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":10892,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":10893,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":10894,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":10895,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":10896,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":10897,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":10898,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":10899,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":10900,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":10901,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":10902,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":10903,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":10904,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":10905,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":10906,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":10907,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":10908,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":10909,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":10910,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":10911,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":10912,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":10913,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":10914,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":10914,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":10915,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,abstract,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,keywords,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":10917,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoc_legacy([-+].+)?$":{"_internalId":13567,"type":"anyOf","anyOf":[{"_internalId":13565,"type":"object","description":"be an object","properties":{"eval":{"_internalId":13469,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":13470,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":13471,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":13472,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":13473,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":13474,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":13475,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":13476,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":13477,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":13478,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":13479,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":13480,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":13481,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":13482,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":13483,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":13484,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":13485,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":13486,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":13487,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":13488,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":13489,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":13490,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":13491,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":13492,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":13493,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":13494,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":13495,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":13496,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":13497,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":13498,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":13499,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":13500,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":13501,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":13502,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":13503,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":13504,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":13504,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":13505,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":13506,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":13507,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":13508,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":13509,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":13510,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":13511,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":13512,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":13513,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":13514,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":13515,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":13516,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":13517,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":13518,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":13519,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":13520,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":13521,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":13522,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":13523,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":13524,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":13525,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":13526,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":13527,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":13528,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":13529,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":13530,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":13531,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":13532,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":13533,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":13534,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":13535,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":13536,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":13537,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":13538,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":13539,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":13540,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":13540,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":13541,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":13542,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":13543,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":13544,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":13545,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":13546,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":13547,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":13548,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":13549,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":13550,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":13551,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":13552,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":13553,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":13554,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":13555,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":13556,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":13557,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":13558,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":13559,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":13560,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":13561,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":13562,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":13563,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":13563,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":13564,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":13566,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?asciidoctor([-+].+)?$":{"_internalId":16218,"type":"anyOf","anyOf":[{"_internalId":16216,"type":"object","description":"be an object","properties":{"eval":{"_internalId":16118,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":16119,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":16120,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":16121,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":16122,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":16123,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":16124,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":16125,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":16126,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":16127,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":16128,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":16129,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":16130,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":16131,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":16132,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":16133,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":16134,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":16135,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":16136,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":16137,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":16138,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":16139,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":16140,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":16141,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":16142,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":16143,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":16144,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":16145,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":16146,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":16147,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":16148,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":16149,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":16150,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":16151,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":16152,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":16153,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":16154,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":16154,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":16155,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":16156,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":16157,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":16158,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":16159,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":16160,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":16161,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":16162,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":16163,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":16164,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":16165,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":16166,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":16167,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":16168,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":16169,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":16170,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":16171,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":16172,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":16173,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":16174,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":16175,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":16176,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":16177,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":16178,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":16179,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":16180,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":16181,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"keywords":{"_internalId":16182,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":16183,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":16184,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":16185,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":16186,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":16187,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":16188,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":16189,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":16190,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":16191,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":16191,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":16192,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":16193,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":16194,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":16195,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":16196,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":16197,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":16198,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":16199,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":16200,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":16201,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":16202,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":16203,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":16204,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":16205,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":16206,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":16207,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":16208,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":16209,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":16210,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":16211,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":16212,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":16213,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":16214,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":16214,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":16215,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,abstract,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,keywords,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":16217,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode([-+].+)?$":{"_internalId":18867,"type":"anyOf","anyOf":[{"_internalId":18865,"type":"object","description":"be an object","properties":{"eval":{"_internalId":18769,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":18770,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":18771,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":18772,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":18773,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":18774,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":18775,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":18776,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":18777,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":18778,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":18779,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":18780,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":18781,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":18782,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":18783,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":18784,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":18785,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":18786,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":18787,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":18788,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":18789,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":18790,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":18791,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":18792,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":18793,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":18794,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":18795,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":18796,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":18797,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":18798,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":18799,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":18800,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":18801,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":18802,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":18803,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":18804,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":18804,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":18805,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":18806,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":18807,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":18808,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":18809,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":18810,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":18811,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":18812,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":18813,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":18814,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":18815,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":18816,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":18817,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":18818,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":18819,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":18820,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":18821,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":18822,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":18823,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":18824,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":18825,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":18826,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":18827,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":18828,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":18829,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":18830,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":18831,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":18832,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":18833,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":18834,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":18835,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":18836,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":18837,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":18838,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":18839,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":18840,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":18840,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":18841,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":18842,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":18843,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":18844,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":18845,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":18846,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":18847,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":18848,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":18849,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":18850,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":18851,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":18852,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":18853,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":18854,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":18855,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":18856,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":18857,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":18858,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":18859,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":18860,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":18861,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":18862,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":18863,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":18863,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":18864,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":18866,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_fluxbb([-+].+)?$":{"_internalId":21516,"type":"anyOf","anyOf":[{"_internalId":21514,"type":"object","description":"be an object","properties":{"eval":{"_internalId":21418,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":21419,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":21420,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":21421,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":21422,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":21423,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":21424,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":21425,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":21426,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":21427,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":21428,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":21429,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":21430,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":21431,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":21432,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":21433,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":21434,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":21435,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":21436,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":21437,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":21438,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":21439,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":21440,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":21441,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":21442,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":21443,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":21444,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":21445,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":21446,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":21447,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":21448,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":21449,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":21450,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":21451,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":21452,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":21453,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":21453,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":21454,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":21455,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":21456,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":21457,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":21458,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":21459,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":21460,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":21461,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":21462,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":21463,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":21464,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":21465,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":21466,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":21467,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":21468,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":21469,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":21470,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":21471,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":21472,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":21473,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":21474,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":21475,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":21476,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":21477,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":21478,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":21479,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":21480,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":21481,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":21482,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":21483,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":21484,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":21485,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":21486,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":21487,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":21488,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":21489,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":21489,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":21490,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":21491,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":21492,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":21493,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":21494,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":21495,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":21496,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":21497,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":21498,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":21499,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":21500,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":21501,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":21502,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":21503,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":21504,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":21505,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":21506,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":21507,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":21508,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":21509,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":21510,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":21511,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":21512,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":21512,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":21513,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":21515,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_hubzilla([-+].+)?$":{"_internalId":24165,"type":"anyOf","anyOf":[{"_internalId":24163,"type":"object","description":"be an object","properties":{"eval":{"_internalId":24067,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":24068,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":24069,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":24070,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":24071,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":24072,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":24073,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":24074,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":24075,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":24076,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":24077,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":24078,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":24079,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":24080,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":24081,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":24082,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":24083,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":24084,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":24085,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":24086,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":24087,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":24088,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":24089,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":24090,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":24091,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":24092,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":24093,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":24094,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":24095,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":24096,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":24097,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":24098,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":24099,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":24100,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":24101,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":24102,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":24102,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":24103,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":24104,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":24105,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":24106,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":24107,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":24108,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":24109,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":24110,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":24111,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":24112,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":24113,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":24114,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":24115,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":24116,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":24117,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":24118,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":24119,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":24120,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":24121,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":24122,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":24123,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":24124,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":24125,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":24126,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":24127,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":24128,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":24129,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":24130,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":24131,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":24132,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":24133,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":24134,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":24135,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":24136,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":24137,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":24138,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":24138,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":24139,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":24140,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":24141,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":24142,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":24143,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":24144,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":24145,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":24146,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":24147,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":24148,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":24149,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":24150,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":24151,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":24152,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":24153,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":24154,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":24155,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":24156,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":24157,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":24158,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":24159,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":24160,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":24161,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":24161,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":24162,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":24164,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_phpbb([-+].+)?$":{"_internalId":26814,"type":"anyOf","anyOf":[{"_internalId":26812,"type":"object","description":"be an object","properties":{"eval":{"_internalId":26716,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":26717,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":26718,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":26719,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":26720,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":26721,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":26722,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":26723,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":26724,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":26725,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":26726,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":26727,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":26728,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":26729,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":26730,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":26731,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":26732,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":26733,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":26734,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":26735,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":26736,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":26737,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":26738,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":26739,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":26740,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":26741,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":26742,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":26743,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":26744,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":26745,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":26746,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":26747,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":26748,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":26749,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":26750,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":26751,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":26751,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":26752,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":26753,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":26754,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":26755,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":26756,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":26757,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":26758,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":26759,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":26760,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":26761,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":26762,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":26763,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":26764,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":26765,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":26766,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":26767,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":26768,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":26769,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":26770,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":26771,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":26772,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":26773,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":26774,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":26775,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":26776,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":26777,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":26778,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":26779,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":26780,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":26781,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":26782,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":26783,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":26784,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":26785,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":26786,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":26787,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":26787,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":26788,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":26789,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":26790,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":26791,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":26792,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":26793,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":26794,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":26795,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":26796,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":26797,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":26798,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":26799,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":26800,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":26801,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":26802,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":26803,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":26804,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":26805,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":26806,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":26807,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":26808,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":26809,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":26810,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":26810,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":26811,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":26813,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_steam([-+].+)?$":{"_internalId":29463,"type":"anyOf","anyOf":[{"_internalId":29461,"type":"object","description":"be an object","properties":{"eval":{"_internalId":29365,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":29366,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":29367,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":29368,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":29369,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":29370,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":29371,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":29372,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":29373,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":29374,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":29375,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":29376,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":29377,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":29378,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":29379,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":29380,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":29381,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":29382,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":29383,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":29384,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":29385,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":29386,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":29387,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":29388,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":29389,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":29390,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":29391,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":29392,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":29393,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":29394,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":29395,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":29396,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":29397,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":29398,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":29399,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":29400,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":29400,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":29401,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":29402,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":29403,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":29404,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":29405,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":29406,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":29407,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":29408,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":29409,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":29410,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":29411,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":29412,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":29413,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":29414,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":29415,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":29416,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":29417,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":29418,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":29419,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":29420,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":29421,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":29422,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":29423,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":29424,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":29425,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":29426,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":29427,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":29428,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":29429,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":29430,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":29431,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":29432,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":29433,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":29434,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":29435,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":29436,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":29436,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":29437,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":29438,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":29439,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":29440,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":29441,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":29442,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":29443,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":29444,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":29445,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":29446,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":29447,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":29448,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":29449,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":29450,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":29451,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":29452,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":29453,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":29454,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":29455,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":29456,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":29457,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":29458,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":29459,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":29459,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":29460,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":29462,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bbcode_xenforo([-+].+)?$":{"_internalId":32112,"type":"anyOf","anyOf":[{"_internalId":32110,"type":"object","description":"be an object","properties":{"eval":{"_internalId":32014,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":32015,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":32016,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":32017,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":32018,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":32019,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":32020,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":32021,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":32022,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":32023,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":32024,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":32025,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":32026,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":32027,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":32028,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":32029,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":32030,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":32031,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":32032,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":32033,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":32034,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":32035,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":32036,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":32037,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":32038,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":32039,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":32040,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":32041,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":32042,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":32043,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":32044,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":32045,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":32046,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":32047,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":32048,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":32049,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":32049,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":32050,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":32051,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":32052,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":32053,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":32054,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":32055,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":32056,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":32057,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":32058,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":32059,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":32060,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":32061,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":32062,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":32063,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":32064,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":32065,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":32066,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":32067,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":32068,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":32069,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":32070,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":32071,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":32072,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":32073,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":32074,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":32075,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":32076,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":32077,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":32078,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":32079,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":32080,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":32081,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":32082,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":32083,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":32084,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":32085,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":32085,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":32086,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":32087,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":32088,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":32089,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":32090,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":32091,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":32092,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":32093,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":32094,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":32095,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":32096,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":32097,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":32098,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":32099,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":32100,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":32101,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":32102,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":32103,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":32104,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":32105,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":32106,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":32107,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":32108,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":32108,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":32109,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":32111,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?beamer([-+].+)?$":{"_internalId":34868,"type":"anyOf","anyOf":[{"_internalId":34866,"type":"object","description":"be an object","properties":{"eval":{"_internalId":34663,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":34664,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":34665,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":34666,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":34667,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":34668,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":34669,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":34670,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":34671,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":34672,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":34673,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":34674,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":34675,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":34676,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":34677,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":34678,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":34679,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":34680,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":34681,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":34682,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"abstract":{"_internalId":34683,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":34684,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":34685,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":34686,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":34687,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":34688,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":34689,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":34690,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":34691,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":34692,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":34693,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":34694,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":34695,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":34696,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":34697,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":34698,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":34699,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":34700,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":34701,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":34702,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":34703,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":34704,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":34705,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":34706,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":34707,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":34708,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":34709,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":34710,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":34711,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":34712,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":34713,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":34714,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":34715,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":34716,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":34717,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":34718,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":34719,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":34720,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":34721,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":34722,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":34723,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":34724,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":34725,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":34726,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":34727,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":34728,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":34729,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":34730,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":34731,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":34732,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":34733,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":34734,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":34735,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":34736,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":34737,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":34738,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":34739,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"funding":{"_internalId":34740,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":34741,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":34741,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":34742,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":34743,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":34744,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":34745,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":34746,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":34747,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":34748,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":34749,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":34750,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":34751,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":34752,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":34753,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":34754,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":34755,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":34756,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":34757,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":34758,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":34759,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":34760,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":34761,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":34762,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":34763,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":34764,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":34765,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":34766,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":34767,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":34768,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":34769,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":34770,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":34771,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":34772,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":34773,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":34774,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":34775,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":34776,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":34777,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":34778,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":34779,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":34780,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":34781,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":34782,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":34783,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":34784,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"margin-left":{"_internalId":34785,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":34786,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":34787,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":34788,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":34789,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":34790,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":34791,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":34792,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":34793,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":34794,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":34795,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":34796,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":34797,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":34798,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":34799,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":34800,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":34801,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":34802,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":34803,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":34804,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"pdf-engine":{"_internalId":34805,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":34806,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":34807,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beameroption":{"_internalId":34808,"type":"ref","$ref":"quarto-resource-document-options-beameroption","description":"quarto-resource-document-options-beameroption"},"aspectratio":{"_internalId":34809,"type":"ref","$ref":"quarto-resource-document-options-aspectratio","description":"quarto-resource-document-options-aspectratio"},"logo":{"_internalId":34810,"type":"ref","$ref":"quarto-resource-document-options-logo","description":"quarto-resource-document-options-logo"},"titlegraphic":{"_internalId":34811,"type":"ref","$ref":"quarto-resource-document-options-titlegraphic","description":"quarto-resource-document-options-titlegraphic"},"navigation":{"_internalId":34812,"type":"ref","$ref":"quarto-resource-document-options-navigation","description":"quarto-resource-document-options-navigation"},"section-titles":{"_internalId":34813,"type":"ref","$ref":"quarto-resource-document-options-section-titles","description":"quarto-resource-document-options-section-titles"},"colortheme":{"_internalId":34814,"type":"ref","$ref":"quarto-resource-document-options-colortheme","description":"quarto-resource-document-options-colortheme"},"colorthemeoptions":{"_internalId":34815,"type":"ref","$ref":"quarto-resource-document-options-colorthemeoptions","description":"quarto-resource-document-options-colorthemeoptions"},"fonttheme":{"_internalId":34816,"type":"ref","$ref":"quarto-resource-document-options-fonttheme","description":"quarto-resource-document-options-fonttheme"},"fontthemeoptions":{"_internalId":34817,"type":"ref","$ref":"quarto-resource-document-options-fontthemeoptions","description":"quarto-resource-document-options-fontthemeoptions"},"innertheme":{"_internalId":34818,"type":"ref","$ref":"quarto-resource-document-options-innertheme","description":"quarto-resource-document-options-innertheme"},"innerthemeoptions":{"_internalId":34819,"type":"ref","$ref":"quarto-resource-document-options-innerthemeoptions","description":"quarto-resource-document-options-innerthemeoptions"},"outertheme":{"_internalId":34820,"type":"ref","$ref":"quarto-resource-document-options-outertheme","description":"quarto-resource-document-options-outertheme"},"outerthemeoptions":{"_internalId":34821,"type":"ref","$ref":"quarto-resource-document-options-outerthemeoptions","description":"quarto-resource-document-options-outerthemeoptions"},"themeoptions":{"_internalId":34822,"type":"ref","$ref":"quarto-resource-document-options-themeoptions","description":"quarto-resource-document-options-themeoptions"},"quarto-required":{"_internalId":34823,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdf-standard":{"_internalId":34824,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":34825,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":34826,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":34827,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":34828,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":34829,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":34830,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":34831,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":34832,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":34833,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":34834,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":34835,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":34836,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":34837,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":34838,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":34838,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":34839,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":34840,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":34841,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":34842,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":34843,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":34844,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":34845,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":34846,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":34847,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":34848,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":34849,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-tex":{"_internalId":34850,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":34851,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":34852,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":34853,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":34854,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":34855,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":34856,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":34857,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"incremental":{"_internalId":34858,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":34859,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":34860,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":34861,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":34862,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":34862,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-title":{"_internalId":34863,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":34864,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":34865,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,abstract,thanks,order,citation,code-annotations,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,linkcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,CJKoptions,microtypeoptions,linestretch,links-as-notes,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,shorthands,dir,latex-auto-mk,latex-auto-install,latex-min-runs,latex-max-runs,latex-clean,latex-makeindex,latex-makeindex-opts,latex-tlmgr-opts,latex-output-dir,latex-tinytex,latex-input-paths,documentclass,classoption,pagestyle,papersize,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,keywords,subject,title-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,shift-heading-level-by,top-level-division,brand,theme,pdf-engine,pdf-engine-opt,pdf-engine-opts,beameroption,aspectratio,logo,titlegraphic,navigation,section-titles,colortheme,colorthemeoptions,fonttheme,fontthemeoptions,innertheme,innerthemeoptions,outertheme,outerthemeoptions,themeoptions,quarto-required,pdf-standard,bibliography,csl,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-tex,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,use-rsvg-convert,incremental,slide-level,df-print,ascii,toc,table-of-contents,toc-title,lof,lot","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^cjkmainfont$|^cjkmainfont$|^cjkoptions$|^cjkoptions$|^links_as_notes$|^linksAsNotes$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^latex_auto_mk$|^latexAutoMk$|^latex_auto_install$|^latexAutoInstall$|^latex_min_runs$|^latexMinRuns$|^latex_max_runs$|^latexMaxRuns$|^latex_clean$|^latexClean$|^latex_makeindex$|^latexMakeindex$|^latex_makeindex_opts$|^latexMakeindexOpts$|^latex_tlmgr_opts$|^latexTlmgrOpts$|^latex_output_dir$|^latexOutputDir$|^latex_tinytex$|^latexTinytex$|^latex_input_paths$|^latexInputPaths$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^title_meta$|^titleMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^section_titles$|^sectionTitles$|^quarto_required$|^quartoRequired$|^pdf_standard$|^pdfStandard$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_tex$|^keepTex$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":34867,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?biblatex([-+].+)?$":{"_internalId":37517,"type":"anyOf","anyOf":[{"_internalId":37515,"type":"object","description":"be an object","properties":{"eval":{"_internalId":37419,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":37420,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":37421,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":37422,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":37423,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":37424,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":37425,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":37426,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":37427,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":37428,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":37429,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":37430,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":37431,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":37432,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":37433,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":37434,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":37435,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":37436,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":37437,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":37438,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":37439,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":37440,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":37441,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":37442,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":37443,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":37444,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":37445,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":37446,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":37447,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":37448,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":37449,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":37450,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":37451,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":37452,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":37453,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":37454,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":37454,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":37455,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":37456,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":37457,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":37458,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":37459,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":37460,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":37461,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":37462,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":37463,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":37464,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":37465,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":37466,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":37467,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":37468,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":37469,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":37470,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":37471,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":37472,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":37473,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":37474,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":37475,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":37476,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":37477,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":37478,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":37479,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":37480,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":37481,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":37482,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":37483,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":37484,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":37485,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":37486,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":37487,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":37488,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":37489,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":37490,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":37490,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":37491,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":37492,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":37493,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":37494,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":37495,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":37496,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":37497,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":37498,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":37499,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":37500,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":37501,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":37502,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":37503,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":37504,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":37505,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":37506,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":37507,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":37508,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":37509,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":37510,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":37511,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":37512,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":37513,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":37513,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":37514,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":37516,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?bibtex([-+].+)?$":{"_internalId":40166,"type":"anyOf","anyOf":[{"_internalId":40164,"type":"object","description":"be an object","properties":{"eval":{"_internalId":40068,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":40069,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":40070,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":40071,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":40072,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":40073,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":40074,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":40075,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":40076,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":40077,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":40078,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":40079,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":40080,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":40081,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":40082,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":40083,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":40084,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":40085,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":40086,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":40087,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":40088,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":40089,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":40090,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":40091,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":40092,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":40093,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":40094,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":40095,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":40096,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":40097,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":40098,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":40099,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":40100,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":40101,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":40102,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":40103,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":40103,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":40104,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":40105,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":40106,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":40107,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":40108,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":40109,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":40110,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":40111,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":40112,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":40113,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":40114,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":40115,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":40116,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":40117,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":40118,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":40119,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":40120,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":40121,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":40122,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":40123,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":40124,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":40125,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":40126,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":40127,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":40128,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":40129,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":40130,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":40131,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":40132,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":40133,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":40134,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":40135,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":40136,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":40137,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":40138,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":40139,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":40139,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":40140,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":40141,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":40142,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":40143,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":40144,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":40145,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":40146,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":40147,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":40148,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":40149,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":40150,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":40151,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":40152,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":40153,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":40154,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":40155,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":40156,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":40157,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":40158,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":40159,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":40160,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":40161,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":40162,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":40162,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":40163,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":40165,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?chunkedhtml([-+].+)?$":{"_internalId":42816,"type":"anyOf","anyOf":[{"_internalId":42814,"type":"object","description":"be an object","properties":{"eval":{"_internalId":42717,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":42718,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":42719,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":42720,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":42721,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":42722,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":42723,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":42724,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":42725,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":42726,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":42727,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":42728,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":42729,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":42730,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":42731,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":42732,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":42733,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":42734,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":42735,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":42736,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":42737,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":42738,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":42739,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":42740,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":42741,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":42742,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":42743,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":42744,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":42745,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":42746,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":42747,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":42748,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":42749,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":42750,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"split-level":{"_internalId":42751,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":42752,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":42753,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":42753,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":42754,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":42755,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":42756,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":42757,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":42758,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":42759,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":42760,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":42761,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":42762,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":42763,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":42764,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":42765,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":42766,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":42767,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":42768,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":42769,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":42770,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":42771,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":42772,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":42773,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":42774,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":42775,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":42776,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":42777,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":42778,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":42779,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":42780,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":42781,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":42782,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":42783,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":42784,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":42785,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":42786,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":42787,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":42788,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":42789,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":42789,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":42790,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":42791,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":42792,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":42793,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":42794,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":42795,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":42796,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":42797,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":42798,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":42799,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":42800,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":42801,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":42802,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":42803,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":42804,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":42805,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":42806,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":42807,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":42808,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":42809,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":42810,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":42811,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":42812,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":42812,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":42813,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":42815,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?commonmark([-+].+)?$":{"_internalId":45472,"type":"anyOf","anyOf":[{"_internalId":45470,"type":"object","description":"be an object","properties":{"eval":{"_internalId":45367,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":45368,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":45369,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":45370,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":45371,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":45372,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":45373,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":45374,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":45375,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":45376,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":45377,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":45378,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":45379,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":45380,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":45381,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":45382,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":45383,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":45384,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":45385,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":45386,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":45387,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":45388,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":45389,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":45390,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":45391,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":45392,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":45393,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":45394,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":45395,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":45396,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":45397,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":45398,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":45399,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":45400,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":45401,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":45402,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":45403,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":45403,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":45404,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":45405,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":45406,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":45407,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":45408,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":45409,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":45410,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":45411,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":45412,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":45413,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":45414,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":45415,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":45416,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":45417,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":45418,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":45419,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":45420,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":45421,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":45422,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":45423,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":45424,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":45425,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":45426,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":45427,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":45428,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":45429,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":45430,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":45431,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":45432,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":45433,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":45434,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":45435,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":45436,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":45437,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":45438,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":45439,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":45440,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":45441,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":45442,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":45443,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":45443,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":45444,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":45445,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":45446,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":45447,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":45448,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":45449,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":45450,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":45451,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":45452,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":45453,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":45454,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":45455,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":45456,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":45457,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":45458,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":45459,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":45460,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":45461,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":45462,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":45463,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":45464,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":45465,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":45466,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":45467,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":45468,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":45468,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":45469,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":45471,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?commonmark_x([-+].+)?$":{"_internalId":48128,"type":"anyOf","anyOf":[{"_internalId":48126,"type":"object","description":"be an object","properties":{"eval":{"_internalId":48023,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":48024,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":48025,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":48026,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":48027,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":48028,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":48029,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":48030,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":48031,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":48032,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":48033,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":48034,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":48035,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":48036,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":48037,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":48038,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":48039,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":48040,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":48041,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":48042,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":48043,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":48044,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":48045,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":48046,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":48047,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":48048,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":48049,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":48050,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":48051,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":48052,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":48053,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":48054,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":48055,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":48056,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":48057,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":48058,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":48059,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":48059,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":48060,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":48061,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":48062,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":48063,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":48064,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":48065,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":48066,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":48067,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":48068,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":48069,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":48070,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":48071,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":48072,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":48073,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":48074,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":48075,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":48076,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":48077,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":48078,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":48079,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":48080,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":48081,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":48082,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":48083,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":48084,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":48085,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":48086,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":48087,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":48088,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":48089,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":48090,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":48091,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":48092,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":48093,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":48094,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":48095,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":48096,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":48097,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":48098,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":48099,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":48099,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":48100,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":48101,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":48102,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":48103,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":48104,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":48105,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":48106,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":48107,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":48108,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":48109,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":48110,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":48111,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":48112,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":48113,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":48114,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":48115,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":48116,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":48117,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":48118,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":48119,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":48120,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":48121,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":48122,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":48123,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":48124,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":48124,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":48125,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":48127,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?context([-+].+)?$":{"_internalId":50806,"type":"anyOf","anyOf":[{"_internalId":50804,"type":"object","description":"be an object","properties":{"eval":{"_internalId":50679,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":50680,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":50681,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":50682,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":50683,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":50684,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":50685,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":50686,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":50687,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":50688,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":50689,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":50690,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":50691,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":50692,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":50693,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"linkcolor":{"_internalId":50694,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"contrastcolor":{"_internalId":50695,"type":"ref","$ref":"quarto-resource-document-colors-contrastcolor","description":"quarto-resource-document-colors-contrastcolor"},"crossref":{"_internalId":50696,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":50697,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":50698,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":50699,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":50700,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":50701,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":50702,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":50703,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":50704,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":50705,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":50706,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":50707,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":50708,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":50709,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":50710,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":50711,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":50712,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":50713,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":50714,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":50715,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":50716,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":50717,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":50718,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":50719,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":50720,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"interlinespace":{"_internalId":50721,"type":"ref","$ref":"quarto-resource-document-fonts-interlinespace","description":"quarto-resource-document-fonts-interlinespace"},"linkstyle":{"_internalId":50722,"type":"ref","$ref":"quarto-resource-document-fonts-linkstyle","description":"quarto-resource-document-fonts-linkstyle"},"whitespace":{"_internalId":50723,"type":"ref","$ref":"quarto-resource-document-fonts-whitespace","description":"quarto-resource-document-fonts-whitespace"},"indenting":{"_internalId":50724,"type":"ref","$ref":"quarto-resource-document-formatting-indenting","description":"quarto-resource-document-formatting-indenting"},"funding":{"_internalId":50725,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":50726,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":50726,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":50727,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":50728,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":50729,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":50730,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":50731,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":50732,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":50733,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":50734,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":50735,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":50736,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":50737,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":50738,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":50739,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":50740,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":50741,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":50742,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":50743,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":50744,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":50745,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":50746,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":50747,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":50748,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"headertext":{"_internalId":50749,"type":"ref","$ref":"quarto-resource-document-includes-headertext","description":"quarto-resource-document-includes-headertext"},"footertext":{"_internalId":50750,"type":"ref","$ref":"quarto-resource-document-includes-footertext","description":"quarto-resource-document-includes-footertext"},"includesource":{"_internalId":50751,"type":"ref","$ref":"quarto-resource-document-includes-includesource","description":"quarto-resource-document-includes-includesource"},"metadata-file":{"_internalId":50752,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":50753,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":50754,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":50755,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":50756,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"layout":{"_internalId":50757,"type":"ref","$ref":"quarto-resource-document-layout-layout","description":"quarto-resource-document-layout-layout"},"margin-left":{"_internalId":50758,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":50759,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":50760,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":50761,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"keywords":{"_internalId":50762,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"number-sections":{"_internalId":50763,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":50764,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"pagenumbering":{"_internalId":50765,"type":"ref","$ref":"quarto-resource-document-numbering-pagenumbering","description":"quarto-resource-document-numbering-pagenumbering"},"top-level-division":{"_internalId":50766,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":50767,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":50768,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":50769,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":50770,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":50771,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdfa":{"_internalId":50772,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfa","description":"quarto-resource-document-pdfa-pdfa"},"pdfaiccprofile":{"_internalId":50773,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaiccprofile","description":"quarto-resource-document-pdfa-pdfaiccprofile"},"pdfaintent":{"_internalId":50774,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaintent","description":"quarto-resource-document-pdfa-pdfaintent"},"bibliography":{"_internalId":50775,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":50776,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":50777,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":50778,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":50779,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":50779,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":50780,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":50781,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":50782,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":50783,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":50784,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":50785,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":50786,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":50787,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":50788,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":50789,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":50790,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":50791,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":50792,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":50793,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":50794,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":50795,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":50796,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":50797,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":50798,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":50799,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":50800,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":50801,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":50802,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":50802,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":50803,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,subtitle,date,date-format,author,abstract,order,citation,code-annotations,linkcolor,contrastcolor,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,linestretch,interlinespace,linkstyle,whitespace,indenting,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,headertext,footertext,includesource,metadata-file,metadata-files,lang,language,dir,layout,margin-left,margin-right,margin-top,margin-bottom,keywords,number-sections,shift-heading-level-by,pagenumbering,top-level-division,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,quarto-required,pdfa,pdfaiccprofile,pdfaintent,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":50805,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?csljson([-+].+)?$":{"_internalId":53455,"type":"anyOf","anyOf":[{"_internalId":53453,"type":"object","description":"be an object","properties":{"eval":{"_internalId":53357,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":53358,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":53359,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":53360,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":53361,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":53362,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":53363,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":53364,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":53365,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":53366,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":53367,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":53368,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":53369,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":53370,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":53371,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":53372,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":53373,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":53374,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":53375,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":53376,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":53377,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":53378,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":53379,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":53380,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":53381,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":53382,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":53383,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":53384,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":53385,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":53386,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":53387,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":53388,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":53389,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":53390,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":53391,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":53392,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":53392,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":53393,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":53394,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":53395,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":53396,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":53397,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":53398,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":53399,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":53400,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":53401,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":53402,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":53403,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":53404,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":53405,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":53406,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":53407,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":53408,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":53409,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":53410,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":53411,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":53412,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":53413,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":53414,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":53415,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":53416,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":53417,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":53418,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":53419,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":53420,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":53421,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":53422,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":53423,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":53424,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":53425,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":53426,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":53427,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":53428,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":53428,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":53429,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":53430,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":53431,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":53432,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":53433,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":53434,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":53435,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":53436,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":53437,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":53438,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":53439,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":53440,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":53441,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":53442,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":53443,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":53444,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":53445,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":53446,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":53447,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":53448,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":53449,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":53450,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":53451,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":53451,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":53452,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":53454,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?djot([-+].+)?$":{"_internalId":56104,"type":"anyOf","anyOf":[{"_internalId":56102,"type":"object","description":"be an object","properties":{"eval":{"_internalId":56006,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":56007,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":56008,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":56009,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":56010,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":56011,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":56012,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":56013,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":56014,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":56015,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":56016,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":56017,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":56018,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":56019,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":56020,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":56021,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":56022,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":56023,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":56024,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":56025,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":56026,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":56027,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":56028,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":56029,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":56030,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":56031,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":56032,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":56033,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":56034,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":56035,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":56036,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":56037,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":56038,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":56039,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":56040,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":56041,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":56041,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":56042,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":56043,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":56044,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":56045,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":56046,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":56047,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":56048,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":56049,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":56050,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":56051,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":56052,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":56053,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":56054,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":56055,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":56056,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":56057,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":56058,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":56059,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":56060,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":56061,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":56062,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":56063,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":56064,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":56065,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":56066,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":56067,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":56068,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":56069,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":56070,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":56071,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":56072,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":56073,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":56074,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":56075,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":56076,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":56077,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":56077,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":56078,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":56079,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":56080,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":56081,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":56082,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":56083,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":56084,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":56085,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":56086,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":56087,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":56088,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":56089,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":56090,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":56091,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":56092,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":56093,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":56094,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":56095,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":56096,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":56097,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":56098,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":56099,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":56100,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":56100,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":56101,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":56103,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook([-+].+)?$":{"_internalId":58749,"type":"anyOf","anyOf":[{"_internalId":58747,"type":"object","description":"be an object","properties":{"eval":{"_internalId":58655,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":58656,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":58657,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":58658,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":58659,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":58660,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":58661,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":58662,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":58663,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":58664,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":58665,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":58666,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":58667,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":58668,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":58669,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":58670,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":58671,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":58672,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":58673,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":58674,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":58675,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":58676,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":58677,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":58678,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":58679,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":58680,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":58681,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":58682,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":58683,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":58684,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":58685,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":58686,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":58687,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":58688,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":58689,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":58690,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":58690,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":58691,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":58692,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":58693,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":58694,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":58695,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":58696,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":58697,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":58698,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":58699,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":58700,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":58701,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":58702,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":58703,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":58704,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":58705,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":58706,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":58707,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":58708,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":58709,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":58710,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":58711,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":58712,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":58713,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":58714,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":58715,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":58716,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":58717,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":58718,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":58719,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":58720,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":58721,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":58722,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":58723,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":58724,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":58725,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":58726,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":58727,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":58728,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":58728,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":58729,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":58730,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":58731,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":58732,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":58733,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":58734,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":58735,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":58736,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":58737,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":58738,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":58739,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":58740,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":58741,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":58742,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":58743,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":58744,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":58745,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":58746,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":58748,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook4([-+].+)?$":{"_internalId":61394,"type":"anyOf","anyOf":[{"_internalId":61392,"type":"object","description":"be an object","properties":{"eval":{"_internalId":61300,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":61301,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":61302,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":61303,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":61304,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":61305,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":61306,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":61307,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":61308,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":61309,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":61310,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":61311,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":61312,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":61313,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":61314,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":61315,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":61316,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":61317,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":61318,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":61319,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":61320,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":61321,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":61322,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":61323,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":61324,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":61325,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":61326,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":61327,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":61328,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":61329,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":61330,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":61331,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":61332,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":61333,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":61334,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":61335,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":61335,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":61336,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":61337,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":61338,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":61339,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":61340,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":61341,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":61342,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":61343,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":61344,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":61345,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":61346,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":61347,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":61348,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":61349,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":61350,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":61351,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":61352,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":61353,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":61354,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":61355,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":61356,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":61357,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":61358,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":61359,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":61360,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":61361,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":61362,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":61363,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":61364,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":61365,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":61366,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":61367,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":61368,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":61369,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":61370,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":61371,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":61372,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":61373,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":61373,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":61374,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":61375,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":61376,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":61377,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":61378,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":61379,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":61380,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":61381,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":61382,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":61383,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":61384,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":61385,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":61386,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":61387,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":61388,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":61389,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":61390,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":61391,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":61393,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docbook5([-+].+)?$":{"_internalId":64039,"type":"anyOf","anyOf":[{"_internalId":64037,"type":"object","description":"be an object","properties":{"eval":{"_internalId":63945,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":63946,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":63947,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":63948,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":63949,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":63950,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":63951,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":63952,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":63953,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":63954,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":63955,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":63956,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":63957,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":63958,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":63959,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":63960,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":63961,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":63962,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":63963,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":63964,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":63965,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":63966,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":63967,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":63968,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":63969,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":63970,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":63971,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":63972,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":63973,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":63974,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":63975,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":63976,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":63977,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":63978,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":63979,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":63980,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":63980,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":63981,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":63982,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":63983,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":63984,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":63985,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":63986,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":63987,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":63988,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":63989,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":63990,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":63991,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":63992,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":63993,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":63994,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":63995,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":63996,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":63997,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":63998,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":63999,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":64000,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":64001,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":64002,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":64003,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":64004,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":64005,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":64006,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":64007,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":64008,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":64009,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":64010,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":64011,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":64012,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":64013,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":64014,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":64015,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":64016,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":64017,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":64018,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":64018,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":64019,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":64020,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":64021,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":64022,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":64023,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":64024,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":64025,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":64026,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":64027,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":64028,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":64029,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":64030,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":64031,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":64032,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":64033,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":64034,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":64035,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":64036,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":64038,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?docx([-+].+)?$":{"_internalId":66697,"type":"anyOf","anyOf":[{"_internalId":66695,"type":"object","description":"be an object","properties":{"eval":{"_internalId":66590,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":66591,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":66592,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":66593,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":66594,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":66595,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":66596,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":66597,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":66598,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":66599,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":66600,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":66601,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":66602,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":66603,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":66604,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":66605,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":66606,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":66607,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":66608,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":66609,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":66610,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":66611,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":66612,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":66613,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":66614,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":66615,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":66616,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":66617,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":66618,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":66619,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":66620,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":66621,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":66622,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":66623,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":66624,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":66625,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":66626,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":66627,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":66628,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":66629,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":66630,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":66631,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":66632,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":66633,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":66634,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":66634,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":66635,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":66636,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":66637,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":66638,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":66639,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":66640,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":66641,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":66642,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":66643,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":66644,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":66645,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":66646,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":66647,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":66648,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"track-changes":{"_internalId":66649,"type":"ref","$ref":"quarto-resource-document-hidden-track-changes","description":"quarto-resource-document-hidden-track-changes"},"output-divs":{"_internalId":66650,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":66651,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":66652,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":66653,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":66654,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":66655,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":66656,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":66657,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"keywords":{"_internalId":66658,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":66659,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":66660,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":66661,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"number-sections":{"_internalId":66662,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":66663,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"shift-heading-level-by":{"_internalId":66664,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":66665,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":66666,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":66667,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":66668,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":66669,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":66670,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":66671,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":66672,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":66673,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":66674,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":66675,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":66675,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":66676,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":66677,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":66678,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":66679,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":66680,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":66681,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":66682,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":66683,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":66684,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":66685,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":66686,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":66687,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":66688,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":66689,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":66690,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":66691,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":66692,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":66692,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":66693,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":66694,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,track-changes,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,page-width,keywords,subject,description,category,number-sections,number-depth,shift-heading-level-by,reference-doc,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^track_changes$|^trackChanges$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_width$|^pageWidth$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^reference_doc$|^referenceDoc$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":66696,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dokuwiki([-+].+)?$":{"_internalId":69346,"type":"anyOf","anyOf":[{"_internalId":69344,"type":"object","description":"be an object","properties":{"eval":{"_internalId":69248,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":69249,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":69250,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":69251,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":69252,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":69253,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":69254,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":69255,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":69256,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":69257,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":69258,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":69259,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":69260,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":69261,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":69262,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":69263,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":69264,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":69265,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":69266,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":69267,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":69268,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":69269,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":69270,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":69271,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":69272,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":69273,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":69274,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":69275,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":69276,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":69277,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":69278,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":69279,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":69280,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":69281,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":69282,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":69283,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":69283,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":69284,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":69285,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":69286,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":69287,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":69288,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":69289,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":69290,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":69291,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":69292,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":69293,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":69294,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":69295,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":69296,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":69297,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":69298,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":69299,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":69300,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":69301,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":69302,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":69303,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":69304,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":69305,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":69306,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":69307,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":69308,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":69309,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":69310,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":69311,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":69312,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":69313,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":69314,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":69315,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":69316,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":69317,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":69318,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":69319,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":69319,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":69320,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":69321,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":69322,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":69323,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":69324,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":69325,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":69326,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":69327,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":69328,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":69329,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":69330,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":69331,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":69332,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":69333,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":69334,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":69335,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":69336,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":69337,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":69338,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":69339,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":69340,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":69341,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":69342,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":69342,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":69343,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":69345,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dzslides([-+].+)?$":{"_internalId":72046,"type":"anyOf","anyOf":[{"_internalId":72044,"type":"object","description":"be an object","properties":{"eval":{"_internalId":71897,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":71898,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":71899,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":71900,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":71901,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":71902,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":71903,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":71904,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":71905,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":71906,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":71907,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":71908,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":71909,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":71910,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":71911,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":71912,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":71913,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":71914,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":71915,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":71916,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":71917,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":71918,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":71919,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":71920,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":71921,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":71922,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":71923,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":71924,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":71925,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":71926,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":71927,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":71928,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":71929,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":71930,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":71931,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":71932,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":71933,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":71934,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":71935,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":71936,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":71937,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":71938,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":71939,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":71940,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":71941,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":71942,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":71943,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":71944,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":71945,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":71946,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":71947,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":71948,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":71949,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":71950,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":71951,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":71952,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":71953,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":71954,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":71955,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":71956,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":71956,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":71957,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":71958,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":71959,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":71960,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":71961,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":71962,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":71963,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":71964,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":71965,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":71966,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":71967,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":71968,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":71969,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":71970,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":71971,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":71972,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":71973,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":71974,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":71975,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":71976,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":71977,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":71978,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":71979,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":71980,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":71981,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":71982,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":71983,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":71984,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":71985,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":71986,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":71987,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":71988,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":71989,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":71990,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"mermaid":{"_internalId":71991,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":71992,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":71993,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":71994,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":71995,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":71996,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":71997,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":71998,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":71999,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":72000,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":72001,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":72002,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":72003,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":72004,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":72005,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":72006,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":72007,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":72008,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":72009,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":72010,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":72011,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":72012,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":72013,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":72014,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":72015,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":72015,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":72016,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":72017,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":72018,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":72019,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":72020,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":72021,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":72022,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":72023,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":72024,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":72025,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":72026,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":72027,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":72028,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":72029,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":72030,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":72031,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":72032,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":72033,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":72034,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":72035,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":72036,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":72037,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":72038,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":72039,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":72040,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":72041,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":72041,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":72042,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":72043,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":72045,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub([-+].+)?$":{"_internalId":74736,"type":"anyOf","anyOf":[{"_internalId":74734,"type":"object","description":"be an object","properties":{"eval":{"_internalId":74597,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":74598,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":74599,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":74600,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":74601,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":74602,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":74603,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":74604,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":74605,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":74606,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":74607,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":74608,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":74609,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":74610,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":74611,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":74612,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":74613,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":74614,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":74615,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":74616,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":74617,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":74618,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":74619,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":74620,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":74621,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":74622,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":74623,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":74624,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":74625,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":74626,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":74627,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":74628,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":74629,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":74630,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":74631,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"type":{"_internalId":74632,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":74633,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":74634,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":74635,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":74636,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":74637,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":74638,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":74639,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":74640,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":74641,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":74642,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":74643,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":74644,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":74645,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":74646,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":74647,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":74648,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":74649,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":74650,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":74651,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":74652,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":74653,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":74654,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":74655,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":74656,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":74657,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":74658,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":74659,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":74660,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":74661,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":74662,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":74663,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":74664,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":74665,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":74666,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":74667,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":74667,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":74668,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":74669,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":74670,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":74671,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":74672,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":74673,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":74674,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":74675,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":74676,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":74677,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":74678,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":74679,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":74680,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":74681,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":74682,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":74683,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":74684,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":74685,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":74686,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":74687,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":74688,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":74689,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":74690,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":74691,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":74692,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":74693,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":74694,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":74695,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"subject":{"_internalId":74696,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"date-meta":{"_internalId":74697,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":74698,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":74699,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":74700,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":74701,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":74702,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":74703,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":74704,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":74705,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":74706,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":74707,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":74708,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":74709,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":74710,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":74711,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":74711,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":74712,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":74713,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":74714,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":74715,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":74716,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":74717,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":74718,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":74719,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":74720,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":74721,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":74722,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":74723,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":74724,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":74725,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":74726,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":74727,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":74728,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":74729,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":74730,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":74731,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":74731,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":74732,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":74733,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-copy,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,editor_options,zotero,identifier,creator,contributor,type,format,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,subject,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,brand,css,html-math-method,html-q-tags,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,ascii,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":74735,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub2([-+].+)?$":{"_internalId":77426,"type":"anyOf","anyOf":[{"_internalId":77424,"type":"object","description":"be an object","properties":{"eval":{"_internalId":77287,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":77288,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":77289,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":77290,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":77291,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":77292,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":77293,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":77294,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":77295,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":77296,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":77297,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":77298,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":77299,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":77300,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":77301,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":77302,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":77303,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":77304,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":77305,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":77306,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":77307,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":77308,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":77309,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":77310,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":77311,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":77312,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":77313,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":77314,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":77315,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":77316,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":77317,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":77318,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":77319,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":77320,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":77321,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"type":{"_internalId":77322,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":77323,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":77324,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":77325,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":77326,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":77327,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":77328,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":77329,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":77330,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":77331,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":77332,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":77333,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":77334,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":77335,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":77336,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":77337,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":77338,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":77339,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":77340,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":77341,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":77342,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":77343,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":77344,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":77345,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":77346,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":77347,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":77348,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":77349,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":77350,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":77351,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":77352,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":77353,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":77354,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":77355,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":77356,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":77357,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":77357,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":77358,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":77359,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":77360,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":77361,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":77362,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":77363,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":77364,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":77365,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":77366,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":77367,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":77368,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":77369,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":77370,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":77371,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":77372,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":77373,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":77374,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":77375,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":77376,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":77377,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":77378,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":77379,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":77380,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":77381,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":77382,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":77383,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":77384,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":77385,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"subject":{"_internalId":77386,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"date-meta":{"_internalId":77387,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":77388,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":77389,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":77390,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":77391,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":77392,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":77393,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":77394,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":77395,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":77396,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":77397,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":77398,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":77399,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":77400,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":77401,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":77401,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":77402,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":77403,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":77404,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":77405,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":77406,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":77407,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":77408,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":77409,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":77410,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":77411,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":77412,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":77413,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":77414,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":77415,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":77416,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":77417,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":77418,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":77419,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":77420,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":77421,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":77421,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":77422,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":77423,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-copy,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,editor_options,zotero,identifier,creator,contributor,type,format,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,subject,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,brand,css,html-math-method,html-q-tags,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,ascii,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":77425,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?epub3([-+].+)?$":{"_internalId":80116,"type":"anyOf","anyOf":[{"_internalId":80114,"type":"object","description":"be an object","properties":{"eval":{"_internalId":79977,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":79978,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":79979,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":79980,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":79981,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":79982,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":79983,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"tbl-colwidths":{"_internalId":79984,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":79985,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":79986,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":79987,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":79988,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":79989,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":79990,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":79991,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":79992,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":79993,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":79994,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":79995,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"order":{"_internalId":79996,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":79997,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":79998,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-annotations":{"_internalId":79999,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":80000,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":80001,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":80002,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":80003,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":80004,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":80005,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":80006,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":80007,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":80008,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":80009,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":80010,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":80011,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"type":{"_internalId":80012,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"format":{"_internalId":80013,"type":"ref","$ref":"quarto-resource-document-epub-format","description":"quarto-resource-document-epub-format"},"relation":{"_internalId":80014,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":80015,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":80016,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":80017,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":80018,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":80019,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":80020,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":80021,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":80022,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":80023,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":80024,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":80025,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":80026,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":80027,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":80028,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":80029,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":80030,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":80031,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":80032,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":80033,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":80034,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":80035,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":80036,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":80037,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":80038,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":80039,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":80040,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":80041,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":80042,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":80043,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":80044,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"split-level":{"_internalId":80045,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":80046,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":80047,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":80047,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":80048,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":80049,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":80050,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":80051,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":80052,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":80053,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":80054,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":80055,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":80056,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":80057,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":80058,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":80059,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":80060,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":80061,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":80062,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":80063,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":80064,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":80065,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":80066,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":80067,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":80068,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":80069,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":80070,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":80071,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":80072,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":80073,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":80074,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":80075,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"subject":{"_internalId":80076,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"date-meta":{"_internalId":80077,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":80078,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":80079,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":80080,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":80081,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":80082,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"css":{"_internalId":80083,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"html-math-method":{"_internalId":80084,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"html-q-tags":{"_internalId":80085,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":80086,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":80087,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":80088,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":80089,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":80090,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":80091,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":80091,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":80092,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":80093,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":80094,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":80095,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":80096,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":80097,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":80098,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":80099,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":80100,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":80101,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":80102,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":80103,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":80104,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":80105,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":80106,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":80107,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":80108,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":80109,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":80110,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":80111,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":80111,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":80112,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":80113,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,abstract-title,order,citation,code-copy,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,editor_options,zotero,identifier,creator,contributor,type,format,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,subject,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,brand,css,html-math-method,html-q-tags,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,ascii,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":80115,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?fb2([-+].+)?$":{"_internalId":82765,"type":"anyOf","anyOf":[{"_internalId":82763,"type":"object","description":"be an object","properties":{"eval":{"_internalId":82667,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":82668,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":82669,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":82670,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":82671,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":82672,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":82673,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":82674,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":82675,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":82676,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":82677,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":82678,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":82679,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":82680,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":82681,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":82682,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":82683,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":82684,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":82685,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":82686,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":82687,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":82688,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":82689,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":82690,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":82691,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":82692,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":82693,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":82694,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":82695,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":82696,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":82697,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":82698,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":82699,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":82700,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":82701,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":82702,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":82702,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":82703,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":82704,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":82705,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":82706,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":82707,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":82708,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":82709,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":82710,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":82711,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":82712,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":82713,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":82714,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":82715,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":82716,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":82717,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":82718,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":82719,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":82720,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":82721,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":82722,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":82723,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":82724,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":82725,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":82726,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":82727,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":82728,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":82729,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":82730,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":82731,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":82732,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":82733,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":82734,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":82735,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":82736,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":82737,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":82738,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":82738,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":82739,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":82740,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":82741,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":82742,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":82743,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":82744,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":82745,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":82746,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":82747,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":82748,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":82749,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":82750,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":82751,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":82752,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":82753,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":82754,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":82755,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":82756,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":82757,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":82758,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":82759,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":82760,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":82761,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":82761,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":82762,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":82764,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?gfm([-+].+)?$":{"_internalId":85423,"type":"anyOf","anyOf":[{"_internalId":85421,"type":"object","description":"be an object","properties":{"eval":{"_internalId":85316,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":85317,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":85318,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":85319,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":85320,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":85321,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":85322,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":85323,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":85324,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":85325,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":85326,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":85327,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":85328,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":85329,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":85330,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":85331,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":85332,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":85333,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":85334,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":85335,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":85336,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":85337,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":85338,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":85339,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":85340,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":85341,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":85342,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":85343,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":85344,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":85345,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":85346,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":85347,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":85348,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":85349,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":85350,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":85351,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":85352,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":85352,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":85353,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":85354,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":85355,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":85356,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":85357,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":85358,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":85359,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":85360,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":85361,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":85362,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":85363,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":85364,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":85365,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":85366,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":85367,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":85368,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":85369,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":85370,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":85371,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":85372,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":85373,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":85374,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":85375,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":85376,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":85377,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":85378,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":85379,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":85380,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":85381,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":85382,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":85383,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"html-math-method":{"_internalId":85384,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"identifier-prefix":{"_internalId":85385,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":85386,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":85387,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":85388,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":85389,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":85390,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":85391,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":85392,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":85393,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":85394,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":85394,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":85395,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":85396,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":85397,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":85398,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":85399,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":85400,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":85401,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":85402,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":85403,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":85404,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":85405,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":85406,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":85407,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":85408,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":85409,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":85410,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":85411,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":85412,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":85413,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":85414,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":85415,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":85416,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":85417,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":85418,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":85419,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":85419,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":85420,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,html-math-method,identifier-prefix,variant,markdown-headings,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^html_math_method$|^htmlMathMethod$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":85422,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?haddock([-+].+)?$":{"_internalId":88073,"type":"anyOf","anyOf":[{"_internalId":88071,"type":"object","description":"be an object","properties":{"eval":{"_internalId":87974,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":87975,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":87976,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":87977,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":87978,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":87979,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":87980,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":87981,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":87982,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":87983,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":87984,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":87985,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":87986,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":87987,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":87988,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":87989,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":87990,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":87991,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":87992,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":87993,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":87994,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":87995,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":87996,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":87997,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":87998,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":87999,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":88000,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":88001,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":88002,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":88003,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":88004,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":88005,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":88006,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":88007,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":88008,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":88009,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":88009,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":88010,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":88011,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":88012,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":88013,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":88014,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":88015,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":88016,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":88017,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":88018,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":88019,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":88020,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":88021,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":88022,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":88023,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":88024,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":88025,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":88026,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":88027,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":88028,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":88029,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":88030,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":88031,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":88032,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":88033,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":88034,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":88035,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":88036,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":88037,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":88038,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":88039,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":88040,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"quarto-required":{"_internalId":88041,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":88042,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":88043,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":88044,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":88045,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":88046,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":88046,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":88047,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":88048,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":88049,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":88050,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":88051,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":88052,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":88053,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":88054,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":88055,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":88056,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":88057,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":88058,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":88059,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":88060,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":88061,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":88062,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":88063,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":88064,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":88065,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":88066,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":88067,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":88068,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":88069,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":88069,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":88070,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":88072,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html([-+].+)?$":{"_internalId":90831,"type":"anyOf","anyOf":[{"_internalId":90829,"type":"object","description":"be an object","properties":{"eval":{"_internalId":90624,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":90625,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":90626,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":90627,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":90628,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":90629,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":90630,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":90631,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":90632,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":90633,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":90634,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":90635,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":90636,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":90637,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":90638,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":90639,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":90640,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":90641,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":90642,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":90643,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":90644,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":90645,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":90646,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":90647,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":90648,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":90649,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":90650,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":90651,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":90652,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":90653,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":90654,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":90655,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":90656,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":90657,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":90658,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":90659,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":90660,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":90661,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":90662,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":90663,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":90664,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":90665,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":90666,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":90667,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":90668,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":90669,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":90670,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":90671,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":90672,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":90673,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":90674,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":90675,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":90676,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":90677,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":90678,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":90679,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":90680,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":90681,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":90682,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":90683,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":90684,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":90685,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":90686,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":90687,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":90688,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":90689,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":90690,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":90691,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":90692,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":90693,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":90694,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":90695,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":90696,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":90697,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":90697,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":90698,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":90699,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":90700,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":90701,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":90702,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":90703,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":90704,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":90705,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":90706,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":90707,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":90708,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":90709,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":90710,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":90711,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":90712,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":90713,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":90714,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":90715,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":90716,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":90717,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":90718,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":90719,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":90720,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":90721,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":90722,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":90723,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":90724,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":90725,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":90726,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":90727,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":90728,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":90729,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":90730,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":90731,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":90732,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":90733,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":90734,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":90735,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":90736,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":90737,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":90738,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":90739,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":90740,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":90741,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":90742,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":90743,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":90744,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":90745,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":90746,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":90747,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":90748,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":90749,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":90750,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":90751,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":90752,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":90753,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":90754,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":90755,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":90756,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":90757,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":90758,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":90759,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":90760,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":90761,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":90762,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":90763,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":90764,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":90765,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":90766,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":90767,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":90768,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":90769,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":90770,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":90771,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":90772,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":90773,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":90774,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":90775,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":90776,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":90777,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":90778,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":90779,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":90780,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":90781,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":90782,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":90783,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":90784,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":90785,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":90786,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":90787,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":90788,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":90789,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":90790,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":90791,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":90791,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":90792,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":90793,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":90794,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":90795,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":90796,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":90797,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":90798,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":90799,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":90800,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":90801,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":90802,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":90803,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":90804,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":90805,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":90806,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":90807,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":90808,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":90809,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":90810,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":90811,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":90812,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":90813,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":90814,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":90815,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":90815,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":90816,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":90817,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":90818,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":90819,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":90820,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":90821,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":90822,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":90823,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":90824,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":90825,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":90826,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":90827,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":90828,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,abstract,abstract-title,doi,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,linestretch,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,keep-source,keep-hidden,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,page-layout,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,copyright,license,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citation-location,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-location,toc-title,toc-expand,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_layout$|^pageLayout$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":90830,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html4([-+].+)?$":{"_internalId":93589,"type":"anyOf","anyOf":[{"_internalId":93587,"type":"object","description":"be an object","properties":{"eval":{"_internalId":93382,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":93383,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":93384,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":93385,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":93386,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":93387,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":93388,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":93389,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":93390,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":93391,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":93392,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":93393,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":93394,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":93395,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":93396,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":93397,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":93398,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":93399,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":93400,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":93401,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":93402,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":93403,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":93404,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":93405,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":93406,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":93407,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":93408,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":93409,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":93410,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":93411,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":93412,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":93413,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":93414,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":93415,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":93416,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":93417,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":93418,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":93419,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":93420,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":93421,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":93422,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":93423,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":93424,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":93425,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":93426,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":93427,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":93428,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":93429,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":93430,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":93431,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":93432,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":93433,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":93434,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":93435,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":93436,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":93437,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":93438,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":93439,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":93440,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":93441,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":93442,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":93443,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":93444,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":93445,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":93446,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":93447,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":93448,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":93449,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":93450,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":93451,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":93452,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":93453,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":93454,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":93455,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":93455,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":93456,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":93457,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":93458,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":93459,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":93460,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":93461,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":93462,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":93463,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":93464,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":93465,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":93466,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":93467,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":93468,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":93469,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":93470,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":93471,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":93472,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":93473,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":93474,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":93475,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":93476,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":93477,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":93478,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":93479,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":93480,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":93481,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":93482,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":93483,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":93484,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":93485,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":93486,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":93487,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":93488,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":93489,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":93490,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":93491,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":93492,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":93493,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":93494,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":93495,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":93496,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":93497,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":93498,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":93499,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":93500,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":93501,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":93502,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":93503,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":93504,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":93505,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":93506,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":93507,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":93508,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":93509,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":93510,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":93511,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":93512,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":93513,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":93514,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":93515,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":93516,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":93517,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":93518,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":93519,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":93520,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":93521,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":93522,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":93523,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":93524,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":93525,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":93526,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":93527,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":93528,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":93529,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":93530,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":93531,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":93532,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":93533,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":93534,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":93535,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":93536,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":93537,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":93538,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":93539,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":93540,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":93541,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":93542,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":93543,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":93544,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":93545,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":93546,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":93547,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":93548,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":93549,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":93549,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":93550,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":93551,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":93552,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":93553,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":93554,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":93555,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":93556,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":93557,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":93558,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":93559,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":93560,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":93561,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":93562,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":93563,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":93564,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":93565,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":93566,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":93567,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":93568,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":93569,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":93570,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":93571,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":93572,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":93573,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":93573,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":93574,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":93575,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":93576,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":93577,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":93578,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":93579,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":93580,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":93581,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":93582,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":93583,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":93584,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":93585,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":93586,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,abstract,abstract-title,doi,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,linestretch,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,keep-source,keep-hidden,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,page-layout,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,copyright,license,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citation-location,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-location,toc-title,toc-expand,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_layout$|^pageLayout$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":93588,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?html5([-+].+)?$":{"_internalId":96347,"type":"anyOf","anyOf":[{"_internalId":96345,"type":"object","description":"be an object","properties":{"eval":{"_internalId":96140,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":96141,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":96142,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":96143,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":96144,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":96145,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":96146,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":96147,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":96148,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":96149,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":96150,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":96151,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":96152,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":96153,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":96154,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":96155,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":96156,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":96157,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":96158,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":96159,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":96160,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":96161,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":96162,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":96163,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"doi":{"_internalId":96164,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"order":{"_internalId":96165,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":96166,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":96167,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":96168,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":96169,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":96170,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":96171,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":96172,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":96173,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":96174,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":96175,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":96176,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":96177,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":96178,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":96179,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":96180,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":96181,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"comments":{"_internalId":96182,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":96183,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":96184,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":96185,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":96186,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":96187,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":96188,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":96189,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":96190,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":96191,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":96192,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":96193,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":96194,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":96195,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":96196,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":96197,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":96198,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":96199,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":96200,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":96201,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":96202,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":96203,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":96204,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":96205,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":96206,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":96207,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":96208,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"linestretch":{"_internalId":96209,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"footnotes-hover":{"_internalId":96210,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":96211,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":96212,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":96213,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":96213,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":96214,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":96215,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":96216,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":96217,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":96218,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":96219,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":96220,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":96221,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":96222,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":96223,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":96224,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":96225,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":96226,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":96227,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"keep-source":{"_internalId":96228,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":96229,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"output-divs":{"_internalId":96230,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":96231,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":96232,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":96233,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":96234,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":96235,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":96236,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":96237,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":96238,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":96239,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":96240,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":96241,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":96242,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":96243,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":96244,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"page-layout":{"_internalId":96245,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"grid":{"_internalId":96246,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":96247,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":96248,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":96249,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":96250,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":96251,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":96252,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":96253,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":96254,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":96255,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":96256,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":96257,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"lightbox":{"_internalId":96258,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":96259,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":96260,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":96261,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":96262,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":96263,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":96264,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":96265,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-view":{"_internalId":96266,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":96267,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":96268,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":96269,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":96270,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":96271,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":96272,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"copyright":{"_internalId":96273,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"license":{"_internalId":96274,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"pagetitle":{"_internalId":96275,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":96276,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":96277,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":96278,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":96279,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":96280,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":96281,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":96282,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":96283,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":96284,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":96285,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":96286,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":96287,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":96288,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":96289,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":96290,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":96291,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":96292,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":96293,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":96294,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":96295,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":96296,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":96297,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":96298,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":96299,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":96300,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":96301,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":96302,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":96303,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":96304,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":96305,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":96306,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":96307,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":96307,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":96308,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":96309,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":96310,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":96311,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":96312,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":96313,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":96314,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":96315,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":96316,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":96317,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":96318,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":96319,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":96320,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":96321,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":96322,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":96323,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":96324,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":96325,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":96326,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":96327,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":96328,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":96329,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":96330,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":96331,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":96331,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":96332,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":96333,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":96334,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":96335,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"search":{"_internalId":96336,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":96337,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":96338,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":96339,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":96340,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":96341,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":96342,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":96343,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":96344,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,abstract,abstract-title,doi,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,fontsize,linestretch,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,keep-source,keep-hidden,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,page-layout,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,copyright,license,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citation-location,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-location,toc-title,toc-expand,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_layout$|^pageLayout$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":96346,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?icml([-+].+)?$":{"_internalId":98996,"type":"anyOf","anyOf":[{"_internalId":98994,"type":"object","description":"be an object","properties":{"eval":{"_internalId":98898,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":98899,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":98900,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":98901,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":98902,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":98903,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":98904,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":98905,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":98906,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":98907,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":98908,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":98909,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":98910,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":98911,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":98912,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":98913,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":98914,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":98915,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":98916,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":98917,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":98918,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":98919,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":98920,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":98921,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":98922,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":98923,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":98924,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":98925,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":98926,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":98927,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":98928,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":98929,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":98930,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":98931,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":98932,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":98933,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":98933,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":98934,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":98935,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":98936,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":98937,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":98938,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":98939,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":98940,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":98941,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":98942,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":98943,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":98944,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":98945,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":98946,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":98947,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":98948,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":98949,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":98950,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":98951,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":98952,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":98953,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":98954,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":98955,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":98956,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":98957,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":98958,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":98959,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":98960,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":98961,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":98962,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":98963,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":98964,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":98965,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":98966,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":98967,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":98968,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":98969,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":98969,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":98970,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":98971,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":98972,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":98973,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":98974,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":98975,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":98976,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":98977,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":98978,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":98979,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":98980,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":98981,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":98982,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":98983,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":98984,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":98985,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":98986,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":98987,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":98988,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":98989,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":98990,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":98991,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":98992,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":98992,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":98993,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":98995,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?ipynb([-+].+)?$":{"_internalId":101639,"type":"anyOf","anyOf":[{"_internalId":101637,"type":"object","description":"be an object","properties":{"eval":{"_internalId":101547,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":101548,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":101549,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":101550,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":101551,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":101552,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":101553,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":101554,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":101555,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":101556,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":101557,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":101558,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":101559,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":101560,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":101561,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":101562,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":101563,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":101564,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":101565,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":101566,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":101567,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":101568,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":101569,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":101570,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":101571,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":101572,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":101573,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":101574,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":101575,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":101576,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":101577,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":101578,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":101579,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":101580,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":101581,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":101582,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":101582,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":101583,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":101584,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":101585,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":101586,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":101587,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":101588,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":101589,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":101590,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":101591,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":101592,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":101593,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":101594,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":101595,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":101596,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":101597,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":101598,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":101599,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":101600,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":101601,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":101602,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":101603,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":101604,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":101605,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":101606,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"markdown-headings":{"_internalId":101607,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"ipynb-output":{"_internalId":101608,"type":"ref","$ref":"quarto-resource-document-options-ipynb-output","description":"quarto-resource-document-options-ipynb-output"},"quarto-required":{"_internalId":101609,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":101610,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":101611,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":101612,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":101613,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":101614,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":101614,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":101615,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":101616,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":101617,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":101618,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":101619,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":101620,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":101621,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":101622,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":101623,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":101624,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":101625,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":101626,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":101627,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":101628,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":101629,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":101630,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":101631,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":101632,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":101633,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":101634,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":101635,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":101635,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":101636,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,markdown-headings,ipynb-output,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^markdown_headings$|^markdownHeadings$|^ipynb_output$|^ipynbOutput$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":101638,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats([-+].+)?$":{"_internalId":104291,"type":"anyOf","anyOf":[{"_internalId":104289,"type":"object","description":"be an object","properties":{"eval":{"_internalId":104190,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":104191,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":104192,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":104193,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":104194,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":104195,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":104196,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":104197,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":104198,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":104199,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":104200,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":104255,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":104202,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":104203,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":104204,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":104205,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":104206,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":104207,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":104208,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":104209,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":104210,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":104211,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":104212,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":104213,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":104214,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":104215,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":104216,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":104217,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":104218,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":104219,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":104220,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":104221,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":104222,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":104223,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":104224,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":104225,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":104226,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":104227,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":104228,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":104229,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":104230,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":104231,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":104232,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":104232,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":104233,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":104234,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":104235,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":104236,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":104237,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":104238,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":104239,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":104240,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":104241,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":104242,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":104243,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":104244,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":104245,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":104246,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":104247,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":104248,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":104249,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":104250,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":104251,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":104252,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":104253,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":104254,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":104256,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":104257,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":104258,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":104259,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":104260,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":104261,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":104262,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":104263,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":104264,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":104265,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":104266,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":104266,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":104267,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":104268,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":104269,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":104270,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":104271,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":104272,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":104273,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":104274,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":104275,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":104276,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":104277,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":104278,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":104279,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":104280,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":104281,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":104282,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":104283,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":104284,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":104285,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":104286,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":104287,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":104288,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":104290,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_archiving([-+].+)?$":{"_internalId":106943,"type":"anyOf","anyOf":[{"_internalId":106941,"type":"object","description":"be an object","properties":{"eval":{"_internalId":106842,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":106843,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":106844,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":106845,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":106846,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":106847,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":106848,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":106849,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":106850,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":106851,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":106852,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":106907,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":106854,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":106855,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":106856,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":106857,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":106858,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":106859,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":106860,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":106861,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":106862,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":106863,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":106864,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":106865,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":106866,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":106867,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":106868,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":106869,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":106870,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":106871,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":106872,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":106873,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":106874,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":106875,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":106876,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":106877,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":106878,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":106879,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":106880,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":106881,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":106882,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":106883,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":106884,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":106884,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":106885,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":106886,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":106887,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":106888,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":106889,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":106890,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":106891,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":106892,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":106893,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":106894,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":106895,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":106896,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":106897,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":106898,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":106899,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":106900,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":106901,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":106902,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":106903,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":106904,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":106905,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":106906,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":106908,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":106909,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":106910,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":106911,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":106912,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":106913,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":106914,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":106915,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":106916,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":106917,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":106918,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":106918,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":106919,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":106920,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":106921,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":106922,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":106923,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":106924,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":106925,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":106926,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":106927,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":106928,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":106929,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":106930,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":106931,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":106932,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":106933,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":106934,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":106935,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":106936,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":106937,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":106938,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":106939,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":106940,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":106942,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_articleauthoring([-+].+)?$":{"_internalId":109595,"type":"anyOf","anyOf":[{"_internalId":109593,"type":"object","description":"be an object","properties":{"eval":{"_internalId":109494,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":109495,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":109496,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":109497,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":109498,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":109499,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":109500,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":109501,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":109502,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":109503,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":109504,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":109559,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":109506,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":109507,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":109508,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":109509,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":109510,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":109511,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":109512,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":109513,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":109514,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":109515,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":109516,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":109517,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":109518,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":109519,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":109520,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":109521,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":109522,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":109523,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":109524,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":109525,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":109526,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":109527,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":109528,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":109529,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":109530,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":109531,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":109532,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":109533,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":109534,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":109535,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":109536,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":109536,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":109537,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":109538,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":109539,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":109540,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":109541,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":109542,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":109543,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":109544,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":109545,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":109546,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":109547,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":109548,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":109549,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":109550,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":109551,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":109552,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":109553,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":109554,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":109555,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":109556,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":109557,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":109558,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":109560,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":109561,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":109562,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":109563,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":109564,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":109565,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":109566,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":109567,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":109568,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":109569,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":109570,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":109570,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":109571,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":109572,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":109573,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":109574,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":109575,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":109576,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":109577,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":109578,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":109579,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":109580,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":109581,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":109582,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":109583,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":109584,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":109585,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":109586,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":109587,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":109588,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":109589,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":109590,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":109591,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":109592,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":109594,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jats_publishing([-+].+)?$":{"_internalId":112247,"type":"anyOf","anyOf":[{"_internalId":112245,"type":"object","description":"be an object","properties":{"eval":{"_internalId":112146,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":112147,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":112148,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":112149,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":112150,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":112151,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":112152,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":112153,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":112154,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":112155,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":112156,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":112211,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":112158,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":112159,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"abstract":{"_internalId":112160,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"notes":{"_internalId":112161,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":112162,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"order":{"_internalId":112163,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":112164,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":112165,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":112166,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":112167,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":112168,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":112169,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":112170,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":112171,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":112172,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":112173,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":112174,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":112175,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":112176,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":112177,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":112178,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":112179,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":112180,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":112181,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":112182,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":112183,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":112184,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":112185,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":112186,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":112187,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":112188,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":112188,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":112189,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":112190,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":112191,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":112192,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":112193,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":112194,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":112195,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":112196,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":112197,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":112198,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":112199,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":112200,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":112201,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":112202,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":112203,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":112204,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":112205,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":112206,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":112207,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":112208,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":112209,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"notebook-subarticles":{"_internalId":112210,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"license":{"_internalId":112212,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"number-sections":{"_internalId":112213,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":112214,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":112215,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":112216,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":112217,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"bibliography":{"_internalId":112218,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":112219,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":112220,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":112221,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":112222,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":112222,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":112223,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":112224,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":112225,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":112226,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":112227,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":112228,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":112229,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":112230,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":112231,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":112232,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":112233,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":112234,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":112235,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":112236,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":112237,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":112238,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":112239,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":112240,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":112241,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":112242,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":112243,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":112244,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,affiliation,copyright,article,journal,abstract,notes,tags,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,notebook-subarticles,license,number-sections,shift-heading-level-by,brand,quarto-required,preview-mode,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^notebook_subarticles$|^notebookSubarticles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":112246,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?jira([-+].+)?$":{"_internalId":114896,"type":"anyOf","anyOf":[{"_internalId":114894,"type":"object","description":"be an object","properties":{"eval":{"_internalId":114798,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":114799,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":114800,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":114801,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":114802,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":114803,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":114804,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":114805,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":114806,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":114807,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":114808,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":114809,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":114810,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":114811,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":114812,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":114813,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":114814,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":114815,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":114816,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":114817,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":114818,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":114819,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":114820,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":114821,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":114822,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":114823,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":114824,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":114825,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":114826,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":114827,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":114828,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":114829,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":114830,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":114831,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":114832,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":114833,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":114833,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":114834,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":114835,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":114836,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":114837,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":114838,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":114839,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":114840,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":114841,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":114842,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":114843,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":114844,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":114845,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":114846,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":114847,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":114848,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":114849,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":114850,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":114851,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":114852,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":114853,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":114854,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":114855,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":114856,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":114857,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":114858,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":114859,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":114860,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":114861,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":114862,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":114863,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":114864,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":114865,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":114866,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":114867,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":114868,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":114869,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":114869,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":114870,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":114871,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":114872,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":114873,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":114874,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":114875,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":114876,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":114877,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":114878,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":114879,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":114880,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":114881,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":114882,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":114883,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":114884,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":114885,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":114886,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":114887,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":114888,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":114889,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":114890,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":114891,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":114892,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":114892,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":114893,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":114895,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?json([-+].+)?$":{"_internalId":117545,"type":"anyOf","anyOf":[{"_internalId":117543,"type":"object","description":"be an object","properties":{"eval":{"_internalId":117447,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":117448,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":117449,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":117450,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":117451,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":117452,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":117453,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":117454,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":117455,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":117456,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":117457,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":117458,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":117459,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":117460,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":117461,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":117462,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":117463,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":117464,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":117465,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":117466,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":117467,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":117468,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":117469,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":117470,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":117471,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":117472,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":117473,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":117474,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":117475,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":117476,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":117477,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":117478,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":117479,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":117480,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":117481,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":117482,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":117482,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":117483,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":117484,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":117485,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":117486,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":117487,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":117488,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":117489,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":117490,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":117491,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":117492,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":117493,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":117494,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":117495,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":117496,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":117497,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":117498,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":117499,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":117500,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":117501,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":117502,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":117503,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":117504,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":117505,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":117506,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":117507,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":117508,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":117509,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":117510,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":117511,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":117512,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":117513,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":117514,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":117515,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":117516,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":117517,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":117518,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":117518,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":117519,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":117520,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":117521,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":117522,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":117523,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":117524,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":117525,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":117526,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":117527,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":117528,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":117529,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":117530,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":117531,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":117532,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":117533,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":117534,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":117535,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":117536,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":117537,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":117538,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":117539,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":117540,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":117541,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":117541,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":117542,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":117544,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?latex([-+].+)?$":{"_internalId":120270,"type":"anyOf","anyOf":[{"_internalId":120268,"type":"object","description":"be an object","properties":{"eval":{"_internalId":120096,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":120097,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":120098,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":120099,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":120100,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":120101,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":120102,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":120103,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":120104,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":120105,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":120106,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":120107,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":120108,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":120109,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":120110,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":120111,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":120112,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":120113,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":120114,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":120115,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":120116,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":120117,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":120118,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":120119,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":120120,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":120121,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":120122,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":120123,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":120124,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":120125,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":120126,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":120127,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":120128,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":120129,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":120130,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":120131,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":120132,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":120133,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":120134,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":120135,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":120136,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":120137,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":120138,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":120139,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":120140,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":120141,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":120142,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":120143,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":120144,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":120145,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":120146,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":120147,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":120148,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":120149,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":120150,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":120151,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":120152,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":120153,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":120154,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":120155,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":120156,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":120157,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":120158,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":120159,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":120160,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":120161,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":120162,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":120163,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":120164,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":120165,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":120166,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":120167,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":120168,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":120169,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":120170,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":120171,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"funding":{"_internalId":120172,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":120173,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":120173,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":120174,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":120175,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":120176,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":120177,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":120178,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":120179,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":120180,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":120181,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":120182,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":120183,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":120184,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":120185,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":120186,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":120187,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":120188,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":120189,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":120190,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":120191,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":120192,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":120193,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":120194,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":120195,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":120196,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":120197,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":120198,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":120199,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":120200,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"documentclass":{"_internalId":120201,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":120202,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":120203,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":120204,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"margin-left":{"_internalId":120205,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":120206,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":120207,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":120208,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":120209,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":120210,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":120211,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":120212,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":120213,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":120214,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":120215,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":120216,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":120217,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":120218,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":120219,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":120220,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":120221,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":120222,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":120223,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":120224,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":120225,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":120226,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":120227,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdf-standard":{"_internalId":120228,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":120229,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":120230,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":120231,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":120232,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":120233,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":120234,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":120235,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":120236,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":120237,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":120238,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":120239,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":120240,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":120241,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":120242,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":120242,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":120243,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":120244,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":120245,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":120246,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":120247,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":120248,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":120249,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":120250,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":120251,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":120252,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":120253,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":120254,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":120255,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":120256,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":120257,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":120258,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":120259,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":120260,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"df-print":{"_internalId":120261,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":120262,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":120263,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":120263,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":120264,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":120265,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":120266,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":120267,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,thanks,order,citation,code-annotations,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,linkcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,CJKoptions,microtypeoptions,linestretch,links-as-notes,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,documentclass,classoption,pagestyle,papersize,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,keywords,subject,title-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,shift-heading-level-by,top-level-division,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,quarto-required,pdf-standard,bibliography,csl,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,use-rsvg-convert,df-print,ascii,toc,table-of-contents,toc-depth,toc-title,lof,lot","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^cjkmainfont$|^cjkmainfont$|^cjkoptions$|^cjkoptions$|^links_as_notes$|^linksAsNotes$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^title_meta$|^titleMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^pdf_standard$|^pdfStandard$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":120269,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?man([-+].+)?$":{"_internalId":122922,"type":"anyOf","anyOf":[{"_internalId":122920,"type":"object","description":"be an object","properties":{"eval":{"_internalId":122821,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":122822,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":122823,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":122824,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":122825,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":122826,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":122827,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":122828,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":122829,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":122830,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":122831,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":122832,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":122833,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":122834,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":122835,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":122836,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":122837,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":122838,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":122839,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":122840,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":122841,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":122842,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":122843,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":122844,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":122845,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":122846,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":122847,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":122848,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":122849,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":122850,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":122851,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":122852,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":122853,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":122854,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"adjusting":{"_internalId":122855,"type":"ref","$ref":"quarto-resource-document-formatting-adjusting","description":"quarto-resource-document-formatting-adjusting"},"hyphenate":{"_internalId":122856,"type":"ref","$ref":"quarto-resource-document-formatting-hyphenate","description":"quarto-resource-document-formatting-hyphenate"},"funding":{"_internalId":122857,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":122858,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":122858,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":122859,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":122860,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":122861,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":122862,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":122863,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":122864,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":122865,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":122866,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":122867,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":122868,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":122869,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":122870,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":122871,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":122872,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":122873,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":122874,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":122875,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":122876,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":122877,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":122878,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":122879,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":122880,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"footer":{"_internalId":122881,"type":"ref","$ref":"quarto-resource-document-includes-footer","description":"quarto-resource-document-includes-footer"},"header":{"_internalId":122882,"type":"ref","$ref":"quarto-resource-document-includes-header","description":"quarto-resource-document-includes-header"},"metadata-file":{"_internalId":122883,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":122884,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":122885,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":122886,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":122887,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":122888,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":122889,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":122890,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"section":{"_internalId":122891,"type":"ref","$ref":"quarto-resource-document-options-section","description":"quarto-resource-document-options-section"},"quarto-required":{"_internalId":122892,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":122893,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":122894,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":122895,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":122896,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":122897,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":122897,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":122898,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":122899,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":122900,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":122901,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":122902,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":122903,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":122904,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":122905,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":122906,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":122907,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":122908,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":122909,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":122910,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":122911,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":122912,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":122913,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":122914,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":122915,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":122916,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":122917,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":122918,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":122919,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,adjusting,hyphenate,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,footer,header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,section,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":122921,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown([-+].+)?$":{"_internalId":125578,"type":"anyOf","anyOf":[{"_internalId":125576,"type":"object","description":"be an object","properties":{"eval":{"_internalId":125473,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":125474,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":125475,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":125476,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":125477,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":125478,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":125479,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":125480,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":125481,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":125482,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":125483,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":125484,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":125485,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":125486,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":125487,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":125488,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":125489,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":125490,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":125491,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":125492,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":125493,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":125494,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":125495,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":125496,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":125497,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":125498,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":125499,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":125500,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":125501,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":125502,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":125503,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":125504,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":125505,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":125506,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":125507,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":125508,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":125509,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":125509,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":125510,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":125511,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":125512,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":125513,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":125514,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":125515,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":125516,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":125517,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":125518,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":125519,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":125520,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":125521,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":125522,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":125523,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":125524,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":125525,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":125526,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":125527,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":125528,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":125529,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":125530,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":125531,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":125532,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":125533,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":125534,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":125535,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":125536,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":125537,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":125538,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":125539,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":125540,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":125541,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":125542,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":125543,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":125544,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":125545,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":125546,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":125547,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":125548,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":125549,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":125549,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":125550,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":125551,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":125552,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":125553,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":125554,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":125555,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":125556,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":125557,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":125558,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":125559,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":125560,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":125561,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":125562,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":125563,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":125564,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":125565,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":125566,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":125567,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":125568,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":125569,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":125570,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":125571,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":125572,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":125573,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":125574,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":125574,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":125575,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":125577,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_github([-+].+)?$":{"_internalId":128227,"type":"anyOf","anyOf":[{"_internalId":128225,"type":"object","description":"be an object","properties":{"eval":{"_internalId":128129,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":128130,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":128131,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":128132,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":128133,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":128134,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":128135,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":128136,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":128137,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":128138,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":128139,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":128140,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":128141,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":128142,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":128143,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":128144,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":128145,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":128146,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":128147,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":128148,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":128149,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":128150,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":128151,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":128152,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":128153,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":128154,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":128155,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":128156,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":128157,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":128158,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":128159,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":128160,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":128161,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":128162,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":128163,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":128164,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":128164,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":128165,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":128166,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":128167,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":128168,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":128169,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":128170,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":128171,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":128172,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":128173,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":128174,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":128175,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":128176,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":128177,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":128178,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":128179,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":128180,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":128181,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":128182,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":128183,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":128184,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":128185,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":128186,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":128187,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":128188,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":128189,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":128190,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":128191,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":128192,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":128193,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":128194,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":128195,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":128196,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":128197,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":128198,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":128199,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":128200,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":128200,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":128201,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":128202,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":128203,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":128204,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":128205,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":128206,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":128207,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":128208,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":128209,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":128210,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":128211,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":128212,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":128213,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":128214,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":128215,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":128216,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":128217,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":128218,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":128219,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":128220,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":128221,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":128222,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":128223,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":128223,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":128224,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":128226,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_mmd([-+].+)?$":{"_internalId":130876,"type":"anyOf","anyOf":[{"_internalId":130874,"type":"object","description":"be an object","properties":{"eval":{"_internalId":130778,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":130779,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":130780,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":130781,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":130782,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":130783,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":130784,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":130785,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":130786,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":130787,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":130788,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":130789,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":130790,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":130791,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":130792,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":130793,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":130794,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":130795,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":130796,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":130797,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":130798,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":130799,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":130800,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":130801,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":130802,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":130803,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":130804,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":130805,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":130806,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":130807,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":130808,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":130809,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":130810,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":130811,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":130812,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":130813,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":130813,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":130814,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":130815,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":130816,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":130817,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":130818,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":130819,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":130820,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":130821,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":130822,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":130823,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":130824,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":130825,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":130826,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":130827,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":130828,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":130829,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":130830,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":130831,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":130832,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":130833,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":130834,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":130835,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":130836,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":130837,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":130838,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":130839,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":130840,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":130841,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":130842,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":130843,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":130844,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":130845,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":130846,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":130847,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":130848,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":130849,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":130849,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":130850,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":130851,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":130852,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":130853,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":130854,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":130855,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":130856,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":130857,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":130858,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":130859,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":130860,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":130861,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":130862,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":130863,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":130864,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":130865,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":130866,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":130867,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":130868,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":130869,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":130870,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":130871,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":130872,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":130872,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":130873,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":130875,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_phpextra([-+].+)?$":{"_internalId":133525,"type":"anyOf","anyOf":[{"_internalId":133523,"type":"object","description":"be an object","properties":{"eval":{"_internalId":133427,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":133428,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":133429,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":133430,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":133431,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":133432,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":133433,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":133434,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":133435,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":133436,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":133437,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":133438,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":133439,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":133440,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":133441,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":133442,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":133443,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":133444,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":133445,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":133446,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":133447,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":133448,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":133449,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":133450,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":133451,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":133452,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":133453,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":133454,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":133455,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":133456,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":133457,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":133458,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":133459,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":133460,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":133461,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":133462,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":133462,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":133463,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":133464,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":133465,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":133466,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":133467,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":133468,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":133469,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":133470,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":133471,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":133472,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":133473,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":133474,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":133475,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":133476,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":133477,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":133478,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":133479,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":133480,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":133481,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":133482,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":133483,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":133484,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":133485,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":133486,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":133487,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":133488,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":133489,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":133490,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":133491,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":133492,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":133493,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":133494,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":133495,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":133496,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":133497,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":133498,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":133498,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":133499,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":133500,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":133501,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":133502,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":133503,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":133504,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":133505,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":133506,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":133507,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":133508,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":133509,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":133510,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":133511,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":133512,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":133513,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":133514,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":133515,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":133516,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":133517,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":133518,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":133519,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":133520,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":133521,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":133521,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":133522,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":133524,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markdown_strict([-+].+)?$":{"_internalId":136174,"type":"anyOf","anyOf":[{"_internalId":136172,"type":"object","description":"be an object","properties":{"eval":{"_internalId":136076,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":136077,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":136078,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":136079,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":136080,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":136081,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":136082,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":136083,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":136084,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":136085,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":136086,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":136087,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":136088,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":136089,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":136090,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":136091,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":136092,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":136093,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":136094,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":136095,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":136096,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":136097,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":136098,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":136099,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":136100,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":136101,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":136102,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":136103,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":136104,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":136105,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":136106,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":136107,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":136108,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":136109,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":136110,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":136111,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":136111,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":136112,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":136113,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":136114,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":136115,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":136116,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":136117,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":136118,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":136119,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":136120,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":136121,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":136122,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":136123,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":136124,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":136125,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":136126,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":136127,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":136128,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":136129,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":136130,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":136131,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":136132,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":136133,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":136134,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":136135,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":136136,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":136137,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":136138,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":136139,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":136140,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":136141,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":136142,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":136143,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":136144,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":136145,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":136146,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":136147,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":136147,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":136148,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":136149,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":136150,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":136151,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":136152,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":136153,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":136154,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":136155,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":136156,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":136157,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":136158,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":136159,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":136160,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":136161,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":136162,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":136163,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":136164,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":136165,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":136166,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":136167,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":136168,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":136169,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":136170,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":136170,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":136171,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":136173,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?markua([-+].+)?$":{"_internalId":138830,"type":"anyOf","anyOf":[{"_internalId":138828,"type":"object","description":"be an object","properties":{"eval":{"_internalId":138725,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":138726,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":138727,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":138728,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":138729,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":138730,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":138731,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":138732,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":138733,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":138734,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":138735,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":138736,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":138737,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":138738,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":138739,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":138740,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":138741,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":138742,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":138743,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":138744,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":138745,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":138746,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":138747,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":138748,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":138749,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":138750,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":138751,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":138752,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":138753,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":138754,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":138755,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":138756,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":138757,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":138758,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":138759,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":138760,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":138761,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":138761,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":138762,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":138763,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":138764,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":138765,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":138766,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":138767,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":138768,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":138769,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":138770,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":138771,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":138772,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":138773,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":138774,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":138775,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":138776,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":138777,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":138778,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":138779,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":138780,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":138781,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":138782,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":138783,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":138784,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":138785,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":138786,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":138787,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":138788,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":138789,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":138790,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":138791,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":138792,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":138793,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":138794,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":138795,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":138796,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":138797,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":138798,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":138799,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":138800,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":138801,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":138801,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":138802,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":138803,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":138804,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":138805,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":138806,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":138807,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":138808,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":138809,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":138810,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":138811,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":138812,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":138813,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":138814,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":138815,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":138816,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":138817,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":138818,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":138819,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":138820,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":138821,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":138822,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":138823,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":138824,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":138825,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":138826,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":138826,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":138827,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":138829,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?mediawiki([-+].+)?$":{"_internalId":141479,"type":"anyOf","anyOf":[{"_internalId":141477,"type":"object","description":"be an object","properties":{"eval":{"_internalId":141381,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":141382,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":141383,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":141384,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":141385,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":141386,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":141387,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":141388,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":141389,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":141390,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":141391,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":141392,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":141393,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":141394,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":141395,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":141396,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":141397,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":141398,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":141399,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":141400,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":141401,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":141402,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":141403,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":141404,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":141405,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":141406,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":141407,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":141408,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":141409,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":141410,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":141411,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":141412,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":141413,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":141414,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":141415,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":141416,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":141416,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":141417,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":141418,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":141419,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":141420,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":141421,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":141422,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":141423,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":141424,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":141425,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":141426,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":141427,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":141428,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":141429,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":141430,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":141431,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":141432,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":141433,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":141434,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":141435,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":141436,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":141437,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":141438,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":141439,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":141440,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":141441,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":141442,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":141443,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":141444,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":141445,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":141446,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":141447,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":141448,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":141449,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":141450,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":141451,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":141452,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":141452,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":141453,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":141454,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":141455,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":141456,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":141457,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":141458,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":141459,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":141460,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":141461,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":141462,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":141463,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":141464,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":141465,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":141466,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":141467,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":141468,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":141469,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":141470,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":141471,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":141472,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":141473,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":141474,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":141475,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":141475,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":141476,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":141478,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?ms([-+].+)?$":{"_internalId":144143,"type":"anyOf","anyOf":[{"_internalId":144141,"type":"object","description":"be an object","properties":{"eval":{"_internalId":144030,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":144031,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":144032,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"output":{"_internalId":144033,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":144034,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":144035,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":144036,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":144037,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":144038,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":144039,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":144040,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":144041,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":144042,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":144043,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":144044,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":144045,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":144046,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":144047,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":144048,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":144049,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"crossref":{"_internalId":144050,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":144051,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":144052,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":144053,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":144054,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":144055,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":144056,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":144057,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":144058,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":144059,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":144060,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":144061,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":144062,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":144063,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":144064,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":144065,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":144066,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":144067,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":144068,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":144069,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":144070,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fontfamily":{"_internalId":144071,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"pointsize":{"_internalId":144072,"type":"ref","$ref":"quarto-resource-document-fonts-pointsize","description":"quarto-resource-document-fonts-pointsize"},"lineheight":{"_internalId":144073,"type":"ref","$ref":"quarto-resource-document-fonts-lineheight","description":"quarto-resource-document-fonts-lineheight"},"funding":{"_internalId":144074,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":144075,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":144075,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":144076,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":144077,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":144078,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":144079,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":144080,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":144081,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":144082,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":144083,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":144084,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":144085,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":144086,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":144087,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":144088,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":144089,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":144090,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":144091,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":144092,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":144093,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":144094,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":144095,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":144096,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":144097,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":144098,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":144099,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":144100,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":144101,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":144102,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"indent":{"_internalId":144103,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"number-sections":{"_internalId":144104,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":144105,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":144106,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":144107,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":144108,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":144109,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"quarto-required":{"_internalId":144110,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":144111,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":144112,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":144113,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":144114,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":144115,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":144115,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":144116,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":144117,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":144118,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":144119,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":144120,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":144121,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":144122,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":144123,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":144124,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":144125,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":144126,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":144127,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":144128,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":144129,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":144130,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":144131,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":144132,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":144133,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":144134,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":144135,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":144136,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":144137,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"ascii":{"_internalId":144138,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":144139,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":144139,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":144140,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,output,warning,error,include,title,date,date-format,author,abstract,order,citation,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fontfamily,pointsize,lineheight,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,indent,number-sections,shift-heading-level-by,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":144142,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?muse([-+].+)?$":{"_internalId":146794,"type":"anyOf","anyOf":[{"_internalId":146792,"type":"object","description":"be an object","properties":{"eval":{"_internalId":146694,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":146695,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":146696,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":146697,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":146698,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":146699,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":146700,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":146701,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":146702,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":146703,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":146704,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":146705,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":146706,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":146707,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":146708,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":146709,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":146710,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":146711,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":146712,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":146713,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":146714,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":146715,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":146716,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":146717,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":146718,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":146719,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":146720,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":146721,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":146722,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":146723,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":146724,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":146725,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":146726,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":146727,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":146728,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":146729,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":146730,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":146731,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":146731,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":146732,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":146733,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":146734,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":146735,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":146736,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":146737,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":146738,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":146739,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":146740,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":146741,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":146742,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":146743,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":146744,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":146745,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":146746,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":146747,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":146748,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":146749,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":146750,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":146751,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":146752,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":146753,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":146754,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":146755,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":146756,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":146757,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":146758,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":146759,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":146760,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":146761,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":146762,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":146763,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":146764,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":146765,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":146766,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":146767,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":146767,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":146768,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":146769,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":146770,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":146771,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":146772,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":146773,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":146774,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":146775,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":146776,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":146777,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":146778,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":146779,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":146780,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":146781,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":146782,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":146783,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":146784,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":146785,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":146786,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":146787,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":146788,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":146789,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":146790,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":146790,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":146791,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,subtitle,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":146793,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?native([-+].+)?$":{"_internalId":149443,"type":"anyOf","anyOf":[{"_internalId":149441,"type":"object","description":"be an object","properties":{"eval":{"_internalId":149345,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":149346,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":149347,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":149348,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":149349,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":149350,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":149351,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":149352,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":149353,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":149354,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":149355,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":149356,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":149357,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":149358,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":149359,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":149360,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":149361,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":149362,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":149363,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":149364,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":149365,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":149366,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":149367,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":149368,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":149369,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":149370,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":149371,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":149372,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":149373,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":149374,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":149375,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":149376,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":149377,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":149378,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":149379,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":149380,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":149380,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":149381,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":149382,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":149383,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":149384,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":149385,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":149386,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":149387,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":149388,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":149389,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":149390,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":149391,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":149392,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":149393,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":149394,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":149395,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":149396,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":149397,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":149398,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":149399,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":149400,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":149401,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":149402,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":149403,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":149404,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":149405,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":149406,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":149407,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":149408,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":149409,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":149410,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":149411,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":149412,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":149413,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":149414,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":149415,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":149416,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":149416,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":149417,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":149418,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":149419,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":149420,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":149421,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":149422,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":149423,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":149424,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":149425,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":149426,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":149427,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":149428,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":149429,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":149430,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":149431,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":149432,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":149433,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":149434,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":149435,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":149436,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":149437,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":149438,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":149439,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":149439,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":149440,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":149442,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?odt([-+].+)?$":{"_internalId":152097,"type":"anyOf","anyOf":[{"_internalId":152095,"type":"object","description":"be an object","properties":{"eval":{"_internalId":151994,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":151995,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":151996,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":151997,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":151998,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":151999,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":152000,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":152001,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":152002,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":152003,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":152004,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":152005,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":152006,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"order":{"_internalId":152007,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":152008,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":152009,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":152010,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":152011,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":152012,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":152013,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":152014,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":152015,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":152016,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":152017,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":152018,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":152019,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":152020,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":152021,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":152022,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":152023,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":152024,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":152025,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":152026,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":152027,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":152028,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":152029,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":152030,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":152031,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":152032,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":152032,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":152033,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":152034,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":152035,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":152036,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":152037,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":152038,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":152039,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":152040,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":152041,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":152042,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":152043,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":152044,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":152045,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":152046,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":152047,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":152048,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":152049,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":152050,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":152051,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":152052,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":152053,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":152054,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":152055,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":152056,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":152057,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":152058,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":152059,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":152060,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"keywords":{"_internalId":152061,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":152062,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":152063,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"number-sections":{"_internalId":152064,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":152065,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":152066,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":152067,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":152068,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":152069,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":152070,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":152071,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":152072,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":152073,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":152073,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":152074,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":152075,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":152076,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":152077,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":152078,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":152079,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":152080,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":152081,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":152082,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":152083,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":152084,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":152085,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":152086,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":152087,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":152088,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":152089,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":152090,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":152091,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":152092,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":152092,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":152093,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":152094,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,subtitle,date,date-format,author,abstract,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,page-width,keywords,subject,description,number-sections,shift-heading-level-by,reference-doc,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_width$|^pageWidth$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^reference_doc$|^referenceDoc$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":152096,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?opendocument([-+].+)?$":{"_internalId":154745,"type":"anyOf","anyOf":[{"_internalId":154743,"type":"object","description":"be an object","properties":{"eval":{"_internalId":154648,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":154649,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":154650,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":154651,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":154652,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":154653,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":154654,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":154655,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":154656,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":154657,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":154658,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":154659,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":154660,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":154661,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":154662,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":154663,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":154664,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":154665,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":154666,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":154667,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":154668,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":154669,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":154670,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":154671,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":154672,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":154673,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":154674,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":154675,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":154676,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":154677,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":154678,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":154679,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":154680,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":154681,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":154682,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":154683,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":154684,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":154684,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":154685,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":154686,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":154687,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":154688,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":154689,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":154690,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":154691,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":154692,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":154693,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":154694,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":154695,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":154696,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":154697,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":154698,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":154699,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":154700,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":154701,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":154702,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":154703,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":154704,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":154705,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":154706,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":154707,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":154708,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":154709,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":154710,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":154711,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"page-width":{"_internalId":154712,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"number-sections":{"_internalId":154713,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":154714,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":154715,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":154716,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":154717,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":154718,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":154719,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":154720,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":154721,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":154721,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":154722,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":154723,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":154724,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":154725,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":154726,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":154727,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":154728,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":154729,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":154730,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":154731,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":154732,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":154733,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":154734,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":154735,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":154736,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":154737,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":154738,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":154739,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":154740,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":154740,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":154741,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":154742,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,page-width,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^page_width$|^pageWidth$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":154744,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?opml([-+].+)?$":{"_internalId":157394,"type":"anyOf","anyOf":[{"_internalId":157392,"type":"object","description":"be an object","properties":{"eval":{"_internalId":157296,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":157297,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":157298,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":157299,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":157300,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":157301,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":157302,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":157303,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":157304,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":157305,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":157306,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":157307,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":157308,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":157309,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":157310,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":157311,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":157312,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":157313,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":157314,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":157315,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":157316,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":157317,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":157318,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":157319,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":157320,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":157321,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":157322,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":157323,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":157324,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":157325,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":157326,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":157327,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":157328,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":157329,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":157330,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":157331,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":157331,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":157332,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":157333,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":157334,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":157335,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":157336,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":157337,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":157338,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":157339,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":157340,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":157341,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":157342,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":157343,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":157344,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":157345,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":157346,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":157347,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":157348,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":157349,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":157350,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":157351,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":157352,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":157353,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":157354,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":157355,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":157356,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":157357,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":157358,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":157359,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":157360,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":157361,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":157362,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":157363,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":157364,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":157365,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":157366,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":157367,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":157367,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":157368,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":157369,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":157370,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":157371,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":157372,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":157373,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":157374,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":157375,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":157376,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":157377,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":157378,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":157379,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":157380,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":157381,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":157382,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":157383,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":157384,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":157385,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":157386,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":157387,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":157388,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":157389,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":157390,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":157390,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":157391,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":157393,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?org([-+].+)?$":{"_internalId":160043,"type":"anyOf","anyOf":[{"_internalId":160041,"type":"object","description":"be an object","properties":{"eval":{"_internalId":159945,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":159946,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":159947,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":159948,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":159949,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":159950,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":159951,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":159952,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":159953,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":159954,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":159955,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":159956,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":159957,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":159958,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":159959,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":159960,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":159961,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":159962,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":159963,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":159964,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":159965,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":159966,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":159967,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":159968,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":159969,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":159970,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":159971,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":159972,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":159973,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":159974,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":159975,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":159976,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":159977,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":159978,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":159979,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":159980,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":159980,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":159981,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":159982,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":159983,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":159984,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":159985,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":159986,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":159987,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":159988,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":159989,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":159990,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":159991,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":159992,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":159993,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":159994,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":159995,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":159996,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":159997,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":159998,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":159999,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":160000,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":160001,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":160002,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":160003,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":160004,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":160005,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":160006,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":160007,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":160008,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":160009,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":160010,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":160011,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":160012,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":160013,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":160014,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":160015,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":160016,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":160016,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":160017,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":160018,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":160019,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":160020,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":160021,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":160022,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":160023,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":160024,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":160025,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":160026,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":160027,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":160028,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":160029,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":160030,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":160031,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":160032,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":160033,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":160034,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":160035,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":160036,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":160037,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":160038,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":160039,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":160039,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":160040,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":160042,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?pdf([-+].+)?$":{"_internalId":162783,"type":"anyOf","anyOf":[{"_internalId":162781,"type":"object","description":"be an object","properties":{"eval":{"_internalId":162594,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":162595,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-line-numbers":{"_internalId":162596,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":162597,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":162598,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":162599,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":162600,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":162601,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":162602,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":162603,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":162604,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":162605,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":162606,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":162607,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":162608,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":162609,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":162610,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":162611,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":162612,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract":{"_internalId":162613,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"thanks":{"_internalId":162614,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":162615,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":162616,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":162617,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-block-border-left":{"_internalId":162618,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":162619,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":162620,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":162621,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":162622,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":162623,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":162624,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":162625,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"linkcolor":{"_internalId":162626,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":162627,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":162628,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":162629,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":162630,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":162631,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"crossref":{"_internalId":162632,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":162633,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":162634,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":162635,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":162636,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":162637,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":162638,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":162639,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":162640,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":162641,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":162642,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":162643,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":162644,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":162645,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":162646,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":162647,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":162648,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":162649,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":162650,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":162651,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":162652,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":162653,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":162654,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"fontsize":{"_internalId":162655,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":162656,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":162657,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":162658,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":162659,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":162660,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":162661,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":162662,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":162663,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":162664,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":162665,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"CJKoptions":{"_internalId":162666,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":162667,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"linestretch":{"_internalId":162668,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"links-as-notes":{"_internalId":162669,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"reference-location":{"_internalId":162670,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":162671,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":162672,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":162672,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":162673,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":162674,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":162675,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":162676,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":162677,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":162678,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":162679,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":162680,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":162681,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":162682,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":162683,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":162684,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":162685,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":162686,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":162687,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":162688,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":162689,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":162690,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":162691,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":162692,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":162693,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":162694,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":162695,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":162696,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":162697,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":162698,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":162699,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":162700,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":162701,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":162702,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":162703,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":162704,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":162705,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":162706,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":162707,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":162708,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":162709,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":162710,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":162711,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":162712,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":162713,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":162714,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":162715,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"margin-left":{"_internalId":162716,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":162717,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":162718,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":162719,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"geometry":{"_internalId":162720,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":162721,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":162722,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":162723,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"keywords":{"_internalId":162724,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":162725,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"title-meta":{"_internalId":162726,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"author-meta":{"_internalId":162727,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":162728,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":162729,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":162730,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":162731,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"shift-heading-level-by":{"_internalId":162732,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":162733,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":162734,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"pdf-engine":{"_internalId":162735,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":162736,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":162737,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beamerarticle":{"_internalId":162738,"type":"ref","$ref":"quarto-resource-document-options-beamerarticle","description":"quarto-resource-document-options-beamerarticle"},"quarto-required":{"_internalId":162739,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdf-standard":{"_internalId":162740,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":162741,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":162742,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"cite-method":{"_internalId":162743,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":162744,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":162745,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":162746,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":162747,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"biblio-title":{"_internalId":162748,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":162749,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":162750,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":162751,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":162752,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":162753,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":162754,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":162754,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":162755,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":162756,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":162757,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":162758,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":162759,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":162760,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":162761,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":162762,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":162763,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":162764,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":162765,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-tex":{"_internalId":162766,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":162767,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":162768,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":162769,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":162770,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":162771,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":162772,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"use-rsvg-convert":{"_internalId":162773,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"df-print":{"_internalId":162774,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"ascii":{"_internalId":162775,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":162776,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":162776,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":162777,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":162778,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"lof":{"_internalId":162779,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":162780,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,abstract,thanks,order,citation,code-annotations,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,linkcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,monofont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,CJKoptions,microtypeoptions,linestretch,links-as-notes,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,shorthands,dir,latex-auto-mk,latex-auto-install,latex-min-runs,latex-max-runs,latex-clean,latex-makeindex,latex-makeindex-opts,latex-tlmgr-opts,latex-output-dir,latex-tinytex,latex-input-paths,documentclass,classoption,pagestyle,papersize,margin-left,margin-right,margin-top,margin-bottom,geometry,hyperrefoptions,indent,block-headings,keywords,subject,title-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,shift-heading-level-by,top-level-division,brand,pdf-engine,pdf-engine-opt,pdf-engine-opts,beamerarticle,quarto-required,pdf-standard,bibliography,csl,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-tex,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,use-rsvg-convert,df-print,ascii,toc,table-of-contents,toc-depth,toc-title,lof,lot","type":"string","pattern":"(?!(^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^cjkmainfont$|^cjkmainfont$|^cjkoptions$|^cjkoptions$|^links_as_notes$|^linksAsNotes$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^latex_auto_mk$|^latexAutoMk$|^latex_auto_install$|^latexAutoInstall$|^latex_min_runs$|^latexMinRuns$|^latex_max_runs$|^latexMaxRuns$|^latex_clean$|^latexClean$|^latex_makeindex$|^latexMakeindex$|^latex_makeindex_opts$|^latexMakeindexOpts$|^latex_tlmgr_opts$|^latexTlmgrOpts$|^latex_output_dir$|^latexOutputDir$|^latex_tinytex$|^latexTinytex$|^latex_input_paths$|^latexInputPaths$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^title_meta$|^titleMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^quarto_required$|^quartoRequired$|^pdf_standard$|^pdfStandard$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_tex$|^keepTex$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":162782,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?plain([-+].+)?$":{"_internalId":165432,"type":"anyOf","anyOf":[{"_internalId":165430,"type":"object","description":"be an object","properties":{"eval":{"_internalId":165334,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":165335,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":165336,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":165337,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":165338,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":165339,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":165340,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":165341,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":165342,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":165343,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":165344,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":165345,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":165346,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":165347,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":165348,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":165349,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":165350,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":165351,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":165352,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":165353,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":165354,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":165355,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":165356,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":165357,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":165358,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":165359,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":165360,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":165361,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":165362,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":165363,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":165364,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":165365,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":165366,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":165367,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":165368,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":165369,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":165369,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":165370,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":165371,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":165372,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":165373,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":165374,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":165375,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":165376,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":165377,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":165378,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":165379,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":165380,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":165381,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":165382,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":165383,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":165384,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":165385,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":165386,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":165387,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":165388,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":165389,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":165390,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":165391,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":165392,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":165393,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":165394,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":165395,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":165396,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":165397,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":165398,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":165399,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":165400,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":165401,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":165402,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":165403,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":165404,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":165405,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":165405,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":165406,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":165407,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":165408,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":165409,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":165410,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":165411,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":165412,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":165413,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":165414,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":165415,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":165416,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":165417,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":165418,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":165419,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":165420,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":165421,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":165422,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":165423,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":165424,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":165425,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":165426,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":165427,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":165428,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":165428,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":165429,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":165431,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?pptx([-+].+)?$":{"_internalId":168077,"type":"anyOf","anyOf":[{"_internalId":168075,"type":"object","description":"be an object","properties":{"eval":{"_internalId":167983,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":167984,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":167985,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":167986,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":167987,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":167988,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":167989,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":167990,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":167991,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":167992,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":167993,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":167994,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":167995,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":167996,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":167997,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":167998,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":167999,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":168000,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":168001,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":168002,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":168003,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":168004,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":168005,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":168006,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":168007,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":168008,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":168009,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":168010,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":168011,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":168012,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":168013,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":168014,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":168015,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":168016,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":168017,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":168018,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":168018,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":168019,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":168020,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":168021,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":168022,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":168023,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":168024,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":168025,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":168026,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":168027,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":168028,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":168029,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":168030,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":168031,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":168032,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":168033,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":168034,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"metadata-file":{"_internalId":168035,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":168036,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":168037,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":168038,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":168039,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"keywords":{"_internalId":168040,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":168041,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":168042,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":168043,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"number-sections":{"_internalId":168044,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":168045,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"reference-doc":{"_internalId":168046,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":168047,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":168048,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":168049,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":168050,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":168051,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":168052,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":168053,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":168053,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":168054,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":168055,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"filters":{"_internalId":168056,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":168057,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":168058,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":168059,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":168060,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":168061,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":168062,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":168063,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":168064,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":168065,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":168066,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":168067,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":168068,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":168069,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":168070,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":168071,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"toc":{"_internalId":168072,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":168072,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":168073,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":168074,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,metadata-file,metadata-files,lang,language,dir,keywords,subject,description,category,number-sections,shift-heading-level-by,reference-doc,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,toc,table-of-contents,toc-depth,toc-title","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^reference_doc$|^referenceDoc$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":168076,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?revealjs([-+].+)?$":{"_internalId":170859,"type":"anyOf","anyOf":[{"_internalId":170857,"type":"object","description":"be an object","properties":{"eval":{"_internalId":170628,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":170629,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":170630,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":170631,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":170632,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":170633,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":170634,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":170635,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":170636,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":170637,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":170638,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":170639,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":170640,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":170641,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":170642,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":170643,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":170644,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":170645,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":170646,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":170647,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":170648,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":170649,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":170650,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":170651,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":170652,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":170653,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":170654,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":170655,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":170656,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":170657,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":170658,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"comments":{"_internalId":170659,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":170660,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":170661,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":170662,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":170663,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":170664,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":170665,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":170666,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":170667,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":170668,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":170669,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":170670,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":170671,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":170672,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":170673,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":170674,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":170675,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":170676,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":170677,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":170678,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":170679,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":170680,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":170681,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":170682,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":170683,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":170684,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":170685,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":170686,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":170686,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":170687,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":170688,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":170689,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":170690,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":170691,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":170692,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":170693,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":170694,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":170695,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":170696,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":170697,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":170698,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":170699,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":170700,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":170701,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":170702,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":170703,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":170704,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":170705,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":170706,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":170707,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":170708,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":170709,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":170710,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":170711,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":170712,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":170713,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":170714,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":170715,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"brand-mode":{"_internalId":170716,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"max-width":{"_internalId":170717,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":170718,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":170719,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":170720,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":170721,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"margin":{"_internalId":170722,"type":"ref","$ref":"quarto-resource-document-layout-margin","description":"quarto-resource-document-layout-margin"},"revealjs-url":{"_internalId":170723,"type":"ref","$ref":"quarto-resource-document-library-revealjs-url","description":"quarto-resource-document-library-revealjs-url"},"link-external-icon":{"_internalId":170724,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":170725,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":170726,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"mermaid":{"_internalId":170727,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":170728,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":170729,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":170730,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":170731,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":170732,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":170733,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":170734,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":170735,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":170736,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":170737,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":170738,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":170739,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":170740,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"document-css":{"_internalId":170741,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":170742,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":170743,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":170744,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":170745,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":170746,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":170747,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":170748,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":170749,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":170750,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":170751,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":170752,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":170752,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":170753,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":170754,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":170755,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":170756,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":170757,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":170758,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":170759,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":170760,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":170761,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":170762,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":170763,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":170764,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":170765,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":170766,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":170767,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":170768,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":170769,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":170770,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":170771,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":170772,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"logo":{"_internalId":170773,"type":"ref","$ref":"quarto-resource-document-reveal-content-logo","description":"quarto-resource-document-reveal-content-logo"},"footer":{"_internalId":170774,"type":"ref","$ref":"quarto-resource-document-reveal-content-footer","description":"quarto-resource-document-reveal-content-footer"},"scrollable":{"_internalId":170775,"type":"ref","$ref":"quarto-resource-document-reveal-content-scrollable","description":"quarto-resource-document-reveal-content-scrollable"},"smaller":{"_internalId":170776,"type":"ref","$ref":"quarto-resource-document-reveal-content-smaller","description":"quarto-resource-document-reveal-content-smaller"},"output-location":{"_internalId":170777,"type":"ref","$ref":"quarto-resource-document-reveal-content-output-location","description":"quarto-resource-document-reveal-content-output-location"},"embedded":{"_internalId":170778,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-embedded","description":"quarto-resource-document-reveal-hidden-embedded"},"display":{"_internalId":170779,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-display","description":"quarto-resource-document-reveal-hidden-display"},"auto-stretch":{"_internalId":170780,"type":"ref","$ref":"quarto-resource-document-reveal-layout-auto-stretch","description":"quarto-resource-document-reveal-layout-auto-stretch"},"width":{"_internalId":170781,"type":"ref","$ref":"quarto-resource-document-reveal-layout-width","description":"quarto-resource-document-reveal-layout-width"},"height":{"_internalId":170782,"type":"ref","$ref":"quarto-resource-document-reveal-layout-height","description":"quarto-resource-document-reveal-layout-height"},"min-scale":{"_internalId":170783,"type":"ref","$ref":"quarto-resource-document-reveal-layout-min-scale","description":"quarto-resource-document-reveal-layout-min-scale"},"max-scale":{"_internalId":170784,"type":"ref","$ref":"quarto-resource-document-reveal-layout-max-scale","description":"quarto-resource-document-reveal-layout-max-scale"},"center":{"_internalId":170785,"type":"ref","$ref":"quarto-resource-document-reveal-layout-center","description":"quarto-resource-document-reveal-layout-center"},"disable-layout":{"_internalId":170786,"type":"ref","$ref":"quarto-resource-document-reveal-layout-disable-layout","description":"quarto-resource-document-reveal-layout-disable-layout"},"code-block-height":{"_internalId":170787,"type":"ref","$ref":"quarto-resource-document-reveal-layout-code-block-height","description":"quarto-resource-document-reveal-layout-code-block-height"},"preview-links":{"_internalId":170788,"type":"ref","$ref":"quarto-resource-document-reveal-media-preview-links","description":"quarto-resource-document-reveal-media-preview-links"},"auto-play-media":{"_internalId":170789,"type":"ref","$ref":"quarto-resource-document-reveal-media-auto-play-media","description":"quarto-resource-document-reveal-media-auto-play-media"},"preload-iframes":{"_internalId":170790,"type":"ref","$ref":"quarto-resource-document-reveal-media-preload-iframes","description":"quarto-resource-document-reveal-media-preload-iframes"},"view-distance":{"_internalId":170791,"type":"ref","$ref":"quarto-resource-document-reveal-media-view-distance","description":"quarto-resource-document-reveal-media-view-distance"},"mobile-view-distance":{"_internalId":170792,"type":"ref","$ref":"quarto-resource-document-reveal-media-mobile-view-distance","description":"quarto-resource-document-reveal-media-mobile-view-distance"},"parallax-background-image":{"_internalId":170793,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-image","description":"quarto-resource-document-reveal-media-parallax-background-image"},"parallax-background-size":{"_internalId":170794,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-size","description":"quarto-resource-document-reveal-media-parallax-background-size"},"parallax-background-horizontal":{"_internalId":170795,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-horizontal","description":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"parallax-background-vertical":{"_internalId":170796,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-vertical","description":"quarto-resource-document-reveal-media-parallax-background-vertical"},"progress":{"_internalId":170797,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-progress","description":"quarto-resource-document-reveal-navigation-progress"},"history":{"_internalId":170798,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-history","description":"quarto-resource-document-reveal-navigation-history"},"navigation-mode":{"_internalId":170799,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-navigation-mode","description":"quarto-resource-document-reveal-navigation-navigation-mode"},"touch":{"_internalId":170800,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-touch","description":"quarto-resource-document-reveal-navigation-touch"},"keyboard":{"_internalId":170801,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-keyboard","description":"quarto-resource-document-reveal-navigation-keyboard"},"mouse-wheel":{"_internalId":170802,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-mouse-wheel","description":"quarto-resource-document-reveal-navigation-mouse-wheel"},"hide-inactive-cursor":{"_internalId":170803,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-inactive-cursor","description":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"hide-cursor-time":{"_internalId":170804,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-cursor-time","description":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"loop":{"_internalId":170805,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-loop","description":"quarto-resource-document-reveal-navigation-loop"},"shuffle":{"_internalId":170806,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-shuffle","description":"quarto-resource-document-reveal-navigation-shuffle"},"controls":{"_internalId":170807,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls","description":"quarto-resource-document-reveal-navigation-controls"},"controls-layout":{"_internalId":170808,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-layout","description":"quarto-resource-document-reveal-navigation-controls-layout"},"controls-tutorial":{"_internalId":170809,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-tutorial","description":"quarto-resource-document-reveal-navigation-controls-tutorial"},"controls-back-arrows":{"_internalId":170810,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-back-arrows","description":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"auto-slide":{"_internalId":170811,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide","description":"quarto-resource-document-reveal-navigation-auto-slide"},"auto-slide-stoppable":{"_internalId":170812,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-stoppable","description":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"auto-slide-method":{"_internalId":170813,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-method","description":"quarto-resource-document-reveal-navigation-auto-slide-method"},"default-timing":{"_internalId":170814,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-default-timing","description":"quarto-resource-document-reveal-navigation-default-timing"},"pause":{"_internalId":170815,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-pause","description":"quarto-resource-document-reveal-navigation-pause"},"help":{"_internalId":170816,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-help","description":"quarto-resource-document-reveal-navigation-help"},"hash":{"_internalId":170817,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash","description":"quarto-resource-document-reveal-navigation-hash"},"hash-type":{"_internalId":170818,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-type","description":"quarto-resource-document-reveal-navigation-hash-type"},"hash-one-based-index":{"_internalId":170819,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-one-based-index","description":"quarto-resource-document-reveal-navigation-hash-one-based-index"},"respond-to-hash-changes":{"_internalId":170820,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-respond-to-hash-changes","description":"quarto-resource-document-reveal-navigation-respond-to-hash-changes"},"fragment-in-url":{"_internalId":170821,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-fragment-in-url","description":"quarto-resource-document-reveal-navigation-fragment-in-url"},"slide-tone":{"_internalId":170822,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-slide-tone","description":"quarto-resource-document-reveal-navigation-slide-tone"},"jump-to-slide":{"_internalId":170823,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-jump-to-slide","description":"quarto-resource-document-reveal-navigation-jump-to-slide"},"pdf-max-pages-per-slide":{"_internalId":170824,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide","description":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide"},"pdf-separate-fragments":{"_internalId":170825,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-separate-fragments","description":"quarto-resource-document-reveal-print-pdf-separate-fragments"},"pdf-page-height-offset":{"_internalId":170826,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-page-height-offset","description":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"overview":{"_internalId":170827,"type":"ref","$ref":"quarto-resource-document-reveal-tools-overview","description":"quarto-resource-document-reveal-tools-overview"},"menu":{"_internalId":170828,"type":"ref","$ref":"quarto-resource-document-reveal-tools-menu","description":"quarto-resource-document-reveal-tools-menu"},"chalkboard":{"_internalId":170829,"type":"ref","$ref":"quarto-resource-document-reveal-tools-chalkboard","description":"quarto-resource-document-reveal-tools-chalkboard"},"multiplex":{"_internalId":170830,"type":"ref","$ref":"quarto-resource-document-reveal-tools-multiplex","description":"quarto-resource-document-reveal-tools-multiplex"},"scroll-view":{"_internalId":170831,"type":"ref","$ref":"quarto-resource-document-reveal-tools-scroll-view","description":"quarto-resource-document-reveal-tools-scroll-view"},"transition":{"_internalId":170832,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition","description":"quarto-resource-document-reveal-transitions-transition"},"transition-speed":{"_internalId":170833,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition-speed","description":"quarto-resource-document-reveal-transitions-transition-speed"},"background-transition":{"_internalId":170834,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-background-transition","description":"quarto-resource-document-reveal-transitions-background-transition"},"fragments":{"_internalId":170835,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-fragments","description":"quarto-resource-document-reveal-transitions-fragments"},"auto-animate":{"_internalId":170836,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate","description":"quarto-resource-document-reveal-transitions-auto-animate"},"auto-animate-easing":{"_internalId":170837,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-easing","description":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"auto-animate-duration":{"_internalId":170838,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-duration","description":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"auto-animate-unmatched":{"_internalId":170839,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-unmatched","description":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"auto-animate-styles":{"_internalId":170840,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-styles","description":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"incremental":{"_internalId":170841,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":170842,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"slide-number":{"_internalId":170843,"type":"ref","$ref":"quarto-resource-document-slides-slide-number","description":"quarto-resource-document-slides-slide-number"},"show-slide-number":{"_internalId":170844,"type":"ref","$ref":"quarto-resource-document-slides-show-slide-number","description":"quarto-resource-document-slides-show-slide-number"},"title-slide-attributes":{"_internalId":170845,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-attributes","description":"quarto-resource-document-slides-title-slide-attributes"},"title-slide-style":{"_internalId":170846,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-style","description":"quarto-resource-document-slides-title-slide-style"},"center-title-slide":{"_internalId":170847,"type":"ref","$ref":"quarto-resource-document-slides-center-title-slide","description":"quarto-resource-document-slides-center-title-slide"},"show-notes":{"_internalId":170848,"type":"ref","$ref":"quarto-resource-document-slides-show-notes","description":"quarto-resource-document-slides-show-notes"},"rtl":{"_internalId":170849,"type":"ref","$ref":"quarto-resource-document-slides-rtl","description":"quarto-resource-document-slides-rtl"},"df-print":{"_internalId":170850,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":170851,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":170852,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":170853,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":170853,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":170854,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-title":{"_internalId":170855,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"axe":{"_internalId":170856,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,brand-mode,max-width,margin-left,margin-right,margin-top,margin-bottom,margin,revealjs-url,link-external-icon,link-external-newwindow,link-external-filter,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,logo,footer,scrollable,smaller,output-location,embedded,display,auto-stretch,width,height,min-scale,max-scale,center,disable-layout,code-block-height,preview-links,auto-play-media,preload-iframes,view-distance,mobile-view-distance,parallax-background-image,parallax-background-size,parallax-background-horizontal,parallax-background-vertical,progress,history,navigation-mode,touch,keyboard,mouse-wheel,hide-inactive-cursor,hide-cursor-time,loop,shuffle,controls,controls-layout,controls-tutorial,controls-back-arrows,auto-slide,auto-slide-stoppable,auto-slide-method,default-timing,pause,help,hash,hash-type,hash-one-based-index,respond-to-hash-changes,fragment-in-url,slide-tone,jump-to-slide,pdf-max-pages-per-slide,pdf-separate-fragments,pdf-page-height-offset,overview,menu,chalkboard,multiplex,scroll-view,transition,transition-speed,background-transition,fragments,auto-animate,auto-animate-easing,auto-animate-duration,auto-animate-unmatched,auto-animate-styles,incremental,slide-level,slide-number,show-slide-number,title-slide-attributes,title-slide-style,center-title-slide,show-notes,rtl,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,toc-title,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^brand_mode$|^brandMode$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^revealjs_url$|^revealjsUrl$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$|^auto_stretch$|^autoStretch$|^min_scale$|^minScale$|^max_scale$|^maxScale$|^disable_layout$|^disableLayout$|^code_block_height$|^codeBlockHeight$|^preview_links$|^previewLinks$|^auto_play_media$|^autoPlayMedia$|^preload_iframes$|^preloadIframes$|^view_distance$|^viewDistance$|^mobile_view_distance$|^mobileViewDistance$|^parallax_background_image$|^parallaxBackgroundImage$|^parallax_background_size$|^parallaxBackgroundSize$|^parallax_background_horizontal$|^parallaxBackgroundHorizontal$|^parallax_background_vertical$|^parallaxBackgroundVertical$|^navigation_mode$|^navigationMode$|^mouse_wheel$|^mouseWheel$|^hide_inactive_cursor$|^hideInactiveCursor$|^hide_cursor_time$|^hideCursorTime$|^controls_layout$|^controlsLayout$|^controls_tutorial$|^controlsTutorial$|^controls_back_arrows$|^controlsBackArrows$|^auto_slide$|^autoSlide$|^auto_slide_stoppable$|^autoSlideStoppable$|^auto_slide_method$|^autoSlideMethod$|^default_timing$|^defaultTiming$|^hash_type$|^hashType$|^hash_one_based_index$|^hashOneBasedIndex$|^respond_to_hash_changes$|^respondToHashChanges$|^fragment_in_url$|^fragmentInUrl$|^slide_tone$|^slideTone$|^jump_to_slide$|^jumpToSlide$|^pdf_max_pages_per_slide$|^pdfMaxPagesPerSlide$|^pdf_separate_fragments$|^pdfSeparateFragments$|^pdf_page_height_offset$|^pdfPageHeightOffset$|^scroll_view$|^scrollView$|^transition_speed$|^transitionSpeed$|^background_transition$|^backgroundTransition$|^auto_animate$|^autoAnimate$|^auto_animate_easing$|^autoAnimateEasing$|^auto_animate_duration$|^autoAnimateDuration$|^auto_animate_unmatched$|^autoAnimateUnmatched$|^auto_animate_styles$|^autoAnimateStyles$|^slide_level$|^slideLevel$|^slide_number$|^slideNumber$|^show_slide_number$|^showSlideNumber$|^title_slide_attributes$|^titleSlideAttributes$|^title_slide_style$|^titleSlideStyle$|^center_title_slide$|^centerTitleSlide$|^show_notes$|^showNotes$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^toc_title$|^tocTitle$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":170858,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?rst([-+].+)?$":{"_internalId":173509,"type":"anyOf","anyOf":[{"_internalId":173507,"type":"object","description":"be an object","properties":{"eval":{"_internalId":173410,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":173411,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":173412,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":173413,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":173414,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":173415,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":173416,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":173417,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":173418,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":173419,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":173420,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":173421,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":173422,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":173423,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":173424,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":173425,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":173426,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":173427,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":173428,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":173429,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":173430,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":173431,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":173432,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":173433,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":173434,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":173435,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":173436,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":173437,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":173438,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":173439,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":173440,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":173441,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":173442,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":173443,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"list-tables":{"_internalId":173444,"type":"ref","$ref":"quarto-resource-document-formatting-list-tables","description":"quarto-resource-document-formatting-list-tables"},"funding":{"_internalId":173445,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":173446,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":173446,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":173447,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":173448,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":173449,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":173450,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":173451,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":173452,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":173453,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":173454,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":173455,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":173456,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":173457,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":173458,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":173459,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":173460,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":173461,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":173462,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":173463,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":173464,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":173465,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":173466,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":173467,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":173468,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":173469,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":173470,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":173471,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":173472,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":173473,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":173474,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":173475,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":173476,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":173477,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":173478,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":173479,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":173480,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":173481,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":173482,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":173482,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":173483,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":173484,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":173485,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":173486,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":173487,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":173488,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":173489,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":173490,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":173491,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":173492,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":173493,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":173494,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":173495,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":173496,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":173497,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":173498,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":173499,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":173500,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":173501,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":173502,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":173503,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":173504,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":173505,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":173505,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":173506,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,list-tables,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^list_tables$|^listTables$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":173508,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?rtf([-+].+)?$":{"_internalId":176159,"type":"anyOf","anyOf":[{"_internalId":176157,"type":"object","description":"be an object","properties":{"eval":{"_internalId":176060,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":176061,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"fig-align":{"_internalId":176062,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"output":{"_internalId":176063,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":176064,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":176065,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":176066,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":176067,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":176068,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":176069,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":176070,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":176071,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":176072,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":176073,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":176074,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":176075,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":176076,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":176077,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":176078,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":176079,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":176080,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":176081,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":176082,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":176083,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":176084,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":176085,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":176086,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":176087,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":176088,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":176089,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":176090,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":176091,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":176092,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":176093,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":176094,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":176095,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":176096,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":176096,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":176097,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":176098,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":176099,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":176100,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":176101,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":176102,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":176103,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":176104,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":176105,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":176106,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":176107,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":176108,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":176109,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":176110,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":176111,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":176112,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":176113,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":176114,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":176115,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":176116,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":176117,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":176118,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":176119,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":176120,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":176121,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":176122,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":176123,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":176124,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":176125,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":176126,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":176127,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":176128,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":176129,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":176130,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":176131,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":176132,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":176132,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":176133,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":176134,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":176135,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":176136,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":176137,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":176138,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":176139,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":176140,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":176141,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":176142,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":176143,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":176144,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":176145,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":176146,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":176147,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":176148,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":176149,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":176150,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":176151,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":176152,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":176153,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":176154,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":176155,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":176155,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":176156,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,fig-align,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^fig_align$|^figAlign$|^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":176158,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?s5([-+].+)?$":{"_internalId":178860,"type":"anyOf","anyOf":[{"_internalId":178858,"type":"object","description":"be an object","properties":{"eval":{"_internalId":178710,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":178711,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":178712,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":178713,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":178714,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":178715,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":178716,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":178717,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":178718,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":178719,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":178720,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":178721,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":178722,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":178723,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":178724,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":178725,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":178726,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":178727,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":178728,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":178729,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":178730,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":178731,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":178732,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":178733,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":178734,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":178735,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":178736,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":178737,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":178738,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":178739,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":178740,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":178741,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":178742,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":178743,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":178744,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":178745,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":178746,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":178747,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":178748,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":178749,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":178750,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":178751,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":178752,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":178753,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":178754,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":178755,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":178756,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":178757,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":178758,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":178759,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":178760,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":178761,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":178762,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":178763,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":178764,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":178765,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":178766,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":178767,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":178768,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":178769,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":178769,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":178770,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":178771,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":178772,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":178773,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":178774,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":178775,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":178776,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":178777,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":178778,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":178779,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":178780,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":178781,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":178782,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":178783,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":178784,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":178785,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":178786,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":178787,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":178788,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":178789,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":178790,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":178791,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":178792,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":178793,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":178794,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":178795,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":178796,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":178797,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":178798,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":178799,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":178800,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":178801,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":178802,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":178803,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"s5-url":{"_internalId":178804,"type":"ref","$ref":"quarto-resource-document-library-s5-url","description":"quarto-resource-document-library-s5-url"},"mermaid":{"_internalId":178805,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":178806,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":178807,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":178808,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":178809,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":178810,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":178811,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":178812,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":178813,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":178814,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":178815,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":178816,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":178817,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":178818,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":178819,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":178820,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":178821,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":178822,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":178823,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":178824,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":178825,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":178826,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":178827,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":178828,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":178829,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":178829,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":178830,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":178831,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":178832,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":178833,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":178834,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":178835,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":178836,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":178837,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":178838,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":178839,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":178840,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":178841,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":178842,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":178843,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":178844,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":178845,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":178846,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":178847,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":178848,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":178849,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":178850,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":178851,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":178852,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":178853,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":178854,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":178855,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":178855,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":178856,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":178857,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,s5-url,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^s5_url$|^s5Url$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":178859,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?slideous([-+].+)?$":{"_internalId":181561,"type":"anyOf","anyOf":[{"_internalId":181559,"type":"object","description":"be an object","properties":{"eval":{"_internalId":181411,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":181412,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":181413,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":181414,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":181415,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":181416,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":181417,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":181418,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":181419,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":181420,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":181421,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":181422,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":181423,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":181424,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":181425,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":181426,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":181427,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":181428,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":181429,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":181430,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":181431,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":181432,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":181433,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":181434,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":181435,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":181436,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":181437,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":181438,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":181439,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":181440,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":181441,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":181442,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":181443,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":181444,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":181445,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":181446,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":181447,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":181448,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":181449,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":181450,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":181451,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":181452,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":181453,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":181454,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":181455,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":181456,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":181457,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":181458,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":181459,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":181460,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":181461,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":181462,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":181463,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":181464,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":181465,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":181466,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":181467,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":181468,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":181469,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":181470,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":181470,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":181471,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":181472,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":181473,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":181474,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":181475,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":181476,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":181477,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":181478,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":181479,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":181480,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":181481,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":181482,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":181483,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":181484,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":181485,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":181486,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":181487,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":181488,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":181489,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":181490,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":181491,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":181492,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":181493,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":181494,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":181495,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":181496,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":181497,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":181498,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":181499,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":181500,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":181501,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":181502,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":181503,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":181504,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"slideous-url":{"_internalId":181505,"type":"ref","$ref":"quarto-resource-document-library-slideous-url","description":"quarto-resource-document-library-slideous-url"},"mermaid":{"_internalId":181506,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":181507,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":181508,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":181509,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":181510,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":181511,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":181512,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":181513,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":181514,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":181515,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":181516,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":181517,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":181518,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":181519,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":181520,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":181521,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":181522,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":181523,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":181524,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":181525,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":181526,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":181527,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":181528,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":181529,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":181530,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":181530,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":181531,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":181532,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":181533,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":181534,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":181535,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":181536,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":181537,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":181538,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":181539,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":181540,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":181541,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":181542,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":181543,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":181544,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":181545,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":181546,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":181547,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":181548,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":181549,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":181550,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":181551,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":181552,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":181553,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":181554,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":181555,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":181556,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":181556,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":181557,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":181558,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,slideous-url,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^slideous_url$|^slideousUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":181560,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?slidy([-+].+)?$":{"_internalId":184262,"type":"anyOf","anyOf":[{"_internalId":184260,"type":"object","description":"be an object","properties":{"eval":{"_internalId":184112,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":184113,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":184114,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":184115,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":184116,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":184117,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":184118,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":184119,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":184120,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":184121,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":184122,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":184123,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":184124,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":184125,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":184126,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":184127,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":184128,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":184129,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":184130,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":184131,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"institute":{"_internalId":184132,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"order":{"_internalId":184133,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":184134,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":184135,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":184136,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":184137,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":184138,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":184139,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":184140,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":184141,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":184142,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"monobackgroundcolor":{"_internalId":184143,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"comments":{"_internalId":184144,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":184145,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":184146,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"editor":{"_internalId":184147,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":184148,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":184149,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":184150,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":184151,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":184152,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":184153,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":184154,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":184155,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":184156,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":184157,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":184158,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":184159,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":184160,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":184161,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":184162,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":184163,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":184164,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":184165,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":184166,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":184167,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":184168,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":184169,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":184170,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":184171,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":184171,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":184172,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":184173,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":184174,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":184175,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":184176,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":184177,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":184178,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":184179,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":184180,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":184181,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":184182,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":184183,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":184184,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":184185,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":184186,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":184187,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":184188,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":184189,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":184190,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":184191,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":184192,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":184193,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":184194,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":184195,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":184196,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":184197,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":184198,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":184199,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":184200,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":184201,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":184202,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":184203,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":184204,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":184205,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"slidy-url":{"_internalId":184206,"type":"ref","$ref":"quarto-resource-document-library-slidy-url","description":"quarto-resource-document-library-slidy-url"},"mermaid":{"_internalId":184207,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":184208,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":184209,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":184210,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":184211,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":184212,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":184213,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":184214,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":184215,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":184216,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":184217,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":184218,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":184219,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"document-css":{"_internalId":184220,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":184221,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":184222,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":184223,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":184224,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":184225,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":184226,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":184227,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":184228,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":184229,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":184230,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":184231,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":184231,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":184232,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":184233,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":184234,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":184235,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":184236,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":184237,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":184238,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":184239,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":184240,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":184241,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":184242,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":184243,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":184244,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":184245,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":184246,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":184247,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":184248,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":184249,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":184250,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":184251,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"incremental":{"_internalId":184252,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":184253,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"df-print":{"_internalId":184254,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":184255,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":184256,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":184257,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":184257,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":184258,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":184259,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,institute,order,citation,code-copy,code-link,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,monobackgroundcolor,comments,crossref,crossrefs-hover,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,slidy-url,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,incremental,slide-level,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^slidy_url$|^slidyUrl$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^slide_level$|^slideLevel$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":184261,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?tei([-+].+)?$":{"_internalId":186912,"type":"anyOf","anyOf":[{"_internalId":186910,"type":"object","description":"be an object","properties":{"eval":{"_internalId":186813,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":186814,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":186815,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":186816,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":186817,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":186818,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":186819,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":186820,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":186821,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":186822,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":186823,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":186824,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":186825,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":186826,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":186827,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":186828,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":186829,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":186830,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":186831,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":186832,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":186833,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":186834,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":186835,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":186836,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":186837,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":186838,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":186839,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":186840,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":186841,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":186842,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":186843,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":186844,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":186845,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":186846,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":186847,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":186848,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":186848,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":186849,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":186850,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":186851,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":186852,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":186853,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":186854,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":186855,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":186856,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":186857,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":186858,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":186859,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":186860,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":186861,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":186862,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":186863,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":186864,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":186865,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":186866,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":186867,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":186868,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":186869,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":186870,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":186871,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":186872,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":186873,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":186874,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":186875,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":186876,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":186877,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"top-level-division":{"_internalId":186878,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"brand":{"_internalId":186879,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":186880,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":186881,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":186882,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":186883,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":186884,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":186885,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":186885,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":186886,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":186887,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":186888,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":186889,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":186890,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":186891,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":186892,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":186893,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":186894,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":186895,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":186896,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":186897,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":186898,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":186899,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":186900,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":186901,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":186902,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":186903,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":186904,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":186905,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":186906,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":186907,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":186908,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":186908,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":186909,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,top-level-division,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^top_level_division$|^topLevelDivision$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":186911,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?texinfo([-+].+)?$":{"_internalId":189561,"type":"anyOf","anyOf":[{"_internalId":189559,"type":"object","description":"be an object","properties":{"eval":{"_internalId":189463,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":189464,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":189465,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":189466,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":189467,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":189468,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":189469,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":189470,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":189471,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":189472,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":189473,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":189474,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":189475,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":189476,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":189477,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":189478,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":189479,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":189480,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":189481,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":189482,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":189483,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":189484,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":189485,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":189486,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":189487,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":189488,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":189489,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":189490,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":189491,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":189492,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":189493,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":189494,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":189495,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":189496,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":189497,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":189498,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":189498,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":189499,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":189500,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":189501,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":189502,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":189503,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":189504,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":189505,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":189506,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":189507,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":189508,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":189509,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":189510,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":189511,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":189512,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":189513,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":189514,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":189515,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":189516,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":189517,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":189518,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":189519,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":189520,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":189521,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":189522,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":189523,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":189524,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":189525,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":189526,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":189527,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":189528,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":189529,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":189530,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":189531,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":189532,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":189533,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":189534,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":189534,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":189535,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":189536,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":189537,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":189538,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":189539,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":189540,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":189541,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":189542,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":189543,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":189544,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":189545,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":189546,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":189547,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":189548,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":189549,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":189550,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":189551,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":189552,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":189553,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":189554,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":189555,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":189556,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":189557,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":189557,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":189558,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":189560,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?textile([-+].+)?$":{"_internalId":192211,"type":"anyOf","anyOf":[{"_internalId":192209,"type":"object","description":"be an object","properties":{"eval":{"_internalId":192112,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":192113,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":192114,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":192115,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":192116,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":192117,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":192118,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":192119,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":192120,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":192121,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":192122,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":192123,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":192124,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":192125,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":192126,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":192127,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":192128,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":192129,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":192130,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":192131,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":192132,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":192133,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":192134,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":192135,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":192136,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":192137,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":192138,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":192139,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":192140,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":192141,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":192142,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":192143,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":192144,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":192145,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":192146,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":192147,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":192147,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":192148,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":192149,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":192150,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":192151,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":192152,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":192153,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":192154,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":192155,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":192156,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":192157,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":192158,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":192159,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":192160,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":192161,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":192162,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":192163,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":192164,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":192165,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":192166,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":192167,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":192168,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":192169,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":192170,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":192171,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":192172,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":192173,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":192174,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":192175,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":192176,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":192177,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":192178,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":192179,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":192180,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":192181,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":192182,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":192183,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":192183,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":192184,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":192185,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":192186,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":192187,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":192188,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":192189,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":192190,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":192191,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":192192,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":192193,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":192194,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":192195,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":192196,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":192197,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":192198,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":192199,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":192200,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":192201,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":192202,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":192203,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":192204,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":192205,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":192206,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"toc":{"_internalId":192207,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":192207,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":192208,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":192210,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?typst([-+].+)?$":{"_internalId":194898,"type":"anyOf","anyOf":[{"_internalId":194896,"type":"object","description":"be an object","properties":{"eval":{"_internalId":194762,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":194763,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"cap-location":{"_internalId":194764,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":194765,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":194766,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"output":{"_internalId":194767,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":194768,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":194769,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":194770,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":194771,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":194772,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":194773,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":194774,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"abstract-title":{"_internalId":194775,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"thanks":{"_internalId":194776,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":194777,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":194778,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":194779,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":194780,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":194781,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":194782,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":194783,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"linkcolor":{"_internalId":194784,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"filecolor":{"_internalId":194785,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":194786,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"crossref":{"_internalId":194787,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":194788,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":194789,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":194790,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":194791,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":194792,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":194793,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":194794,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":194795,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":194796,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":194797,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":194798,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":194799,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":194800,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":194801,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":194802,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":194803,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":194804,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":194805,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":194806,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":194807,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"mainfont":{"_internalId":194808,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"codefont":{"_internalId":194809,"type":"ref","$ref":"quarto-resource-document-fonts-codefont","description":"quarto-resource-document-fonts-codefont"},"fontsize":{"_internalId":194810,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"mathfont":{"_internalId":194811,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"font-paths":{"_internalId":194812,"type":"ref","$ref":"quarto-resource-document-fonts-font-paths","description":"quarto-resource-document-fonts-font-paths"},"linestretch":{"_internalId":194813,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"reference-location":{"_internalId":194814,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":194815,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":194816,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":194816,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":194817,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":194818,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":194819,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":194820,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":194821,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":194822,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":194823,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":194824,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":194825,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":194826,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":194827,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":194828,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":194829,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":194830,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":194831,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":194832,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":194833,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":194834,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":194835,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":194836,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":194837,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":194838,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":194839,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":194840,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":194841,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":194842,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":194843,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"papersize":{"_internalId":194844,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"brand-mode":{"_internalId":194845,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"grid":{"_internalId":194846,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"margin":{"_internalId":194847,"type":"ref","$ref":"quarto-resource-document-layout-margin","description":"quarto-resource-document-layout-margin"},"number-sections":{"_internalId":194848,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"section-numbering":{"_internalId":194849,"type":"ref","$ref":"quarto-resource-document-numbering-section-numbering","description":"quarto-resource-document-numbering-section-numbering"},"shift-heading-level-by":{"_internalId":194850,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"page-numbering":{"_internalId":194851,"type":"ref","$ref":"quarto-resource-document-numbering-page-numbering","description":"quarto-resource-document-numbering-page-numbering"},"brand":{"_internalId":194852,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":194853,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"pdf-standard":{"_internalId":194854,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":194855,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":194856,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citation-location":{"_internalId":194857,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"citeproc":{"_internalId":194858,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"bibliographystyle":{"_internalId":194859,"type":"ref","$ref":"quarto-resource-document-references-bibliographystyle","description":"quarto-resource-document-references-bibliographystyle"},"citation-abbreviations":{"_internalId":194860,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":194861,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":194861,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":194862,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":194863,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":194864,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":194865,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":194866,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":194867,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":194868,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":194869,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":194870,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":194871,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":194872,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-typ":{"_internalId":194873,"type":"ref","$ref":"quarto-resource-document-render-keep-typ","description":"quarto-resource-document-render-keep-typ"},"extract-media":{"_internalId":194874,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":194875,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":194876,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":194877,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":194878,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":194879,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"html-pre-tag-processing":{"_internalId":194880,"type":"ref","$ref":"quarto-resource-document-render-html-pre-tag-processing","description":"quarto-resource-document-render-html-pre-tag-processing"},"css-property-processing":{"_internalId":194881,"type":"ref","$ref":"quarto-resource-document-render-css-property-processing","description":"quarto-resource-document-render-css-property-processing"},"df-print":{"_internalId":194882,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":194883,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"columns":{"_internalId":194884,"type":"ref","$ref":"quarto-resource-document-text-columns","description":"quarto-resource-document-text-columns"},"tab-stop":{"_internalId":194885,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":194886,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":194887,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":194888,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":194888,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-indent":{"_internalId":194889,"type":"ref","$ref":"quarto-resource-document-toc-toc-indent","description":"quarto-resource-document-toc-toc-indent"},"toc-depth":{"_internalId":194890,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"lof":{"_internalId":194891,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":194892,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"},"logo":{"_internalId":194893,"type":"ref","$ref":"quarto-resource-document-typst-logo","description":"quarto-resource-document-typst-logo"},"margin-geometry":{"_internalId":194894,"type":"ref","$ref":"quarto-resource-document-typst-margin-geometry","description":"quarto-resource-document-typst-margin-geometry"},"theorem-appearance":{"_internalId":194895,"type":"ref","$ref":"quarto-resource-document-typst-theorem-appearance","description":"quarto-resource-document-typst-theorem-appearance"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,cap-location,fig-cap-location,tbl-cap-location,output,warning,error,include,title,date,date-format,author,abstract-title,thanks,order,citation,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,linkcolor,filecolor,citecolor,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,mainfont,codefont,fontsize,mathfont,font-paths,linestretch,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,papersize,brand-mode,grid,margin,number-sections,section-numbering,shift-heading-level-by,page-numbering,brand,quarto-required,pdf-standard,bibliography,csl,citation-location,citeproc,bibliographystyle,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-typ,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,html-pre-tag-processing,css-property-processing,df-print,wrap,columns,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-indent,toc-depth,lof,lot,logo,margin-geometry,theorem-appearance","type":"string","pattern":"(?!(^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^date_format$|^dateFormat$|^abstract_title$|^abstractTitle$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^font_paths$|^fontPaths$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^brand_mode$|^brandMode$|^number_sections$|^numberSections$|^section_numbering$|^sectionNumbering$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^page_numbering$|^pageNumbering$|^quarto_required$|^quartoRequired$|^pdf_standard$|^pdfStandard$|^citation_location$|^citationLocation$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_typ$|^keepTyp$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^html_pre_tag_processing$|^htmlPreTagProcessing$|^css_property_processing$|^cssPropertyProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_indent$|^tocIndent$|^toc_depth$|^tocDepth$|^margin_geometry$|^marginGeometry$|^theorem_appearance$|^theoremAppearance$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":194897,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?vimdoc([-+].+)?$":{"_internalId":197547,"type":"anyOf","anyOf":[{"_internalId":197545,"type":"object","description":"be an object","properties":{"eval":{"_internalId":197449,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":197450,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":197451,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":197452,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":197453,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":197454,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":197455,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":197456,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":197457,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":197458,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":197459,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":197460,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":197461,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":197462,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":197463,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":197464,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":197465,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":197466,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":197467,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":197468,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":197469,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":197470,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":197471,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":197472,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":197473,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":197474,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":197475,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":197476,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":197477,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":197478,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":197479,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":197480,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":197481,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":197482,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":197483,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":197484,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":197484,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":197485,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":197486,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":197487,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":197488,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":197489,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":197490,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":197491,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":197492,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":197493,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":197494,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":197495,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":197496,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":197497,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":197498,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":197499,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":197500,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":197501,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":197502,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":197503,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":197504,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":197505,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":197506,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":197507,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":197508,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":197509,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":197510,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":197511,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":197512,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":197513,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":197514,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":197515,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":197516,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":197517,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":197518,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":197519,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":197520,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":197520,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":197521,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":197522,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":197523,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":197524,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":197525,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":197526,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":197527,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":197528,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":197529,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":197530,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":197531,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":197532,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":197533,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":197534,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":197535,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":197536,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":197537,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":197538,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":197539,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":197540,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":197541,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":197542,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":197543,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":197543,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":197544,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":197546,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?xml([-+].+)?$":{"_internalId":200196,"type":"anyOf","anyOf":[{"_internalId":200194,"type":"object","description":"be an object","properties":{"eval":{"_internalId":200098,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":200099,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":200100,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":200101,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":200102,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":200103,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":200104,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":200105,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":200106,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":200107,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":200108,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":200109,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":200110,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":200111,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":200112,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":200113,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":200114,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":200115,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":200116,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":200117,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":200118,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":200119,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":200120,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":200121,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":200122,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":200123,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":200124,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":200125,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":200126,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":200127,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":200128,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":200129,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":200130,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":200131,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":200132,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":200133,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":200133,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":200134,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":200135,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":200136,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":200137,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":200138,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":200139,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":200140,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":200141,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":200142,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":200143,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":200144,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":200145,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":200146,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":200147,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":200148,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":200149,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":200150,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":200151,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":200152,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":200153,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":200154,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":200155,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":200156,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":200157,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":200158,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":200159,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":200160,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":200161,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":200162,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":200163,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":200164,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":200165,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":200166,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":200167,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":200168,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":200169,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":200169,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":200170,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":200171,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":200172,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":200173,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":200174,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":200175,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":200176,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":200177,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":200178,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":200179,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":200180,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":200181,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":200182,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":200183,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":200184,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":200185,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":200186,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":200187,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":200188,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":200189,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":200190,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":200191,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":200192,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":200192,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":200193,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":200195,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?xwiki([-+].+)?$":{"_internalId":202845,"type":"anyOf","anyOf":[{"_internalId":202843,"type":"object","description":"be an object","properties":{"eval":{"_internalId":202747,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":202748,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":202749,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":202750,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":202751,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":202752,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":202753,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":202754,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":202755,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":202756,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":202757,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":202758,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":202759,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":202760,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":202761,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":202762,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":202763,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":202764,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":202765,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":202766,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":202767,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":202768,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":202769,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":202770,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":202771,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":202772,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":202773,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":202774,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":202775,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":202776,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":202777,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":202778,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":202779,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":202780,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":202781,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":202782,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":202782,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":202783,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":202784,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":202785,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":202786,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":202787,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":202788,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":202789,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":202790,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":202791,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":202792,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":202793,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":202794,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":202795,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":202796,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":202797,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":202798,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":202799,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":202800,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":202801,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":202802,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":202803,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":202804,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":202805,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":202806,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":202807,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":202808,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":202809,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":202810,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":202811,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":202812,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":202813,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":202814,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":202815,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":202816,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":202817,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":202818,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":202818,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":202819,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":202820,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":202821,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":202822,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":202823,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":202824,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":202825,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":202826,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":202827,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":202828,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":202829,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":202830,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":202831,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":202832,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":202833,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":202834,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":202835,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":202836,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":202837,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":202838,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":202839,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":202840,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":202841,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":202841,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":202842,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":202844,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?zimwiki([-+].+)?$":{"_internalId":205494,"type":"anyOf","anyOf":[{"_internalId":205492,"type":"object","description":"be an object","properties":{"eval":{"_internalId":205396,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":205397,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":205398,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":205399,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":205400,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":205401,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":205402,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":205403,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":205404,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":205405,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":205406,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":205407,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":205408,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":205409,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":205410,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":205411,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":205412,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":205413,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":205414,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":205415,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":205416,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":205417,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":205418,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":205419,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":205420,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":205421,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":205422,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":205423,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":205424,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":205425,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":205426,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":205427,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":205428,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":205429,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":205430,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":205431,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":205431,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":205432,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":205433,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":205434,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":205435,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":205436,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":205437,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":205438,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":205439,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":205440,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":205441,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":205442,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":205443,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":205444,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":205445,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":205446,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":205447,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":205448,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":205449,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":205450,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":205451,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":205452,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":205453,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":205454,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":205455,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":205456,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":205457,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":205458,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":205459,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":205460,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":205461,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":205462,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":205463,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":205464,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":205465,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":205466,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":205467,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":205467,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":205468,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":205469,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":205470,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":205471,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":205472,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":205473,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":205474,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":205475,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":205476,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":205477,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":205478,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":205479,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":205480,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":205481,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":205482,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":205483,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":205484,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":205485,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":205486,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":205487,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":205488,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":205489,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":205490,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":205490,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":205491,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":205493,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?md([-+].+)?$":{"_internalId":208150,"type":"anyOf","anyOf":[{"_internalId":208148,"type":"object","description":"be an object","properties":{"eval":{"_internalId":208045,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":208046,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":208047,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":208048,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":208049,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":208050,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":208051,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":208052,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":208053,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":208054,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":208055,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":208056,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":208057,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":208058,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":208059,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":208060,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":208061,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":208062,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":208063,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":208064,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":208065,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":208066,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":208067,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":208068,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":208069,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":208070,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":208071,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":208072,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":208073,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":208074,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":208075,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":208076,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":208077,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":208078,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"reference-location":{"_internalId":208079,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":208080,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":208081,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":208081,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":208082,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":208083,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":208084,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":208085,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":208086,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":208087,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":208088,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":208089,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":208090,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":208091,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":208092,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":208093,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":208094,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":208095,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"prefer-html":{"_internalId":208096,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":208097,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":208098,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":208099,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":208100,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":208101,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":208102,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":208103,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":208104,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":208105,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":208106,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":208107,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":208108,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":208109,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":208110,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":208111,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":208112,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"identifier-prefix":{"_internalId":208113,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"variant":{"_internalId":208114,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":208115,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"quarto-required":{"_internalId":208116,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":208117,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":208118,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":208119,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":208120,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":208121,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":208121,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":208122,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":208123,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":208124,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":208125,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":208126,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":208127,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":208128,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":208129,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":208130,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":208131,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":208132,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":208133,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":208134,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":208135,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":208136,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":208137,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":208138,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":208139,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":208140,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":208141,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":208142,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":208143,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":208144,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":208145,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":208146,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":208146,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":208147,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,identifier-prefix,variant,markdown-headings,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^identifier_prefix$|^identifierPrefix$|^markdown_headings$|^markdownHeadings$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":208149,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?hugo([-+].+)?$":{"_internalId":210799,"type":"anyOf","anyOf":[{"_internalId":210797,"type":"object","description":"be an object","properties":{"eval":{"_internalId":210701,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":210702,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":210703,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":210704,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":210705,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":210706,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":210707,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":210708,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":210709,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":210710,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":210711,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":210712,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":210713,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":210714,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":210715,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":210716,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":210717,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":210718,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":210719,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":210720,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":210721,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":210722,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":210723,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":210724,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":210725,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":210726,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":210727,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":210728,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":210729,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":210730,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":210731,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":210732,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":210733,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":210734,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":210735,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":210736,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":210736,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":210737,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":210738,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":210739,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":210740,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":210741,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":210742,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":210743,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":210744,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":210745,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":210746,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":210747,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":210748,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":210749,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":210750,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":210751,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":210752,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":210753,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":210754,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":210755,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":210756,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":210757,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":210758,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":210759,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":210760,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":210761,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":210762,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":210763,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":210764,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":210765,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":210766,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":210767,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":210768,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":210769,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":210770,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":210771,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":210772,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":210772,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":210773,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":210774,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":210775,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":210776,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":210777,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":210778,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":210779,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":210780,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":210781,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":210782,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":210783,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":210784,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":210785,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":210786,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":210787,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":210788,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":210789,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":210790,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":210791,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":210792,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":210793,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":210794,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":210795,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":210795,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":210796,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":210798,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?dashboard([-+].+)?$":{"_internalId":213501,"type":"anyOf","anyOf":[{"_internalId":213499,"type":"object","description":"be an object","properties":{"eval":{"_internalId":213350,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":213351,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":213352,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":213353,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":213354,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":213355,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":213356,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"cap-location":{"_internalId":213357,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":213358,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":213359,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":213360,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":213361,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":213362,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":213363,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":213364,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":213365,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":213366,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":213367,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":213368,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":213369,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":213370,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":213371,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":213372,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":213373,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":213374,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"syntax-highlighting":{"_internalId":213375,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":213376,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":213377,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":213378,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"indented-code-classes":{"_internalId":213379,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"comments":{"_internalId":213380,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":213381,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":213382,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"logo":{"_internalId":213383,"type":"ref","$ref":"quarto-resource-document-dashboard-logo","description":"quarto-resource-document-dashboard-logo"},"orientation":{"_internalId":213384,"type":"ref","$ref":"quarto-resource-document-dashboard-orientation","description":"quarto-resource-document-dashboard-orientation"},"scrolling":{"_internalId":213385,"type":"ref","$ref":"quarto-resource-document-dashboard-scrolling","description":"quarto-resource-document-dashboard-scrolling"},"expandable":{"_internalId":213386,"type":"ref","$ref":"quarto-resource-document-dashboard-expandable","description":"quarto-resource-document-dashboard-expandable"},"nav-buttons":{"_internalId":213387,"type":"ref","$ref":"quarto-resource-document-dashboard-nav-buttons","description":"quarto-resource-document-dashboard-nav-buttons"},"editor":{"_internalId":213388,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":213389,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":213390,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":213391,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":213392,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":213393,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":213394,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":213395,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":213396,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":213397,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":213398,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":213399,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":213400,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":213401,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":213402,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":213403,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":213404,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":213405,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":213406,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":213407,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":213408,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"footnotes-hover":{"_internalId":213409,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"reference-location":{"_internalId":213410,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"funding":{"_internalId":213411,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":213412,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":213412,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":213413,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":213414,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":213415,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":213416,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":213417,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":213418,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":213419,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":213420,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":213421,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":213422,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":213423,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":213424,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":213425,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":213426,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":213427,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":213428,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":213429,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":213430,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":213431,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":213432,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":213433,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":213434,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":213435,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"metadata-file":{"_internalId":213436,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":213437,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":213438,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":213439,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":213440,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"classoption":{"_internalId":213441,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"max-width":{"_internalId":213442,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":213443,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":213444,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":213445,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":213446,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"mermaid":{"_internalId":213447,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":213448,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"pagetitle":{"_internalId":213449,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":213450,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":213451,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":213452,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":213453,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":213454,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":213455,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"number-offset":{"_internalId":213456,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"shift-heading-level-by":{"_internalId":213457,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"ojs-engine":{"_internalId":213458,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"brand":{"_internalId":213459,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":213460,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"document-css":{"_internalId":213461,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":213462,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"identifier-prefix":{"_internalId":213463,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":213464,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":213465,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"quarto-required":{"_internalId":213466,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":213467,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":213468,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":213469,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citeproc":{"_internalId":213470,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":213471,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":213472,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":213472,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":213473,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":213474,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":213475,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":213476,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":213477,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":213478,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":213479,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":213480,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":213481,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":213482,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":213483,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":213484,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":213485,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":213486,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":213487,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":213488,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":213489,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":213490,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":213491,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":213492,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":213493,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"strip-comments":{"_internalId":213494,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":213495,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":213496,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":213496,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":213497,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"axe":{"_internalId":213498,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,title,subtitle,date,date-format,author,order,citation,code-copy,code-link,code-annotations,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,indented-code-classes,comments,crossref,crossrefs-hover,logo,orientation,scrolling,expandable,nav-buttons,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,footnotes-hover,reference-location,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,metadata-file,metadata-files,lang,language,dir,classoption,max-width,margin-left,margin-right,margin-top,margin-bottom,mermaid,keywords,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,number-offset,shift-heading-level-by,ojs-engine,brand,theme,document-css,css,identifier-prefix,email-obfuscation,html-q-tags,quarto-required,bibliography,csl,citations-hover,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,strip-comments,ascii,toc,table-of-contents,toc-depth,axe","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^nav_buttons$|^navButtons$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^footnotes_hover$|^footnotesHover$|^reference_location$|^referenceLocation$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^ojs_engine$|^ojsEngine$|^document_css$|^documentCss$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^quarto_required$|^quartoRequired$|^citations_hover$|^citationsHover$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":213500,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"},"^(.+-)?email([-+].+)?$":{"_internalId":216151,"type":"anyOf","anyOf":[{"_internalId":216149,"type":"object","description":"be an object","properties":{"eval":{"_internalId":216052,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":216053,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"output":{"_internalId":216054,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":216055,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":216056,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":216057,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"title":{"_internalId":216058,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"date":{"_internalId":216059,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":216060,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"author":{"_internalId":216061,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"order":{"_internalId":216062,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":216063,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-annotations":{"_internalId":216064,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"crossref":{"_internalId":216065,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"editor":{"_internalId":216066,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":216067,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":216068,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"engine":{"_internalId":216069,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":216070,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":216071,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":216072,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":216073,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":216074,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":216075,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":216076,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":216077,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":216078,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":216079,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":216080,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":216081,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":216082,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":216083,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":216084,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":216085,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"funding":{"_internalId":216086,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":216087,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":216087,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":216088,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":216089,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":216090,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":216091,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":216092,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":216093,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":216094,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":216095,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":216096,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":216097,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":216098,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":216099,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":216100,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":216101,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"output-divs":{"_internalId":216102,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":216103,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":216104,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":216105,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":216106,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":216107,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":216108,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":216109,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"metadata-file":{"_internalId":216110,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":216111,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":216112,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":216113,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"dir":{"_internalId":216114,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"number-sections":{"_internalId":216115,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"shift-heading-level-by":{"_internalId":216116,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"brand":{"_internalId":216117,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"quarto-required":{"_internalId":216118,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"bibliography":{"_internalId":216119,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":216120,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citeproc":{"_internalId":216121,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"citation-abbreviations":{"_internalId":216122,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"from":{"_internalId":216123,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":216123,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":216124,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":216125,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":216126,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":216127,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"filters":{"_internalId":216128,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":216129,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":216130,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":216131,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":216132,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":216133,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":216134,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"extract-media":{"_internalId":216135,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":216136,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":216137,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":216138,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":216139,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":216140,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"df-print":{"_internalId":216141,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":216142,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"tab-stop":{"_internalId":216143,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":216144,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":216145,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"toc":{"_internalId":216146,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":216146,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-depth":{"_internalId":216147,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"email-version":{"_internalId":216148,"type":"ref","$ref":"quarto-resource-document-email-email-version","description":"quarto-resource-document-email-email-version"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,output,warning,error,include,title,date,date-format,author,order,citation,code-annotations,crossref,editor,editor_options,zotero,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,metadata-file,metadata-files,lang,language,dir,number-sections,shift-heading-level-by,brand,quarto-required,bibliography,csl,citeproc,citation-abbreviations,from,reader,output-file,output-ext,template,template-partials,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,df-print,wrap,tab-stop,preserve-tabs,eol,toc,table-of-contents,toc-depth,email-version","type":"string","pattern":"(?!(^date_format$|^dateFormat$|^code_annotations$|^codeAnnotations$|^editor-options$|^editorOptions$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^number_sections$|^numberSections$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^quarto_required$|^quartoRequired$|^citation_abbreviations$|^citationAbbreviations$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^table_of_contents$|^tableOfContents$|^toc_depth$|^tocDepth$|^email_version$|^emailVersion$))","tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case"],"error-importance":-5,"case-detection":true}},{"_internalId":216150,"type":"enum","enum":["default"],"description":"be 'default'","completions":["default"],"exhaustiveCompletions":true}],"description":"be at least one of: an object, 'default'"}},"additionalProperties":false,"tags":{"completions":{"ansi":{"type":"key","display":"ansi","value":"ansi: ","description":"be 'ansi'","suggest_on_accept":true},"asciidoc":{"type":"key","display":"asciidoc","value":"asciidoc: ","description":"be 'asciidoc'","suggest_on_accept":true},"asciidoc_legacy":{"type":"key","display":"asciidoc_legacy","value":"asciidoc_legacy: ","description":"be 'asciidoc_legacy'","suggest_on_accept":true},"asciidoctor":{"type":"key","display":"asciidoctor","value":"asciidoctor: ","description":"be 'asciidoctor'","suggest_on_accept":true},"bbcode":{"type":"key","display":"bbcode","value":"bbcode: ","description":"be 'bbcode'","suggest_on_accept":true},"bbcode_fluxbb":{"type":"key","display":"bbcode_fluxbb","value":"bbcode_fluxbb: ","description":"be 'bbcode_fluxbb'","suggest_on_accept":true},"bbcode_hubzilla":{"type":"key","display":"bbcode_hubzilla","value":"bbcode_hubzilla: ","description":"be 'bbcode_hubzilla'","suggest_on_accept":true},"bbcode_phpbb":{"type":"key","display":"bbcode_phpbb","value":"bbcode_phpbb: ","description":"be 'bbcode_phpbb'","suggest_on_accept":true},"bbcode_steam":{"type":"key","display":"bbcode_steam","value":"bbcode_steam: ","description":"be 'bbcode_steam'","suggest_on_accept":true},"bbcode_xenforo":{"type":"key","display":"bbcode_xenforo","value":"bbcode_xenforo: ","description":"be 'bbcode_xenforo'","suggest_on_accept":true},"beamer":{"type":"key","display":"beamer","value":"beamer: ","description":"be 'beamer'","suggest_on_accept":true},"biblatex":{"type":"key","display":"biblatex","value":"biblatex: ","description":"be 'biblatex'","suggest_on_accept":true},"bibtex":{"type":"key","display":"bibtex","value":"bibtex: ","description":"be 'bibtex'","suggest_on_accept":true},"chunkedhtml":{"type":"key","display":"chunkedhtml","value":"chunkedhtml: ","description":"be 'chunkedhtml'","suggest_on_accept":true},"commonmark":{"type":"key","display":"commonmark","value":"commonmark: ","description":"be 'commonmark'","suggest_on_accept":true},"commonmark_x":{"type":"key","display":"commonmark_x","value":"commonmark_x: ","description":"be 'commonmark_x'","suggest_on_accept":true},"context":{"type":"key","display":"context","value":"context: ","description":"be 'context'","suggest_on_accept":true},"csljson":{"type":"key","display":"csljson","value":"csljson: ","description":"be 'csljson'","suggest_on_accept":true},"djot":{"type":"key","display":"djot","value":"djot: ","description":"be 'djot'","suggest_on_accept":true},"docbook":{"type":"key","display":"docbook","value":"docbook: ","description":"be 'docbook'","suggest_on_accept":true},"docx":{"type":"key","display":"docx","value":"docx: ","description":"be 'docx'","suggest_on_accept":true},"dokuwiki":{"type":"key","display":"dokuwiki","value":"dokuwiki: ","description":"be 'dokuwiki'","suggest_on_accept":true},"dzslides":{"type":"key","display":"dzslides","value":"dzslides: ","description":"be 'dzslides'","suggest_on_accept":true},"epub":{"type":"key","display":"epub","value":"epub: ","description":"be 'epub'","suggest_on_accept":true},"fb2":{"type":"key","display":"fb2","value":"fb2: ","description":"be 'fb2'","suggest_on_accept":true},"gfm":{"type":"key","display":"gfm","value":"gfm: ","description":"be 'gfm'","suggest_on_accept":true},"haddock":{"type":"key","display":"haddock","value":"haddock: ","description":"be 'haddock'","suggest_on_accept":true},"html":{"type":"key","display":"html","value":"html: ","description":"be 'html'","suggest_on_accept":true},"icml":{"type":"key","display":"icml","value":"icml: ","description":"be 'icml'","suggest_on_accept":true},"ipynb":{"type":"key","display":"ipynb","value":"ipynb: ","description":"be 'ipynb'","suggest_on_accept":true},"jats":{"type":"key","display":"jats","value":"jats: ","description":"be 'jats'","suggest_on_accept":true},"jats_archiving":{"type":"key","display":"jats_archiving","value":"jats_archiving: ","description":"be 'jats_archiving'","suggest_on_accept":true},"jats_articleauthoring":{"type":"key","display":"jats_articleauthoring","value":"jats_articleauthoring: ","description":"be 'jats_articleauthoring'","suggest_on_accept":true},"jats_publishing":{"type":"key","display":"jats_publishing","value":"jats_publishing: ","description":"be 'jats_publishing'","suggest_on_accept":true},"jira":{"type":"key","display":"jira","value":"jira: ","description":"be 'jira'","suggest_on_accept":true},"json":{"type":"key","display":"json","value":"json: ","description":"be 'json'","suggest_on_accept":true},"latex":{"type":"key","display":"latex","value":"latex: ","description":"be 'latex'","suggest_on_accept":true},"man":{"type":"key","display":"man","value":"man: ","description":"be 'man'","suggest_on_accept":true},"markdown":{"type":"key","display":"markdown","value":"markdown: ","description":"be 'markdown'","suggest_on_accept":true},"markdown_github":{"type":"key","display":"markdown_github","value":"markdown_github: ","description":"be 'markdown_github'","suggest_on_accept":true},"markdown_mmd":{"type":"key","display":"markdown_mmd","value":"markdown_mmd: ","description":"be 'markdown_mmd'","suggest_on_accept":true},"markdown_phpextra":{"type":"key","display":"markdown_phpextra","value":"markdown_phpextra: ","description":"be 'markdown_phpextra'","suggest_on_accept":true},"markdown_strict":{"type":"key","display":"markdown_strict","value":"markdown_strict: ","description":"be 'markdown_strict'","suggest_on_accept":true},"markua":{"type":"key","display":"markua","value":"markua: ","description":"be 'markua'","suggest_on_accept":true},"mediawiki":{"type":"key","display":"mediawiki","value":"mediawiki: ","description":"be 'mediawiki'","suggest_on_accept":true},"ms":{"type":"key","display":"ms","value":"ms: ","description":"be 'ms'","suggest_on_accept":true},"muse":{"type":"key","display":"muse","value":"muse: ","description":"be 'muse'","suggest_on_accept":true},"native":{"type":"key","display":"native","value":"native: ","description":"be 'native'","suggest_on_accept":true},"odt":{"type":"key","display":"odt","value":"odt: ","description":"be 'odt'","suggest_on_accept":true},"opendocument":{"type":"key","display":"opendocument","value":"opendocument: ","description":"be 'opendocument'","suggest_on_accept":true},"opml":{"type":"key","display":"opml","value":"opml: ","description":"be 'opml'","suggest_on_accept":true},"org":{"type":"key","display":"org","value":"org: ","description":"be 'org'","suggest_on_accept":true},"pdf":{"type":"key","display":"pdf","value":"pdf: ","description":"be 'pdf'","suggest_on_accept":true},"plain":{"type":"key","display":"plain","value":"plain: ","description":"be 'plain'","suggest_on_accept":true},"pptx":{"type":"key","display":"pptx","value":"pptx: ","description":"be 'pptx'","suggest_on_accept":true},"revealjs":{"type":"key","display":"revealjs","value":"revealjs: ","description":"be 'revealjs'","suggest_on_accept":true},"rst":{"type":"key","display":"rst","value":"rst: ","description":"be 'rst'","suggest_on_accept":true},"rtf":{"type":"key","display":"rtf","value":"rtf: ","description":"be 'rtf'","suggest_on_accept":true},"s5":{"type":"key","display":"s5","value":"s5: ","description":"be 's5'","suggest_on_accept":true},"slideous":{"type":"key","display":"slideous","value":"slideous: ","description":"be 'slideous'","suggest_on_accept":true},"slidy":{"type":"key","display":"slidy","value":"slidy: ","description":"be 'slidy'","suggest_on_accept":true},"tei":{"type":"key","display":"tei","value":"tei: ","description":"be 'tei'","suggest_on_accept":true},"texinfo":{"type":"key","display":"texinfo","value":"texinfo: ","description":"be 'texinfo'","suggest_on_accept":true},"textile":{"type":"key","display":"textile","value":"textile: ","description":"be 'textile'","suggest_on_accept":true},"typst":{"type":"key","display":"typst","value":"typst: ","description":"be 'typst'","suggest_on_accept":true},"vimdoc":{"type":"key","display":"vimdoc","value":"vimdoc: ","description":"be 'vimdoc'","suggest_on_accept":true},"xml":{"type":"key","display":"xml","value":"xml: ","description":"be 'xml'","suggest_on_accept":true},"xwiki":{"type":"key","display":"xwiki","value":"xwiki: ","description":"be 'xwiki'","suggest_on_accept":true},"zimwiki":{"type":"key","display":"zimwiki","value":"zimwiki: ","description":"be 'zimwiki'","suggest_on_accept":true},"md":{"type":"key","display":"md","value":"md: ","description":"be 'md'","suggest_on_accept":true},"hugo":{"type":"key","display":"hugo","value":"hugo: ","description":"be 'hugo'","suggest_on_accept":true},"dashboard":{"type":"key","display":"dashboard","value":"dashboard: ","description":"be 'dashboard'","suggest_on_accept":true},"email":{"type":"key","display":"email","value":"email: ","description":"be 'email'","suggest_on_accept":true}}}}],"description":"be all of: an object"}],"description":"be at least one of: the name of a pandoc-supported output format, an object, all of: an object","errorMessage":"${value} is not a valid output format.","$id":"front-matter-format"},"front-matter":{"_internalId":216688,"type":"anyOf","anyOf":[{"type":"null","description":"be the null value","completions":["null"],"exhaustiveCompletions":true},{"_internalId":216687,"type":"allOf","allOf":[{"_internalId":216238,"type":"object","description":"be a Quarto YAML front matter object","properties":{"execute":{"_internalId":5618,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},"format":{"_internalId":216237,"type":"ref","$ref":"front-matter-format","description":"be at least one of: the name of a pandoc-supported output format, an object, all of: an object"}},"patternProperties":{}},{"_internalId":216685,"type":"object","description":"be an object","properties":{"eval":{"_internalId":216239,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":216240,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":216241,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":216242,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":216243,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":216244,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"fig-align":{"_internalId":216245,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-env":{"_internalId":216246,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":216247,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"cap-location":{"_internalId":216248,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":216249,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":216250,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-colwidths":{"_internalId":216251,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"output":{"_internalId":216252,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":216253,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":216254,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":216255,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"about":{"_internalId":216256,"type":"ref","$ref":"quarto-resource-document-about-about","description":"quarto-resource-document-about-about"},"title":{"_internalId":216257,"type":"ref","$ref":"quarto-resource-document-attributes-title","description":"quarto-resource-document-attributes-title"},"subtitle":{"_internalId":216258,"type":"ref","$ref":"quarto-resource-document-attributes-subtitle","description":"quarto-resource-document-attributes-subtitle"},"date":{"_internalId":216259,"type":"ref","$ref":"quarto-resource-document-attributes-date","description":"quarto-resource-document-attributes-date"},"date-format":{"_internalId":216260,"type":"ref","$ref":"quarto-resource-document-attributes-date-format","description":"quarto-resource-document-attributes-date-format"},"date-modified":{"_internalId":216261,"type":"ref","$ref":"quarto-resource-document-attributes-date-modified","description":"quarto-resource-document-attributes-date-modified"},"author":{"_internalId":216262,"type":"ref","$ref":"quarto-resource-document-attributes-author","description":"quarto-resource-document-attributes-author"},"affiliation":{"_internalId":216263,"type":"ref","$ref":"quarto-resource-document-attributes-affiliation","description":"quarto-resource-document-attributes-affiliation"},"copyright":{"_internalId":216474,"type":"ref","$ref":"quarto-resource-document-metadata-copyright","description":"quarto-resource-document-metadata-copyright"},"article":{"_internalId":216265,"type":"ref","$ref":"quarto-resource-document-attributes-article","description":"quarto-resource-document-attributes-article"},"journal":{"_internalId":216266,"type":"ref","$ref":"quarto-resource-document-attributes-journal","description":"quarto-resource-document-attributes-journal"},"institute":{"_internalId":216267,"type":"ref","$ref":"quarto-resource-document-attributes-institute","description":"quarto-resource-document-attributes-institute"},"abstract":{"_internalId":216268,"type":"ref","$ref":"quarto-resource-document-attributes-abstract","description":"quarto-resource-document-attributes-abstract"},"abstract-title":{"_internalId":216269,"type":"ref","$ref":"quarto-resource-document-attributes-abstract-title","description":"quarto-resource-document-attributes-abstract-title"},"notes":{"_internalId":216270,"type":"ref","$ref":"quarto-resource-document-attributes-notes","description":"quarto-resource-document-attributes-notes"},"tags":{"_internalId":216271,"type":"ref","$ref":"quarto-resource-document-attributes-tags","description":"quarto-resource-document-attributes-tags"},"doi":{"_internalId":216272,"type":"ref","$ref":"quarto-resource-document-attributes-doi","description":"quarto-resource-document-attributes-doi"},"thanks":{"_internalId":216273,"type":"ref","$ref":"quarto-resource-document-attributes-thanks","description":"quarto-resource-document-attributes-thanks"},"order":{"_internalId":216274,"type":"ref","$ref":"quarto-resource-document-attributes-order","description":"quarto-resource-document-attributes-order"},"citation":{"_internalId":216275,"type":"ref","$ref":"quarto-resource-document-citation-citation","description":"quarto-resource-document-citation-citation"},"code-copy":{"_internalId":216276,"type":"ref","$ref":"quarto-resource-document-code-code-copy","description":"quarto-resource-document-code-code-copy"},"code-link":{"_internalId":216277,"type":"ref","$ref":"quarto-resource-document-code-code-link","description":"quarto-resource-document-code-code-link"},"code-annotations":{"_internalId":216278,"type":"ref","$ref":"quarto-resource-document-code-code-annotations","description":"quarto-resource-document-code-code-annotations"},"code-tools":{"_internalId":216279,"type":"ref","$ref":"quarto-resource-document-code-code-tools","description":"quarto-resource-document-code-code-tools"},"code-block-border-left":{"_internalId":216280,"type":"ref","$ref":"quarto-resource-document-code-code-block-border-left","description":"quarto-resource-document-code-code-block-border-left"},"code-block-bg":{"_internalId":216281,"type":"ref","$ref":"quarto-resource-document-code-code-block-bg","description":"quarto-resource-document-code-code-block-bg"},"syntax-highlighting":{"_internalId":216282,"type":"ref","$ref":"quarto-resource-document-code-syntax-highlighting","description":"quarto-resource-document-code-syntax-highlighting"},"highlight-style":{"_internalId":216283,"type":"ref","$ref":"quarto-resource-document-code-highlight-style","description":"quarto-resource-document-code-highlight-style"},"syntax-definition":{"_internalId":216284,"type":"ref","$ref":"quarto-resource-document-code-syntax-definition","description":"quarto-resource-document-code-syntax-definition"},"syntax-definitions":{"_internalId":216285,"type":"ref","$ref":"quarto-resource-document-code-syntax-definitions","description":"quarto-resource-document-code-syntax-definitions"},"listings":{"_internalId":216286,"type":"ref","$ref":"quarto-resource-document-code-listings","description":"quarto-resource-document-code-listings"},"indented-code-classes":{"_internalId":216287,"type":"ref","$ref":"quarto-resource-document-code-indented-code-classes","description":"quarto-resource-document-code-indented-code-classes"},"fontcolor":{"_internalId":216288,"type":"ref","$ref":"quarto-resource-document-colors-fontcolor","description":"quarto-resource-document-colors-fontcolor"},"linkcolor":{"_internalId":216289,"type":"ref","$ref":"quarto-resource-document-colors-linkcolor","description":"quarto-resource-document-colors-linkcolor"},"monobackgroundcolor":{"_internalId":216290,"type":"ref","$ref":"quarto-resource-document-colors-monobackgroundcolor","description":"quarto-resource-document-colors-monobackgroundcolor"},"backgroundcolor":{"_internalId":216291,"type":"ref","$ref":"quarto-resource-document-colors-backgroundcolor","description":"quarto-resource-document-colors-backgroundcolor"},"filecolor":{"_internalId":216292,"type":"ref","$ref":"quarto-resource-document-colors-filecolor","description":"quarto-resource-document-colors-filecolor"},"citecolor":{"_internalId":216293,"type":"ref","$ref":"quarto-resource-document-colors-citecolor","description":"quarto-resource-document-colors-citecolor"},"urlcolor":{"_internalId":216294,"type":"ref","$ref":"quarto-resource-document-colors-urlcolor","description":"quarto-resource-document-colors-urlcolor"},"toccolor":{"_internalId":216295,"type":"ref","$ref":"quarto-resource-document-colors-toccolor","description":"quarto-resource-document-colors-toccolor"},"colorlinks":{"_internalId":216296,"type":"ref","$ref":"quarto-resource-document-colors-colorlinks","description":"quarto-resource-document-colors-colorlinks"},"contrastcolor":{"_internalId":216297,"type":"ref","$ref":"quarto-resource-document-colors-contrastcolor","description":"quarto-resource-document-colors-contrastcolor"},"comments":{"_internalId":216298,"type":"ref","$ref":"quarto-resource-document-comments-comments","description":"quarto-resource-document-comments-comments"},"crossref":{"_internalId":216299,"type":"ref","$ref":"quarto-resource-document-crossref-crossref","description":"quarto-resource-document-crossref-crossref"},"crossrefs-hover":{"_internalId":216300,"type":"ref","$ref":"quarto-resource-document-crossref-crossrefs-hover","description":"quarto-resource-document-crossref-crossrefs-hover"},"logo":{"_internalId":216681,"type":"ref","$ref":"quarto-resource-document-typst-logo","description":"quarto-resource-document-typst-logo"},"orientation":{"_internalId":216302,"type":"ref","$ref":"quarto-resource-document-dashboard-orientation","description":"quarto-resource-document-dashboard-orientation"},"scrolling":{"_internalId":216303,"type":"ref","$ref":"quarto-resource-document-dashboard-scrolling","description":"quarto-resource-document-dashboard-scrolling"},"expandable":{"_internalId":216304,"type":"ref","$ref":"quarto-resource-document-dashboard-expandable","description":"quarto-resource-document-dashboard-expandable"},"nav-buttons":{"_internalId":216305,"type":"ref","$ref":"quarto-resource-document-dashboard-nav-buttons","description":"quarto-resource-document-dashboard-nav-buttons"},"editor":{"_internalId":216306,"type":"ref","$ref":"quarto-resource-document-editor-editor","description":"quarto-resource-document-editor-editor"},"editor_options":{"_internalId":216307,"type":"ref","$ref":"quarto-resource-document-editor-editor_options","description":"quarto-resource-document-editor-editor_options"},"zotero":{"_internalId":216308,"type":"ref","$ref":"quarto-resource-document-editor-zotero","description":"quarto-resource-document-editor-zotero"},"identifier":{"_internalId":216309,"type":"ref","$ref":"quarto-resource-document-epub-identifier","description":"quarto-resource-document-epub-identifier"},"creator":{"_internalId":216310,"type":"ref","$ref":"quarto-resource-document-epub-creator","description":"quarto-resource-document-epub-creator"},"contributor":{"_internalId":216311,"type":"ref","$ref":"quarto-resource-document-epub-contributor","description":"quarto-resource-document-epub-contributor"},"type":{"_internalId":216312,"type":"ref","$ref":"quarto-resource-document-epub-type","description":"quarto-resource-document-epub-type"},"relation":{"_internalId":216313,"type":"ref","$ref":"quarto-resource-document-epub-relation","description":"quarto-resource-document-epub-relation"},"coverage":{"_internalId":216314,"type":"ref","$ref":"quarto-resource-document-epub-coverage","description":"quarto-resource-document-epub-coverage"},"rights":{"_internalId":216315,"type":"ref","$ref":"quarto-resource-document-epub-rights","description":"quarto-resource-document-epub-rights"},"belongs-to-collection":{"_internalId":216316,"type":"ref","$ref":"quarto-resource-document-epub-belongs-to-collection","description":"quarto-resource-document-epub-belongs-to-collection"},"group-position":{"_internalId":216317,"type":"ref","$ref":"quarto-resource-document-epub-group-position","description":"quarto-resource-document-epub-group-position"},"page-progression-direction":{"_internalId":216318,"type":"ref","$ref":"quarto-resource-document-epub-page-progression-direction","description":"quarto-resource-document-epub-page-progression-direction"},"ibooks":{"_internalId":216319,"type":"ref","$ref":"quarto-resource-document-epub-ibooks","description":"quarto-resource-document-epub-ibooks"},"epub-metadata":{"_internalId":216320,"type":"ref","$ref":"quarto-resource-document-epub-epub-metadata","description":"quarto-resource-document-epub-epub-metadata"},"epub-subdirectory":{"_internalId":216321,"type":"ref","$ref":"quarto-resource-document-epub-epub-subdirectory","description":"quarto-resource-document-epub-epub-subdirectory"},"epub-fonts":{"_internalId":216322,"type":"ref","$ref":"quarto-resource-document-epub-epub-fonts","description":"quarto-resource-document-epub-epub-fonts"},"epub-chapter-level":{"_internalId":216323,"type":"ref","$ref":"quarto-resource-document-epub-epub-chapter-level","description":"quarto-resource-document-epub-epub-chapter-level"},"epub-cover-image":{"_internalId":216324,"type":"ref","$ref":"quarto-resource-document-epub-epub-cover-image","description":"quarto-resource-document-epub-epub-cover-image"},"epub-title-page":{"_internalId":216325,"type":"ref","$ref":"quarto-resource-document-epub-epub-title-page","description":"quarto-resource-document-epub-epub-title-page"},"engine":{"_internalId":216326,"type":"ref","$ref":"quarto-resource-document-execute-engine","description":"quarto-resource-document-execute-engine"},"jupyter":{"_internalId":216327,"type":"ref","$ref":"quarto-resource-document-execute-jupyter","description":"quarto-resource-document-execute-jupyter"},"julia":{"_internalId":216328,"type":"ref","$ref":"quarto-resource-document-execute-julia","description":"quarto-resource-document-execute-julia"},"knitr":{"_internalId":216329,"type":"ref","$ref":"quarto-resource-document-execute-knitr","description":"quarto-resource-document-execute-knitr"},"cache":{"_internalId":216330,"type":"ref","$ref":"quarto-resource-document-execute-cache","description":"quarto-resource-document-execute-cache"},"freeze":{"_internalId":216331,"type":"ref","$ref":"quarto-resource-document-execute-freeze","description":"quarto-resource-document-execute-freeze"},"server":{"_internalId":216332,"type":"ref","$ref":"quarto-resource-document-execute-server","description":"quarto-resource-document-execute-server"},"daemon":{"_internalId":216333,"type":"ref","$ref":"quarto-resource-document-execute-daemon","description":"quarto-resource-document-execute-daemon"},"daemon-restart":{"_internalId":216334,"type":"ref","$ref":"quarto-resource-document-execute-daemon-restart","description":"quarto-resource-document-execute-daemon-restart"},"enabled":{"_internalId":216335,"type":"ref","$ref":"quarto-resource-document-execute-enabled","description":"quarto-resource-document-execute-enabled"},"ipynb":{"_internalId":216336,"type":"ref","$ref":"quarto-resource-document-execute-ipynb","description":"quarto-resource-document-execute-ipynb"},"debug":{"_internalId":216337,"type":"ref","$ref":"quarto-resource-document-execute-debug","description":"quarto-resource-document-execute-debug"},"fig-width":{"_internalId":216338,"type":"ref","$ref":"quarto-resource-document-figures-fig-width","description":"quarto-resource-document-figures-fig-width"},"fig-height":{"_internalId":216339,"type":"ref","$ref":"quarto-resource-document-figures-fig-height","description":"quarto-resource-document-figures-fig-height"},"fig-format":{"_internalId":216340,"type":"ref","$ref":"quarto-resource-document-figures-fig-format","description":"quarto-resource-document-figures-fig-format"},"fig-dpi":{"_internalId":216341,"type":"ref","$ref":"quarto-resource-document-figures-fig-dpi","description":"quarto-resource-document-figures-fig-dpi"},"fig-asp":{"_internalId":216342,"type":"ref","$ref":"quarto-resource-document-figures-fig-asp","description":"quarto-resource-document-figures-fig-asp"},"fig-responsive":{"_internalId":216343,"type":"ref","$ref":"quarto-resource-document-figures-fig-responsive","description":"quarto-resource-document-figures-fig-responsive"},"mainfont":{"_internalId":216344,"type":"ref","$ref":"quarto-resource-document-fonts-mainfont","description":"quarto-resource-document-fonts-mainfont"},"monofont":{"_internalId":216345,"type":"ref","$ref":"quarto-resource-document-fonts-monofont","description":"quarto-resource-document-fonts-monofont"},"codefont":{"_internalId":216346,"type":"ref","$ref":"quarto-resource-document-fonts-codefont","description":"quarto-resource-document-fonts-codefont"},"fontsize":{"_internalId":216347,"type":"ref","$ref":"quarto-resource-document-fonts-fontsize","description":"quarto-resource-document-fonts-fontsize"},"fontenc":{"_internalId":216348,"type":"ref","$ref":"quarto-resource-document-fonts-fontenc","description":"quarto-resource-document-fonts-fontenc"},"fontfamily":{"_internalId":216349,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamily","description":"quarto-resource-document-fonts-fontfamily"},"fontfamilyoptions":{"_internalId":216350,"type":"ref","$ref":"quarto-resource-document-fonts-fontfamilyoptions","description":"quarto-resource-document-fonts-fontfamilyoptions"},"sansfont":{"_internalId":216351,"type":"ref","$ref":"quarto-resource-document-fonts-sansfont","description":"quarto-resource-document-fonts-sansfont"},"mathfont":{"_internalId":216352,"type":"ref","$ref":"quarto-resource-document-fonts-mathfont","description":"quarto-resource-document-fonts-mathfont"},"CJKmainfont":{"_internalId":216353,"type":"ref","$ref":"quarto-resource-document-fonts-CJKmainfont","description":"quarto-resource-document-fonts-CJKmainfont"},"mainfontoptions":{"_internalId":216354,"type":"ref","$ref":"quarto-resource-document-fonts-mainfontoptions","description":"quarto-resource-document-fonts-mainfontoptions"},"sansfontoptions":{"_internalId":216355,"type":"ref","$ref":"quarto-resource-document-fonts-sansfontoptions","description":"quarto-resource-document-fonts-sansfontoptions"},"monofontoptions":{"_internalId":216356,"type":"ref","$ref":"quarto-resource-document-fonts-monofontoptions","description":"quarto-resource-document-fonts-monofontoptions"},"mathfontoptions":{"_internalId":216357,"type":"ref","$ref":"quarto-resource-document-fonts-mathfontoptions","description":"quarto-resource-document-fonts-mathfontoptions"},"font-paths":{"_internalId":216358,"type":"ref","$ref":"quarto-resource-document-fonts-font-paths","description":"quarto-resource-document-fonts-font-paths"},"CJKoptions":{"_internalId":216359,"type":"ref","$ref":"quarto-resource-document-fonts-CJKoptions","description":"quarto-resource-document-fonts-CJKoptions"},"microtypeoptions":{"_internalId":216360,"type":"ref","$ref":"quarto-resource-document-fonts-microtypeoptions","description":"quarto-resource-document-fonts-microtypeoptions"},"pointsize":{"_internalId":216361,"type":"ref","$ref":"quarto-resource-document-fonts-pointsize","description":"quarto-resource-document-fonts-pointsize"},"lineheight":{"_internalId":216362,"type":"ref","$ref":"quarto-resource-document-fonts-lineheight","description":"quarto-resource-document-fonts-lineheight"},"linestretch":{"_internalId":216363,"type":"ref","$ref":"quarto-resource-document-fonts-linestretch","description":"quarto-resource-document-fonts-linestretch"},"interlinespace":{"_internalId":216364,"type":"ref","$ref":"quarto-resource-document-fonts-interlinespace","description":"quarto-resource-document-fonts-interlinespace"},"linkstyle":{"_internalId":216365,"type":"ref","$ref":"quarto-resource-document-fonts-linkstyle","description":"quarto-resource-document-fonts-linkstyle"},"whitespace":{"_internalId":216366,"type":"ref","$ref":"quarto-resource-document-fonts-whitespace","description":"quarto-resource-document-fonts-whitespace"},"footnotes-hover":{"_internalId":216367,"type":"ref","$ref":"quarto-resource-document-footnotes-footnotes-hover","description":"quarto-resource-document-footnotes-footnotes-hover"},"links-as-notes":{"_internalId":216368,"type":"ref","$ref":"quarto-resource-document-footnotes-links-as-notes","description":"quarto-resource-document-footnotes-links-as-notes"},"reference-location":{"_internalId":216369,"type":"ref","$ref":"quarto-resource-document-footnotes-reference-location","description":"quarto-resource-document-footnotes-reference-location"},"indenting":{"_internalId":216370,"type":"ref","$ref":"quarto-resource-document-formatting-indenting","description":"quarto-resource-document-formatting-indenting"},"adjusting":{"_internalId":216371,"type":"ref","$ref":"quarto-resource-document-formatting-adjusting","description":"quarto-resource-document-formatting-adjusting"},"hyphenate":{"_internalId":216372,"type":"ref","$ref":"quarto-resource-document-formatting-hyphenate","description":"quarto-resource-document-formatting-hyphenate"},"list-tables":{"_internalId":216373,"type":"ref","$ref":"quarto-resource-document-formatting-list-tables","description":"quarto-resource-document-formatting-list-tables"},"split-level":{"_internalId":216374,"type":"ref","$ref":"quarto-resource-document-formatting-split-level","description":"quarto-resource-document-formatting-split-level"},"funding":{"_internalId":216375,"type":"ref","$ref":"quarto-resource-document-funding-funding","description":"quarto-resource-document-funding-funding"},"to":{"_internalId":216376,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"writer":{"_internalId":216376,"type":"ref","$ref":"quarto-resource-document-hidden-to","description":"quarto-resource-document-hidden-to"},"input-file":{"_internalId":216377,"type":"ref","$ref":"quarto-resource-document-hidden-input-file","description":"quarto-resource-document-hidden-input-file"},"input-files":{"_internalId":216378,"type":"ref","$ref":"quarto-resource-document-hidden-input-files","description":"quarto-resource-document-hidden-input-files"},"defaults":{"_internalId":216379,"type":"ref","$ref":"quarto-resource-document-hidden-defaults","description":"quarto-resource-document-hidden-defaults"},"variables":{"_internalId":216380,"type":"ref","$ref":"quarto-resource-document-hidden-variables","description":"quarto-resource-document-hidden-variables"},"metadata":{"_internalId":216381,"type":"ref","$ref":"quarto-resource-document-hidden-metadata","description":"quarto-resource-document-hidden-metadata"},"request-headers":{"_internalId":216382,"type":"ref","$ref":"quarto-resource-document-hidden-request-headers","description":"quarto-resource-document-hidden-request-headers"},"trace":{"_internalId":216383,"type":"ref","$ref":"quarto-resource-document-hidden-trace","description":"quarto-resource-document-hidden-trace"},"fail-if-warnings":{"_internalId":216384,"type":"ref","$ref":"quarto-resource-document-hidden-fail-if-warnings","description":"quarto-resource-document-hidden-fail-if-warnings"},"dump-args":{"_internalId":216385,"type":"ref","$ref":"quarto-resource-document-hidden-dump-args","description":"quarto-resource-document-hidden-dump-args"},"ignore-args":{"_internalId":216386,"type":"ref","$ref":"quarto-resource-document-hidden-ignore-args","description":"quarto-resource-document-hidden-ignore-args"},"file-scope":{"_internalId":216387,"type":"ref","$ref":"quarto-resource-document-hidden-file-scope","description":"quarto-resource-document-hidden-file-scope"},"data-dir":{"_internalId":216388,"type":"ref","$ref":"quarto-resource-document-hidden-data-dir","description":"quarto-resource-document-hidden-data-dir"},"verbosity":{"_internalId":216389,"type":"ref","$ref":"quarto-resource-document-hidden-verbosity","description":"quarto-resource-document-hidden-verbosity"},"log-file":{"_internalId":216390,"type":"ref","$ref":"quarto-resource-document-hidden-log-file","description":"quarto-resource-document-hidden-log-file"},"track-changes":{"_internalId":216391,"type":"ref","$ref":"quarto-resource-document-hidden-track-changes","description":"quarto-resource-document-hidden-track-changes"},"keep-source":{"_internalId":216392,"type":"ref","$ref":"quarto-resource-document-hidden-keep-source","description":"quarto-resource-document-hidden-keep-source"},"keep-hidden":{"_internalId":216393,"type":"ref","$ref":"quarto-resource-document-hidden-keep-hidden","description":"quarto-resource-document-hidden-keep-hidden"},"prefer-html":{"_internalId":216394,"type":"ref","$ref":"quarto-resource-document-hidden-prefer-html","description":"quarto-resource-document-hidden-prefer-html"},"output-divs":{"_internalId":216395,"type":"ref","$ref":"quarto-resource-document-hidden-output-divs","description":"quarto-resource-document-hidden-output-divs"},"merge-includes":{"_internalId":216396,"type":"ref","$ref":"quarto-resource-document-hidden-merge-includes","description":"quarto-resource-document-hidden-merge-includes"},"header-includes":{"_internalId":216397,"type":"ref","$ref":"quarto-resource-document-includes-header-includes","description":"quarto-resource-document-includes-header-includes"},"include-before":{"_internalId":216398,"type":"ref","$ref":"quarto-resource-document-includes-include-before","description":"quarto-resource-document-includes-include-before"},"include-after":{"_internalId":216399,"type":"ref","$ref":"quarto-resource-document-includes-include-after","description":"quarto-resource-document-includes-include-after"},"include-before-body":{"_internalId":216400,"type":"ref","$ref":"quarto-resource-document-includes-include-before-body","description":"quarto-resource-document-includes-include-before-body"},"include-after-body":{"_internalId":216401,"type":"ref","$ref":"quarto-resource-document-includes-include-after-body","description":"quarto-resource-document-includes-include-after-body"},"include-in-header":{"_internalId":216402,"type":"ref","$ref":"quarto-resource-document-includes-include-in-header","description":"quarto-resource-document-includes-include-in-header"},"resources":{"_internalId":216403,"type":"ref","$ref":"quarto-resource-document-includes-resources","description":"quarto-resource-document-includes-resources"},"headertext":{"_internalId":216404,"type":"ref","$ref":"quarto-resource-document-includes-headertext","description":"quarto-resource-document-includes-headertext"},"footertext":{"_internalId":216405,"type":"ref","$ref":"quarto-resource-document-includes-footertext","description":"quarto-resource-document-includes-footertext"},"includesource":{"_internalId":216406,"type":"ref","$ref":"quarto-resource-document-includes-includesource","description":"quarto-resource-document-includes-includesource"},"footer":{"_internalId":216580,"type":"ref","$ref":"quarto-resource-document-reveal-content-footer","description":"quarto-resource-document-reveal-content-footer"},"header":{"_internalId":216408,"type":"ref","$ref":"quarto-resource-document-includes-header","description":"quarto-resource-document-includes-header"},"metadata-file":{"_internalId":216409,"type":"ref","$ref":"quarto-resource-document-includes-metadata-file","description":"quarto-resource-document-includes-metadata-file"},"metadata-files":{"_internalId":216410,"type":"ref","$ref":"quarto-resource-document-includes-metadata-files","description":"quarto-resource-document-includes-metadata-files"},"lang":{"_internalId":216411,"type":"ref","$ref":"quarto-resource-document-language-lang","description":"quarto-resource-document-language-lang"},"language":{"_internalId":216412,"type":"ref","$ref":"quarto-resource-document-language-language","description":"quarto-resource-document-language-language"},"shorthands":{"_internalId":216413,"type":"ref","$ref":"quarto-resource-document-language-shorthands","description":"quarto-resource-document-language-shorthands"},"dir":{"_internalId":216414,"type":"ref","$ref":"quarto-resource-document-language-dir","description":"quarto-resource-document-language-dir"},"latex-auto-mk":{"_internalId":216415,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-mk","description":"quarto-resource-document-latexmk-latex-auto-mk"},"latex-auto-install":{"_internalId":216416,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-auto-install","description":"quarto-resource-document-latexmk-latex-auto-install"},"latex-min-runs":{"_internalId":216417,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-min-runs","description":"quarto-resource-document-latexmk-latex-min-runs"},"latex-max-runs":{"_internalId":216418,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-max-runs","description":"quarto-resource-document-latexmk-latex-max-runs"},"latex-clean":{"_internalId":216419,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-clean","description":"quarto-resource-document-latexmk-latex-clean"},"latex-makeindex":{"_internalId":216420,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex","description":"quarto-resource-document-latexmk-latex-makeindex"},"latex-makeindex-opts":{"_internalId":216421,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-makeindex-opts","description":"quarto-resource-document-latexmk-latex-makeindex-opts"},"latex-tlmgr-opts":{"_internalId":216422,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tlmgr-opts","description":"quarto-resource-document-latexmk-latex-tlmgr-opts"},"latex-output-dir":{"_internalId":216423,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-output-dir","description":"quarto-resource-document-latexmk-latex-output-dir"},"latex-tinytex":{"_internalId":216424,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-tinytex","description":"quarto-resource-document-latexmk-latex-tinytex"},"latex-input-paths":{"_internalId":216425,"type":"ref","$ref":"quarto-resource-document-latexmk-latex-input-paths","description":"quarto-resource-document-latexmk-latex-input-paths"},"documentclass":{"_internalId":216426,"type":"ref","$ref":"quarto-resource-document-layout-documentclass","description":"quarto-resource-document-layout-documentclass"},"classoption":{"_internalId":216427,"type":"ref","$ref":"quarto-resource-document-layout-classoption","description":"quarto-resource-document-layout-classoption"},"pagestyle":{"_internalId":216428,"type":"ref","$ref":"quarto-resource-document-layout-pagestyle","description":"quarto-resource-document-layout-pagestyle"},"papersize":{"_internalId":216429,"type":"ref","$ref":"quarto-resource-document-layout-papersize","description":"quarto-resource-document-layout-papersize"},"brand-mode":{"_internalId":216430,"type":"ref","$ref":"quarto-resource-document-layout-brand-mode","description":"quarto-resource-document-layout-brand-mode"},"layout":{"_internalId":216431,"type":"ref","$ref":"quarto-resource-document-layout-layout","description":"quarto-resource-document-layout-layout"},"page-layout":{"_internalId":216432,"type":"ref","$ref":"quarto-resource-document-layout-page-layout","description":"quarto-resource-document-layout-page-layout"},"page-width":{"_internalId":216433,"type":"ref","$ref":"quarto-resource-document-layout-page-width","description":"quarto-resource-document-layout-page-width"},"grid":{"_internalId":216434,"type":"ref","$ref":"quarto-resource-document-layout-grid","description":"quarto-resource-document-layout-grid"},"appendix-style":{"_internalId":216435,"type":"ref","$ref":"quarto-resource-document-layout-appendix-style","description":"quarto-resource-document-layout-appendix-style"},"appendix-cite-as":{"_internalId":216436,"type":"ref","$ref":"quarto-resource-document-layout-appendix-cite-as","description":"quarto-resource-document-layout-appendix-cite-as"},"title-block-style":{"_internalId":216437,"type":"ref","$ref":"quarto-resource-document-layout-title-block-style","description":"quarto-resource-document-layout-title-block-style"},"title-block-banner":{"_internalId":216438,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner","description":"quarto-resource-document-layout-title-block-banner"},"title-block-banner-color":{"_internalId":216439,"type":"ref","$ref":"quarto-resource-document-layout-title-block-banner-color","description":"quarto-resource-document-layout-title-block-banner-color"},"title-block-categories":{"_internalId":216440,"type":"ref","$ref":"quarto-resource-document-layout-title-block-categories","description":"quarto-resource-document-layout-title-block-categories"},"max-width":{"_internalId":216441,"type":"ref","$ref":"quarto-resource-document-layout-max-width","description":"quarto-resource-document-layout-max-width"},"margin-left":{"_internalId":216442,"type":"ref","$ref":"quarto-resource-document-layout-margin-left","description":"quarto-resource-document-layout-margin-left"},"margin-right":{"_internalId":216443,"type":"ref","$ref":"quarto-resource-document-layout-margin-right","description":"quarto-resource-document-layout-margin-right"},"margin-top":{"_internalId":216444,"type":"ref","$ref":"quarto-resource-document-layout-margin-top","description":"quarto-resource-document-layout-margin-top"},"margin-bottom":{"_internalId":216445,"type":"ref","$ref":"quarto-resource-document-layout-margin-bottom","description":"quarto-resource-document-layout-margin-bottom"},"margin":{"_internalId":216446,"type":"ref","$ref":"quarto-resource-document-layout-margin","description":"quarto-resource-document-layout-margin"},"geometry":{"_internalId":216447,"type":"ref","$ref":"quarto-resource-document-layout-geometry","description":"quarto-resource-document-layout-geometry"},"hyperrefoptions":{"_internalId":216448,"type":"ref","$ref":"quarto-resource-document-layout-hyperrefoptions","description":"quarto-resource-document-layout-hyperrefoptions"},"indent":{"_internalId":216449,"type":"ref","$ref":"quarto-resource-document-layout-indent","description":"quarto-resource-document-layout-indent"},"block-headings":{"_internalId":216450,"type":"ref","$ref":"quarto-resource-document-layout-block-headings","description":"quarto-resource-document-layout-block-headings"},"revealjs-url":{"_internalId":216451,"type":"ref","$ref":"quarto-resource-document-library-revealjs-url","description":"quarto-resource-document-library-revealjs-url"},"s5-url":{"_internalId":216452,"type":"ref","$ref":"quarto-resource-document-library-s5-url","description":"quarto-resource-document-library-s5-url"},"slidy-url":{"_internalId":216453,"type":"ref","$ref":"quarto-resource-document-library-slidy-url","description":"quarto-resource-document-library-slidy-url"},"slideous-url":{"_internalId":216454,"type":"ref","$ref":"quarto-resource-document-library-slideous-url","description":"quarto-resource-document-library-slideous-url"},"lightbox":{"_internalId":216455,"type":"ref","$ref":"quarto-resource-document-lightbox-lightbox","description":"quarto-resource-document-lightbox-lightbox"},"link-external-icon":{"_internalId":216456,"type":"ref","$ref":"quarto-resource-document-links-link-external-icon","description":"quarto-resource-document-links-link-external-icon"},"link-external-newwindow":{"_internalId":216457,"type":"ref","$ref":"quarto-resource-document-links-link-external-newwindow","description":"quarto-resource-document-links-link-external-newwindow"},"link-external-filter":{"_internalId":216458,"type":"ref","$ref":"quarto-resource-document-links-link-external-filter","description":"quarto-resource-document-links-link-external-filter"},"format-links":{"_internalId":216459,"type":"ref","$ref":"quarto-resource-document-links-format-links","description":"quarto-resource-document-links-format-links"},"notebook-links":{"_internalId":216460,"type":"ref","$ref":"quarto-resource-document-links-notebook-links","description":"quarto-resource-document-links-notebook-links"},"other-links":{"_internalId":216461,"type":"ref","$ref":"quarto-resource-document-links-other-links","description":"quarto-resource-document-links-other-links"},"code-links":{"_internalId":216462,"type":"ref","$ref":"quarto-resource-document-links-code-links","description":"quarto-resource-document-links-code-links"},"notebook-subarticles":{"_internalId":216463,"type":"ref","$ref":"quarto-resource-document-links-notebook-subarticles","description":"quarto-resource-document-links-notebook-subarticles"},"notebook-view":{"_internalId":216464,"type":"ref","$ref":"quarto-resource-document-links-notebook-view","description":"quarto-resource-document-links-notebook-view"},"notebook-view-style":{"_internalId":216465,"type":"ref","$ref":"quarto-resource-document-links-notebook-view-style","description":"quarto-resource-document-links-notebook-view-style"},"notebook-preview-options":{"_internalId":216466,"type":"ref","$ref":"quarto-resource-document-links-notebook-preview-options","description":"quarto-resource-document-links-notebook-preview-options"},"canonical-url":{"_internalId":216467,"type":"ref","$ref":"quarto-resource-document-links-canonical-url","description":"quarto-resource-document-links-canonical-url"},"listing":{"_internalId":216468,"type":"ref","$ref":"quarto-resource-document-listing-listing","description":"quarto-resource-document-listing-listing"},"mermaid":{"_internalId":216469,"type":"ref","$ref":"quarto-resource-document-mermaid-mermaid","description":"quarto-resource-document-mermaid-mermaid"},"keywords":{"_internalId":216470,"type":"ref","$ref":"quarto-resource-document-metadata-keywords","description":"quarto-resource-document-metadata-keywords"},"subject":{"_internalId":216471,"type":"ref","$ref":"quarto-resource-document-metadata-subject","description":"quarto-resource-document-metadata-subject"},"description":{"_internalId":216472,"type":"ref","$ref":"quarto-resource-document-metadata-description","description":"quarto-resource-document-metadata-description"},"category":{"_internalId":216473,"type":"ref","$ref":"quarto-resource-document-metadata-category","description":"quarto-resource-document-metadata-category"},"license":{"_internalId":216475,"type":"ref","$ref":"quarto-resource-document-metadata-license","description":"quarto-resource-document-metadata-license"},"title-meta":{"_internalId":216476,"type":"ref","$ref":"quarto-resource-document-metadata-title-meta","description":"quarto-resource-document-metadata-title-meta"},"pagetitle":{"_internalId":216477,"type":"ref","$ref":"quarto-resource-document-metadata-pagetitle","description":"quarto-resource-document-metadata-pagetitle"},"title-prefix":{"_internalId":216478,"type":"ref","$ref":"quarto-resource-document-metadata-title-prefix","description":"quarto-resource-document-metadata-title-prefix"},"description-meta":{"_internalId":216479,"type":"ref","$ref":"quarto-resource-document-metadata-description-meta","description":"quarto-resource-document-metadata-description-meta"},"author-meta":{"_internalId":216480,"type":"ref","$ref":"quarto-resource-document-metadata-author-meta","description":"quarto-resource-document-metadata-author-meta"},"date-meta":{"_internalId":216481,"type":"ref","$ref":"quarto-resource-document-metadata-date-meta","description":"quarto-resource-document-metadata-date-meta"},"number-sections":{"_internalId":216482,"type":"ref","$ref":"quarto-resource-document-numbering-number-sections","description":"quarto-resource-document-numbering-number-sections"},"number-depth":{"_internalId":216483,"type":"ref","$ref":"quarto-resource-document-numbering-number-depth","description":"quarto-resource-document-numbering-number-depth"},"secnumdepth":{"_internalId":216484,"type":"ref","$ref":"quarto-resource-document-numbering-secnumdepth","description":"quarto-resource-document-numbering-secnumdepth"},"number-offset":{"_internalId":216485,"type":"ref","$ref":"quarto-resource-document-numbering-number-offset","description":"quarto-resource-document-numbering-number-offset"},"section-numbering":{"_internalId":216486,"type":"ref","$ref":"quarto-resource-document-numbering-section-numbering","description":"quarto-resource-document-numbering-section-numbering"},"shift-heading-level-by":{"_internalId":216487,"type":"ref","$ref":"quarto-resource-document-numbering-shift-heading-level-by","description":"quarto-resource-document-numbering-shift-heading-level-by"},"page-numbering":{"_internalId":216488,"type":"ref","$ref":"quarto-resource-document-numbering-page-numbering","description":"quarto-resource-document-numbering-page-numbering"},"pagenumbering":{"_internalId":216489,"type":"ref","$ref":"quarto-resource-document-numbering-pagenumbering","description":"quarto-resource-document-numbering-pagenumbering"},"top-level-division":{"_internalId":216490,"type":"ref","$ref":"quarto-resource-document-numbering-top-level-division","description":"quarto-resource-document-numbering-top-level-division"},"ojs-engine":{"_internalId":216491,"type":"ref","$ref":"quarto-resource-document-ojs-ojs-engine","description":"quarto-resource-document-ojs-ojs-engine"},"reference-doc":{"_internalId":216492,"type":"ref","$ref":"quarto-resource-document-options-reference-doc","description":"quarto-resource-document-options-reference-doc"},"brand":{"_internalId":216493,"type":"ref","$ref":"quarto-resource-document-options-brand","description":"quarto-resource-document-options-brand"},"theme":{"_internalId":216494,"type":"ref","$ref":"quarto-resource-document-options-theme","description":"quarto-resource-document-options-theme"},"body-classes":{"_internalId":216495,"type":"ref","$ref":"quarto-resource-document-options-body-classes","description":"quarto-resource-document-options-body-classes"},"minimal":{"_internalId":216496,"type":"ref","$ref":"quarto-resource-document-options-minimal","description":"quarto-resource-document-options-minimal"},"document-css":{"_internalId":216497,"type":"ref","$ref":"quarto-resource-document-options-document-css","description":"quarto-resource-document-options-document-css"},"css":{"_internalId":216498,"type":"ref","$ref":"quarto-resource-document-options-css","description":"quarto-resource-document-options-css"},"anchor-sections":{"_internalId":216499,"type":"ref","$ref":"quarto-resource-document-options-anchor-sections","description":"quarto-resource-document-options-anchor-sections"},"tabsets":{"_internalId":216500,"type":"ref","$ref":"quarto-resource-document-options-tabsets","description":"quarto-resource-document-options-tabsets"},"smooth-scroll":{"_internalId":216501,"type":"ref","$ref":"quarto-resource-document-options-smooth-scroll","description":"quarto-resource-document-options-smooth-scroll"},"respect-user-color-scheme":{"_internalId":216502,"type":"ref","$ref":"quarto-resource-document-options-respect-user-color-scheme","description":"quarto-resource-document-options-respect-user-color-scheme"},"html-math-method":{"_internalId":216503,"type":"ref","$ref":"quarto-resource-document-options-html-math-method","description":"quarto-resource-document-options-html-math-method"},"section-divs":{"_internalId":216504,"type":"ref","$ref":"quarto-resource-document-options-section-divs","description":"quarto-resource-document-options-section-divs"},"identifier-prefix":{"_internalId":216505,"type":"ref","$ref":"quarto-resource-document-options-identifier-prefix","description":"quarto-resource-document-options-identifier-prefix"},"email-obfuscation":{"_internalId":216506,"type":"ref","$ref":"quarto-resource-document-options-email-obfuscation","description":"quarto-resource-document-options-email-obfuscation"},"html-q-tags":{"_internalId":216507,"type":"ref","$ref":"quarto-resource-document-options-html-q-tags","description":"quarto-resource-document-options-html-q-tags"},"pdf-engine":{"_internalId":216508,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine","description":"quarto-resource-document-options-pdf-engine"},"pdf-engine-opt":{"_internalId":216509,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opt","description":"quarto-resource-document-options-pdf-engine-opt"},"pdf-engine-opts":{"_internalId":216510,"type":"ref","$ref":"quarto-resource-document-options-pdf-engine-opts","description":"quarto-resource-document-options-pdf-engine-opts"},"beamerarticle":{"_internalId":216511,"type":"ref","$ref":"quarto-resource-document-options-beamerarticle","description":"quarto-resource-document-options-beamerarticle"},"beameroption":{"_internalId":216512,"type":"ref","$ref":"quarto-resource-document-options-beameroption","description":"quarto-resource-document-options-beameroption"},"aspectratio":{"_internalId":216513,"type":"ref","$ref":"quarto-resource-document-options-aspectratio","description":"quarto-resource-document-options-aspectratio"},"titlegraphic":{"_internalId":216515,"type":"ref","$ref":"quarto-resource-document-options-titlegraphic","description":"quarto-resource-document-options-titlegraphic"},"navigation":{"_internalId":216516,"type":"ref","$ref":"quarto-resource-document-options-navigation","description":"quarto-resource-document-options-navigation"},"section-titles":{"_internalId":216517,"type":"ref","$ref":"quarto-resource-document-options-section-titles","description":"quarto-resource-document-options-section-titles"},"colortheme":{"_internalId":216518,"type":"ref","$ref":"quarto-resource-document-options-colortheme","description":"quarto-resource-document-options-colortheme"},"colorthemeoptions":{"_internalId":216519,"type":"ref","$ref":"quarto-resource-document-options-colorthemeoptions","description":"quarto-resource-document-options-colorthemeoptions"},"fonttheme":{"_internalId":216520,"type":"ref","$ref":"quarto-resource-document-options-fonttheme","description":"quarto-resource-document-options-fonttheme"},"fontthemeoptions":{"_internalId":216521,"type":"ref","$ref":"quarto-resource-document-options-fontthemeoptions","description":"quarto-resource-document-options-fontthemeoptions"},"innertheme":{"_internalId":216522,"type":"ref","$ref":"quarto-resource-document-options-innertheme","description":"quarto-resource-document-options-innertheme"},"innerthemeoptions":{"_internalId":216523,"type":"ref","$ref":"quarto-resource-document-options-innerthemeoptions","description":"quarto-resource-document-options-innerthemeoptions"},"outertheme":{"_internalId":216524,"type":"ref","$ref":"quarto-resource-document-options-outertheme","description":"quarto-resource-document-options-outertheme"},"outerthemeoptions":{"_internalId":216525,"type":"ref","$ref":"quarto-resource-document-options-outerthemeoptions","description":"quarto-resource-document-options-outerthemeoptions"},"themeoptions":{"_internalId":216526,"type":"ref","$ref":"quarto-resource-document-options-themeoptions","description":"quarto-resource-document-options-themeoptions"},"section":{"_internalId":216527,"type":"ref","$ref":"quarto-resource-document-options-section","description":"quarto-resource-document-options-section"},"variant":{"_internalId":216528,"type":"ref","$ref":"quarto-resource-document-options-variant","description":"quarto-resource-document-options-variant"},"markdown-headings":{"_internalId":216529,"type":"ref","$ref":"quarto-resource-document-options-markdown-headings","description":"quarto-resource-document-options-markdown-headings"},"ipynb-output":{"_internalId":216530,"type":"ref","$ref":"quarto-resource-document-options-ipynb-output","description":"quarto-resource-document-options-ipynb-output"},"quarto-required":{"_internalId":216531,"type":"ref","$ref":"quarto-resource-document-options-quarto-required","description":"quarto-resource-document-options-quarto-required"},"preview-mode":{"_internalId":216532,"type":"ref","$ref":"quarto-resource-document-options-preview-mode","description":"quarto-resource-document-options-preview-mode"},"pdfa":{"_internalId":216533,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfa","description":"quarto-resource-document-pdfa-pdfa"},"pdfaiccprofile":{"_internalId":216534,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaiccprofile","description":"quarto-resource-document-pdfa-pdfaiccprofile"},"pdfaintent":{"_internalId":216535,"type":"ref","$ref":"quarto-resource-document-pdfa-pdfaintent","description":"quarto-resource-document-pdfa-pdfaintent"},"pdf-standard":{"_internalId":216536,"type":"ref","$ref":"quarto-resource-document-pdfa-pdf-standard","description":"quarto-resource-document-pdfa-pdf-standard"},"bibliography":{"_internalId":216537,"type":"ref","$ref":"quarto-resource-document-references-bibliography","description":"quarto-resource-document-references-bibliography"},"csl":{"_internalId":216538,"type":"ref","$ref":"quarto-resource-document-references-csl","description":"quarto-resource-document-references-csl"},"citations-hover":{"_internalId":216539,"type":"ref","$ref":"quarto-resource-document-references-citations-hover","description":"quarto-resource-document-references-citations-hover"},"citation-location":{"_internalId":216540,"type":"ref","$ref":"quarto-resource-document-references-citation-location","description":"quarto-resource-document-references-citation-location"},"cite-method":{"_internalId":216541,"type":"ref","$ref":"quarto-resource-document-references-cite-method","description":"quarto-resource-document-references-cite-method"},"citeproc":{"_internalId":216542,"type":"ref","$ref":"quarto-resource-document-references-citeproc","description":"quarto-resource-document-references-citeproc"},"biblatexoptions":{"_internalId":216543,"type":"ref","$ref":"quarto-resource-document-references-biblatexoptions","description":"quarto-resource-document-references-biblatexoptions"},"natbiboptions":{"_internalId":216544,"type":"ref","$ref":"quarto-resource-document-references-natbiboptions","description":"quarto-resource-document-references-natbiboptions"},"biblio-style":{"_internalId":216545,"type":"ref","$ref":"quarto-resource-document-references-biblio-style","description":"quarto-resource-document-references-biblio-style"},"bibliographystyle":{"_internalId":216546,"type":"ref","$ref":"quarto-resource-document-references-bibliographystyle","description":"quarto-resource-document-references-bibliographystyle"},"biblio-title":{"_internalId":216547,"type":"ref","$ref":"quarto-resource-document-references-biblio-title","description":"quarto-resource-document-references-biblio-title"},"biblio-config":{"_internalId":216548,"type":"ref","$ref":"quarto-resource-document-references-biblio-config","description":"quarto-resource-document-references-biblio-config"},"citation-abbreviations":{"_internalId":216549,"type":"ref","$ref":"quarto-resource-document-references-citation-abbreviations","description":"quarto-resource-document-references-citation-abbreviations"},"link-citations":{"_internalId":216550,"type":"ref","$ref":"quarto-resource-document-references-link-citations","description":"quarto-resource-document-references-link-citations"},"link-bibliography":{"_internalId":216551,"type":"ref","$ref":"quarto-resource-document-references-link-bibliography","description":"quarto-resource-document-references-link-bibliography"},"notes-after-punctuation":{"_internalId":216552,"type":"ref","$ref":"quarto-resource-document-references-notes-after-punctuation","description":"quarto-resource-document-references-notes-after-punctuation"},"from":{"_internalId":216553,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"reader":{"_internalId":216553,"type":"ref","$ref":"quarto-resource-document-render-from","description":"quarto-resource-document-render-from"},"output-file":{"_internalId":216554,"type":"ref","$ref":"quarto-resource-document-render-output-file","description":"quarto-resource-document-render-output-file"},"output-ext":{"_internalId":216555,"type":"ref","$ref":"quarto-resource-document-render-output-ext","description":"quarto-resource-document-render-output-ext"},"template":{"_internalId":216556,"type":"ref","$ref":"quarto-resource-document-render-template","description":"quarto-resource-document-render-template"},"template-partials":{"_internalId":216557,"type":"ref","$ref":"quarto-resource-document-render-template-partials","description":"quarto-resource-document-render-template-partials"},"embed-resources":{"_internalId":216558,"type":"ref","$ref":"quarto-resource-document-render-embed-resources","description":"quarto-resource-document-render-embed-resources"},"self-contained":{"_internalId":216559,"type":"ref","$ref":"quarto-resource-document-render-self-contained","description":"quarto-resource-document-render-self-contained"},"self-contained-math":{"_internalId":216560,"type":"ref","$ref":"quarto-resource-document-render-self-contained-math","description":"quarto-resource-document-render-self-contained-math"},"filters":{"_internalId":216561,"type":"ref","$ref":"quarto-resource-document-render-filters","description":"quarto-resource-document-render-filters"},"shortcodes":{"_internalId":216562,"type":"ref","$ref":"quarto-resource-document-render-shortcodes","description":"quarto-resource-document-render-shortcodes"},"keep-md":{"_internalId":216563,"type":"ref","$ref":"quarto-resource-document-render-keep-md","description":"quarto-resource-document-render-keep-md"},"keep-ipynb":{"_internalId":216564,"type":"ref","$ref":"quarto-resource-document-render-keep-ipynb","description":"quarto-resource-document-render-keep-ipynb"},"ipynb-filters":{"_internalId":216565,"type":"ref","$ref":"quarto-resource-document-render-ipynb-filters","description":"quarto-resource-document-render-ipynb-filters"},"ipynb-shell-interactivity":{"_internalId":216566,"type":"ref","$ref":"quarto-resource-document-render-ipynb-shell-interactivity","description":"quarto-resource-document-render-ipynb-shell-interactivity"},"plotly-connected":{"_internalId":216567,"type":"ref","$ref":"quarto-resource-document-render-plotly-connected","description":"quarto-resource-document-render-plotly-connected"},"keep-typ":{"_internalId":216568,"type":"ref","$ref":"quarto-resource-document-render-keep-typ","description":"quarto-resource-document-render-keep-typ"},"keep-tex":{"_internalId":216569,"type":"ref","$ref":"quarto-resource-document-render-keep-tex","description":"quarto-resource-document-render-keep-tex"},"extract-media":{"_internalId":216570,"type":"ref","$ref":"quarto-resource-document-render-extract-media","description":"quarto-resource-document-render-extract-media"},"resource-path":{"_internalId":216571,"type":"ref","$ref":"quarto-resource-document-render-resource-path","description":"quarto-resource-document-render-resource-path"},"default-image-extension":{"_internalId":216572,"type":"ref","$ref":"quarto-resource-document-render-default-image-extension","description":"quarto-resource-document-render-default-image-extension"},"abbreviations":{"_internalId":216573,"type":"ref","$ref":"quarto-resource-document-render-abbreviations","description":"quarto-resource-document-render-abbreviations"},"dpi":{"_internalId":216574,"type":"ref","$ref":"quarto-resource-document-render-dpi","description":"quarto-resource-document-render-dpi"},"html-table-processing":{"_internalId":216575,"type":"ref","$ref":"quarto-resource-document-render-html-table-processing","description":"quarto-resource-document-render-html-table-processing"},"html-pre-tag-processing":{"_internalId":216576,"type":"ref","$ref":"quarto-resource-document-render-html-pre-tag-processing","description":"quarto-resource-document-render-html-pre-tag-processing"},"css-property-processing":{"_internalId":216577,"type":"ref","$ref":"quarto-resource-document-render-css-property-processing","description":"quarto-resource-document-render-css-property-processing"},"use-rsvg-convert":{"_internalId":216578,"type":"ref","$ref":"quarto-resource-document-render-use-rsvg-convert","description":"quarto-resource-document-render-use-rsvg-convert"},"scrollable":{"_internalId":216581,"type":"ref","$ref":"quarto-resource-document-reveal-content-scrollable","description":"quarto-resource-document-reveal-content-scrollable"},"smaller":{"_internalId":216582,"type":"ref","$ref":"quarto-resource-document-reveal-content-smaller","description":"quarto-resource-document-reveal-content-smaller"},"output-location":{"_internalId":216583,"type":"ref","$ref":"quarto-resource-document-reveal-content-output-location","description":"quarto-resource-document-reveal-content-output-location"},"embedded":{"_internalId":216584,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-embedded","description":"quarto-resource-document-reveal-hidden-embedded"},"display":{"_internalId":216585,"type":"ref","$ref":"quarto-resource-document-reveal-hidden-display","description":"quarto-resource-document-reveal-hidden-display"},"auto-stretch":{"_internalId":216586,"type":"ref","$ref":"quarto-resource-document-reveal-layout-auto-stretch","description":"quarto-resource-document-reveal-layout-auto-stretch"},"width":{"_internalId":216587,"type":"ref","$ref":"quarto-resource-document-reveal-layout-width","description":"quarto-resource-document-reveal-layout-width"},"height":{"_internalId":216588,"type":"ref","$ref":"quarto-resource-document-reveal-layout-height","description":"quarto-resource-document-reveal-layout-height"},"min-scale":{"_internalId":216589,"type":"ref","$ref":"quarto-resource-document-reveal-layout-min-scale","description":"quarto-resource-document-reveal-layout-min-scale"},"max-scale":{"_internalId":216590,"type":"ref","$ref":"quarto-resource-document-reveal-layout-max-scale","description":"quarto-resource-document-reveal-layout-max-scale"},"center":{"_internalId":216591,"type":"ref","$ref":"quarto-resource-document-reveal-layout-center","description":"quarto-resource-document-reveal-layout-center"},"disable-layout":{"_internalId":216592,"type":"ref","$ref":"quarto-resource-document-reveal-layout-disable-layout","description":"quarto-resource-document-reveal-layout-disable-layout"},"code-block-height":{"_internalId":216593,"type":"ref","$ref":"quarto-resource-document-reveal-layout-code-block-height","description":"quarto-resource-document-reveal-layout-code-block-height"},"preview-links":{"_internalId":216594,"type":"ref","$ref":"quarto-resource-document-reveal-media-preview-links","description":"quarto-resource-document-reveal-media-preview-links"},"auto-play-media":{"_internalId":216595,"type":"ref","$ref":"quarto-resource-document-reveal-media-auto-play-media","description":"quarto-resource-document-reveal-media-auto-play-media"},"preload-iframes":{"_internalId":216596,"type":"ref","$ref":"quarto-resource-document-reveal-media-preload-iframes","description":"quarto-resource-document-reveal-media-preload-iframes"},"view-distance":{"_internalId":216597,"type":"ref","$ref":"quarto-resource-document-reveal-media-view-distance","description":"quarto-resource-document-reveal-media-view-distance"},"mobile-view-distance":{"_internalId":216598,"type":"ref","$ref":"quarto-resource-document-reveal-media-mobile-view-distance","description":"quarto-resource-document-reveal-media-mobile-view-distance"},"parallax-background-image":{"_internalId":216599,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-image","description":"quarto-resource-document-reveal-media-parallax-background-image"},"parallax-background-size":{"_internalId":216600,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-size","description":"quarto-resource-document-reveal-media-parallax-background-size"},"parallax-background-horizontal":{"_internalId":216601,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-horizontal","description":"quarto-resource-document-reveal-media-parallax-background-horizontal"},"parallax-background-vertical":{"_internalId":216602,"type":"ref","$ref":"quarto-resource-document-reveal-media-parallax-background-vertical","description":"quarto-resource-document-reveal-media-parallax-background-vertical"},"progress":{"_internalId":216603,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-progress","description":"quarto-resource-document-reveal-navigation-progress"},"history":{"_internalId":216604,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-history","description":"quarto-resource-document-reveal-navigation-history"},"navigation-mode":{"_internalId":216605,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-navigation-mode","description":"quarto-resource-document-reveal-navigation-navigation-mode"},"touch":{"_internalId":216606,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-touch","description":"quarto-resource-document-reveal-navigation-touch"},"keyboard":{"_internalId":216607,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-keyboard","description":"quarto-resource-document-reveal-navigation-keyboard"},"mouse-wheel":{"_internalId":216608,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-mouse-wheel","description":"quarto-resource-document-reveal-navigation-mouse-wheel"},"hide-inactive-cursor":{"_internalId":216609,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-inactive-cursor","description":"quarto-resource-document-reveal-navigation-hide-inactive-cursor"},"hide-cursor-time":{"_internalId":216610,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hide-cursor-time","description":"quarto-resource-document-reveal-navigation-hide-cursor-time"},"loop":{"_internalId":216611,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-loop","description":"quarto-resource-document-reveal-navigation-loop"},"shuffle":{"_internalId":216612,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-shuffle","description":"quarto-resource-document-reveal-navigation-shuffle"},"controls":{"_internalId":216613,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls","description":"quarto-resource-document-reveal-navigation-controls"},"controls-layout":{"_internalId":216614,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-layout","description":"quarto-resource-document-reveal-navigation-controls-layout"},"controls-tutorial":{"_internalId":216615,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-tutorial","description":"quarto-resource-document-reveal-navigation-controls-tutorial"},"controls-back-arrows":{"_internalId":216616,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-controls-back-arrows","description":"quarto-resource-document-reveal-navigation-controls-back-arrows"},"auto-slide":{"_internalId":216617,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide","description":"quarto-resource-document-reveal-navigation-auto-slide"},"auto-slide-stoppable":{"_internalId":216618,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-stoppable","description":"quarto-resource-document-reveal-navigation-auto-slide-stoppable"},"auto-slide-method":{"_internalId":216619,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-auto-slide-method","description":"quarto-resource-document-reveal-navigation-auto-slide-method"},"default-timing":{"_internalId":216620,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-default-timing","description":"quarto-resource-document-reveal-navigation-default-timing"},"pause":{"_internalId":216621,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-pause","description":"quarto-resource-document-reveal-navigation-pause"},"help":{"_internalId":216622,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-help","description":"quarto-resource-document-reveal-navigation-help"},"hash":{"_internalId":216623,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash","description":"quarto-resource-document-reveal-navigation-hash"},"hash-type":{"_internalId":216624,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-type","description":"quarto-resource-document-reveal-navigation-hash-type"},"hash-one-based-index":{"_internalId":216625,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-hash-one-based-index","description":"quarto-resource-document-reveal-navigation-hash-one-based-index"},"respond-to-hash-changes":{"_internalId":216626,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-respond-to-hash-changes","description":"quarto-resource-document-reveal-navigation-respond-to-hash-changes"},"fragment-in-url":{"_internalId":216627,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-fragment-in-url","description":"quarto-resource-document-reveal-navigation-fragment-in-url"},"slide-tone":{"_internalId":216628,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-slide-tone","description":"quarto-resource-document-reveal-navigation-slide-tone"},"jump-to-slide":{"_internalId":216629,"type":"ref","$ref":"quarto-resource-document-reveal-navigation-jump-to-slide","description":"quarto-resource-document-reveal-navigation-jump-to-slide"},"pdf-max-pages-per-slide":{"_internalId":216630,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide","description":"quarto-resource-document-reveal-print-pdf-max-pages-per-slide"},"pdf-separate-fragments":{"_internalId":216631,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-separate-fragments","description":"quarto-resource-document-reveal-print-pdf-separate-fragments"},"pdf-page-height-offset":{"_internalId":216632,"type":"ref","$ref":"quarto-resource-document-reveal-print-pdf-page-height-offset","description":"quarto-resource-document-reveal-print-pdf-page-height-offset"},"overview":{"_internalId":216633,"type":"ref","$ref":"quarto-resource-document-reveal-tools-overview","description":"quarto-resource-document-reveal-tools-overview"},"menu":{"_internalId":216634,"type":"ref","$ref":"quarto-resource-document-reveal-tools-menu","description":"quarto-resource-document-reveal-tools-menu"},"chalkboard":{"_internalId":216635,"type":"ref","$ref":"quarto-resource-document-reveal-tools-chalkboard","description":"quarto-resource-document-reveal-tools-chalkboard"},"multiplex":{"_internalId":216636,"type":"ref","$ref":"quarto-resource-document-reveal-tools-multiplex","description":"quarto-resource-document-reveal-tools-multiplex"},"scroll-view":{"_internalId":216637,"type":"ref","$ref":"quarto-resource-document-reveal-tools-scroll-view","description":"quarto-resource-document-reveal-tools-scroll-view"},"transition":{"_internalId":216638,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition","description":"quarto-resource-document-reveal-transitions-transition"},"transition-speed":{"_internalId":216639,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-transition-speed","description":"quarto-resource-document-reveal-transitions-transition-speed"},"background-transition":{"_internalId":216640,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-background-transition","description":"quarto-resource-document-reveal-transitions-background-transition"},"fragments":{"_internalId":216641,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-fragments","description":"quarto-resource-document-reveal-transitions-fragments"},"auto-animate":{"_internalId":216642,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate","description":"quarto-resource-document-reveal-transitions-auto-animate"},"auto-animate-easing":{"_internalId":216643,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-easing","description":"quarto-resource-document-reveal-transitions-auto-animate-easing"},"auto-animate-duration":{"_internalId":216644,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-duration","description":"quarto-resource-document-reveal-transitions-auto-animate-duration"},"auto-animate-unmatched":{"_internalId":216645,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-unmatched","description":"quarto-resource-document-reveal-transitions-auto-animate-unmatched"},"auto-animate-styles":{"_internalId":216646,"type":"ref","$ref":"quarto-resource-document-reveal-transitions-auto-animate-styles","description":"quarto-resource-document-reveal-transitions-auto-animate-styles"},"incremental":{"_internalId":216647,"type":"ref","$ref":"quarto-resource-document-slides-incremental","description":"quarto-resource-document-slides-incremental"},"slide-level":{"_internalId":216648,"type":"ref","$ref":"quarto-resource-document-slides-slide-level","description":"quarto-resource-document-slides-slide-level"},"slide-number":{"_internalId":216649,"type":"ref","$ref":"quarto-resource-document-slides-slide-number","description":"quarto-resource-document-slides-slide-number"},"show-slide-number":{"_internalId":216650,"type":"ref","$ref":"quarto-resource-document-slides-show-slide-number","description":"quarto-resource-document-slides-show-slide-number"},"title-slide-attributes":{"_internalId":216651,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-attributes","description":"quarto-resource-document-slides-title-slide-attributes"},"title-slide-style":{"_internalId":216652,"type":"ref","$ref":"quarto-resource-document-slides-title-slide-style","description":"quarto-resource-document-slides-title-slide-style"},"center-title-slide":{"_internalId":216653,"type":"ref","$ref":"quarto-resource-document-slides-center-title-slide","description":"quarto-resource-document-slides-center-title-slide"},"show-notes":{"_internalId":216654,"type":"ref","$ref":"quarto-resource-document-slides-show-notes","description":"quarto-resource-document-slides-show-notes"},"rtl":{"_internalId":216655,"type":"ref","$ref":"quarto-resource-document-slides-rtl","description":"quarto-resource-document-slides-rtl"},"df-print":{"_internalId":216656,"type":"ref","$ref":"quarto-resource-document-tables-df-print","description":"quarto-resource-document-tables-df-print"},"wrap":{"_internalId":216657,"type":"ref","$ref":"quarto-resource-document-text-wrap","description":"quarto-resource-document-text-wrap"},"columns":{"_internalId":216658,"type":"ref","$ref":"quarto-resource-document-text-columns","description":"quarto-resource-document-text-columns"},"tab-stop":{"_internalId":216659,"type":"ref","$ref":"quarto-resource-document-text-tab-stop","description":"quarto-resource-document-text-tab-stop"},"preserve-tabs":{"_internalId":216660,"type":"ref","$ref":"quarto-resource-document-text-preserve-tabs","description":"quarto-resource-document-text-preserve-tabs"},"eol":{"_internalId":216661,"type":"ref","$ref":"quarto-resource-document-text-eol","description":"quarto-resource-document-text-eol"},"strip-comments":{"_internalId":216662,"type":"ref","$ref":"quarto-resource-document-text-strip-comments","description":"quarto-resource-document-text-strip-comments"},"ascii":{"_internalId":216663,"type":"ref","$ref":"quarto-resource-document-text-ascii","description":"quarto-resource-document-text-ascii"},"toc":{"_internalId":216664,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"table-of-contents":{"_internalId":216664,"type":"ref","$ref":"quarto-resource-document-toc-toc","description":"quarto-resource-document-toc-toc"},"toc-indent":{"_internalId":216665,"type":"ref","$ref":"quarto-resource-document-toc-toc-indent","description":"quarto-resource-document-toc-toc-indent"},"toc-depth":{"_internalId":216666,"type":"ref","$ref":"quarto-resource-document-toc-toc-depth","description":"quarto-resource-document-toc-toc-depth"},"toc-location":{"_internalId":216667,"type":"ref","$ref":"quarto-resource-document-toc-toc-location","description":"quarto-resource-document-toc-toc-location"},"toc-title":{"_internalId":216668,"type":"ref","$ref":"quarto-resource-document-toc-toc-title","description":"quarto-resource-document-toc-toc-title"},"toc-expand":{"_internalId":216669,"type":"ref","$ref":"quarto-resource-document-toc-toc-expand","description":"quarto-resource-document-toc-toc-expand"},"lof":{"_internalId":216670,"type":"ref","$ref":"quarto-resource-document-toc-lof","description":"quarto-resource-document-toc-lof"},"lot":{"_internalId":216671,"type":"ref","$ref":"quarto-resource-document-toc-lot","description":"quarto-resource-document-toc-lot"},"search":{"_internalId":216672,"type":"ref","$ref":"quarto-resource-document-website-search","description":"quarto-resource-document-website-search"},"repo-actions":{"_internalId":216673,"type":"ref","$ref":"quarto-resource-document-website-repo-actions","description":"quarto-resource-document-website-repo-actions"},"aliases":{"_internalId":216674,"type":"ref","$ref":"quarto-resource-document-website-aliases","description":"quarto-resource-document-website-aliases"},"image":{"_internalId":216675,"type":"ref","$ref":"quarto-resource-document-website-image","description":"quarto-resource-document-website-image"},"image-height":{"_internalId":216676,"type":"ref","$ref":"quarto-resource-document-website-image-height","description":"quarto-resource-document-website-image-height"},"image-width":{"_internalId":216677,"type":"ref","$ref":"quarto-resource-document-website-image-width","description":"quarto-resource-document-website-image-width"},"image-alt":{"_internalId":216678,"type":"ref","$ref":"quarto-resource-document-website-image-alt","description":"quarto-resource-document-website-image-alt"},"image-lazy-loading":{"_internalId":216679,"type":"ref","$ref":"quarto-resource-document-website-image-lazy-loading","description":"quarto-resource-document-website-image-lazy-loading"},"axe":{"_internalId":216680,"type":"ref","$ref":"quarto-resource-document-a11y-axe","description":"quarto-resource-document-a11y-axe"},"margin-geometry":{"_internalId":216682,"type":"ref","$ref":"quarto-resource-document-typst-margin-geometry","description":"quarto-resource-document-typst-margin-geometry"},"theorem-appearance":{"_internalId":216683,"type":"ref","$ref":"quarto-resource-document-typst-theorem-appearance","description":"quarto-resource-document-typst-theorem-appearance"},"email-version":{"_internalId":216684,"type":"ref","$ref":"quarto-resource-document-email-email-version","description":"quarto-resource-document-email-email-version"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,fig-align,fig-env,fig-pos,cap-location,fig-cap-location,tbl-cap-location,tbl-colwidths,output,warning,error,include,about,title,subtitle,date,date-format,date-modified,author,affiliation,copyright,article,journal,institute,abstract,abstract-title,notes,tags,doi,thanks,order,citation,code-copy,code-link,code-annotations,code-tools,code-block-border-left,code-block-bg,syntax-highlighting,highlight-style,syntax-definition,syntax-definitions,listings,indented-code-classes,fontcolor,linkcolor,monobackgroundcolor,backgroundcolor,filecolor,citecolor,urlcolor,toccolor,colorlinks,contrastcolor,comments,crossref,crossrefs-hover,logo,orientation,scrolling,expandable,nav-buttons,editor,editor_options,zotero,identifier,creator,contributor,type,relation,coverage,rights,belongs-to-collection,group-position,page-progression-direction,ibooks,epub-metadata,epub-subdirectory,epub-fonts,epub-chapter-level,epub-cover-image,epub-title-page,engine,jupyter,julia,knitr,cache,freeze,server,daemon,daemon-restart,enabled,ipynb,debug,fig-width,fig-height,fig-format,fig-dpi,fig-asp,fig-responsive,mainfont,monofont,codefont,fontsize,fontenc,fontfamily,fontfamilyoptions,sansfont,mathfont,CJKmainfont,mainfontoptions,sansfontoptions,monofontoptions,mathfontoptions,font-paths,CJKoptions,microtypeoptions,pointsize,lineheight,linestretch,interlinespace,linkstyle,whitespace,footnotes-hover,links-as-notes,reference-location,indenting,adjusting,hyphenate,list-tables,split-level,funding,to,writer,input-file,input-files,defaults,variables,metadata,request-headers,trace,fail-if-warnings,dump-args,ignore-args,file-scope,data-dir,verbosity,log-file,track-changes,keep-source,keep-hidden,prefer-html,output-divs,merge-includes,header-includes,include-before,include-after,include-before-body,include-after-body,include-in-header,resources,headertext,footertext,includesource,footer,header,metadata-file,metadata-files,lang,language,shorthands,dir,latex-auto-mk,latex-auto-install,latex-min-runs,latex-max-runs,latex-clean,latex-makeindex,latex-makeindex-opts,latex-tlmgr-opts,latex-output-dir,latex-tinytex,latex-input-paths,documentclass,classoption,pagestyle,papersize,brand-mode,layout,page-layout,page-width,grid,appendix-style,appendix-cite-as,title-block-style,title-block-banner,title-block-banner-color,title-block-categories,max-width,margin-left,margin-right,margin-top,margin-bottom,margin,geometry,hyperrefoptions,indent,block-headings,revealjs-url,s5-url,slidy-url,slideous-url,lightbox,link-external-icon,link-external-newwindow,link-external-filter,format-links,notebook-links,other-links,code-links,notebook-subarticles,notebook-view,notebook-view-style,notebook-preview-options,canonical-url,listing,mermaid,keywords,subject,description,category,license,title-meta,pagetitle,title-prefix,description-meta,author-meta,date-meta,number-sections,number-depth,secnumdepth,number-offset,section-numbering,shift-heading-level-by,page-numbering,pagenumbering,top-level-division,ojs-engine,reference-doc,brand,theme,body-classes,minimal,document-css,css,anchor-sections,tabsets,smooth-scroll,respect-user-color-scheme,html-math-method,section-divs,identifier-prefix,email-obfuscation,html-q-tags,pdf-engine,pdf-engine-opt,pdf-engine-opts,beamerarticle,beameroption,aspectratio,titlegraphic,navigation,section-titles,colortheme,colorthemeoptions,fonttheme,fontthemeoptions,innertheme,innerthemeoptions,outertheme,outerthemeoptions,themeoptions,section,variant,markdown-headings,ipynb-output,quarto-required,preview-mode,pdfa,pdfaiccprofile,pdfaintent,pdf-standard,bibliography,csl,citations-hover,citation-location,cite-method,citeproc,biblatexoptions,natbiboptions,biblio-style,bibliographystyle,biblio-title,biblio-config,citation-abbreviations,link-citations,link-bibliography,notes-after-punctuation,from,reader,output-file,output-ext,template,template-partials,embed-resources,self-contained,self-contained-math,filters,shortcodes,keep-md,keep-ipynb,ipynb-filters,ipynb-shell-interactivity,plotly-connected,keep-typ,keep-tex,extract-media,resource-path,default-image-extension,abbreviations,dpi,html-table-processing,html-pre-tag-processing,css-property-processing,use-rsvg-convert,scrollable,smaller,output-location,embedded,display,auto-stretch,width,height,min-scale,max-scale,center,disable-layout,code-block-height,preview-links,auto-play-media,preload-iframes,view-distance,mobile-view-distance,parallax-background-image,parallax-background-size,parallax-background-horizontal,parallax-background-vertical,progress,history,navigation-mode,touch,keyboard,mouse-wheel,hide-inactive-cursor,hide-cursor-time,loop,shuffle,controls,controls-layout,controls-tutorial,controls-back-arrows,auto-slide,auto-slide-stoppable,auto-slide-method,default-timing,pause,help,hash,hash-type,hash-one-based-index,respond-to-hash-changes,fragment-in-url,slide-tone,jump-to-slide,pdf-max-pages-per-slide,pdf-separate-fragments,pdf-page-height-offset,overview,menu,chalkboard,multiplex,scroll-view,transition,transition-speed,background-transition,fragments,auto-animate,auto-animate-easing,auto-animate-duration,auto-animate-unmatched,auto-animate-styles,incremental,slide-level,slide-number,show-slide-number,title-slide-attributes,title-slide-style,center-title-slide,show-notes,rtl,df-print,wrap,columns,tab-stop,preserve-tabs,eol,strip-comments,ascii,toc,table-of-contents,toc-indent,toc-depth,toc-location,toc-title,toc-expand,lof,lot,search,repo-actions,aliases,image,image-height,image-width,image-alt,image-lazy-loading,axe,margin-geometry,theorem-appearance,email-version","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^fig_align$|^figAlign$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_colwidths$|^tblColwidths$|^date_format$|^dateFormat$|^date_modified$|^dateModified$|^abstract_title$|^abstractTitle$|^code_copy$|^codeCopy$|^code_link$|^codeLink$|^code_annotations$|^codeAnnotations$|^code_tools$|^codeTools$|^code_block_border_left$|^codeBlockBorderLeft$|^code_block_bg$|^codeBlockBg$|^syntax_highlighting$|^syntaxHighlighting$|^highlight_style$|^highlightStyle$|^syntax_definition$|^syntaxDefinition$|^syntax_definitions$|^syntaxDefinitions$|^indented_code_classes$|^indentedCodeClasses$|^crossrefs_hover$|^crossrefsHover$|^nav_buttons$|^navButtons$|^editor-options$|^editorOptions$|^belongs_to_collection$|^belongsToCollection$|^group_position$|^groupPosition$|^page_progression_direction$|^pageProgressionDirection$|^epub_metadata$|^epubMetadata$|^epub_subdirectory$|^epubSubdirectory$|^epub_fonts$|^epubFonts$|^epub_chapter_level$|^epubChapterLevel$|^epub_cover_image$|^epubCoverImage$|^epub_title_page$|^epubTitlePage$|^daemon_restart$|^daemonRestart$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^fig_responsive$|^figResponsive$|^cjkmainfont$|^cjkmainfont$|^font_paths$|^fontPaths$|^cjkoptions$|^cjkoptions$|^footnotes_hover$|^footnotesHover$|^links_as_notes$|^linksAsNotes$|^reference_location$|^referenceLocation$|^list_tables$|^listTables$|^split_level$|^splitLevel$|^input_file$|^inputFile$|^input_files$|^inputFiles$|^request_headers$|^requestHeaders$|^fail_if_warnings$|^failIfWarnings$|^dump_args$|^dumpArgs$|^ignore_args$|^ignoreArgs$|^file_scope$|^fileScope$|^data_dir$|^dataDir$|^log_file$|^logFile$|^track_changes$|^trackChanges$|^keep_source$|^keepSource$|^keep_hidden$|^keepHidden$|^prefer_html$|^preferHtml$|^output_divs$|^outputDivs$|^merge_includes$|^mergeIncludes$|^header_includes$|^headerIncludes$|^include_before$|^includeBefore$|^include_after$|^includeAfter$|^include_before_body$|^includeBeforeBody$|^include_after_body$|^includeAfterBody$|^include_in_header$|^includeInHeader$|^metadata_file$|^metadataFile$|^metadata_files$|^metadataFiles$|^latex_auto_mk$|^latexAutoMk$|^latex_auto_install$|^latexAutoInstall$|^latex_min_runs$|^latexMinRuns$|^latex_max_runs$|^latexMaxRuns$|^latex_clean$|^latexClean$|^latex_makeindex$|^latexMakeindex$|^latex_makeindex_opts$|^latexMakeindexOpts$|^latex_tlmgr_opts$|^latexTlmgrOpts$|^latex_output_dir$|^latexOutputDir$|^latex_tinytex$|^latexTinytex$|^latex_input_paths$|^latexInputPaths$|^brand_mode$|^brandMode$|^page_layout$|^pageLayout$|^page_width$|^pageWidth$|^appendix_style$|^appendixStyle$|^appendix_cite_as$|^appendixCiteAs$|^title_block_style$|^titleBlockStyle$|^title_block_banner$|^titleBlockBanner$|^title_block_banner_color$|^titleBlockBannerColor$|^title_block_categories$|^titleBlockCategories$|^max_width$|^maxWidth$|^margin_left$|^marginLeft$|^margin_right$|^marginRight$|^margin_top$|^marginTop$|^margin_bottom$|^marginBottom$|^block_headings$|^blockHeadings$|^revealjs_url$|^revealjsUrl$|^s5_url$|^s5Url$|^slidy_url$|^slidyUrl$|^slideous_url$|^slideousUrl$|^link_external_icon$|^linkExternalIcon$|^link_external_newwindow$|^linkExternalNewwindow$|^link_external_filter$|^linkExternalFilter$|^format_links$|^formatLinks$|^notebook_links$|^notebookLinks$|^other_links$|^otherLinks$|^code_links$|^codeLinks$|^notebook_subarticles$|^notebookSubarticles$|^notebook_view$|^notebookView$|^notebook_view_style$|^notebookViewStyle$|^notebook_preview_options$|^notebookPreviewOptions$|^canonical_url$|^canonicalUrl$|^title_meta$|^titleMeta$|^title_prefix$|^titlePrefix$|^description_meta$|^descriptionMeta$|^author_meta$|^authorMeta$|^date_meta$|^dateMeta$|^number_sections$|^numberSections$|^number_depth$|^numberDepth$|^number_offset$|^numberOffset$|^section_numbering$|^sectionNumbering$|^shift_heading_level_by$|^shiftHeadingLevelBy$|^page_numbering$|^pageNumbering$|^top_level_division$|^topLevelDivision$|^ojs_engine$|^ojsEngine$|^reference_doc$|^referenceDoc$|^body_classes$|^bodyClasses$|^document_css$|^documentCss$|^anchor_sections$|^anchorSections$|^smooth_scroll$|^smoothScroll$|^respect_user_color_scheme$|^respectUserColorScheme$|^html_math_method$|^htmlMathMethod$|^section_divs$|^sectionDivs$|^identifier_prefix$|^identifierPrefix$|^email_obfuscation$|^emailObfuscation$|^html_q_tags$|^htmlQTags$|^pdf_engine$|^pdfEngine$|^pdf_engine_opt$|^pdfEngineOpt$|^pdf_engine_opts$|^pdfEngineOpts$|^section_titles$|^sectionTitles$|^markdown_headings$|^markdownHeadings$|^ipynb_output$|^ipynbOutput$|^quarto_required$|^quartoRequired$|^preview_mode$|^previewMode$|^pdf_standard$|^pdfStandard$|^citations_hover$|^citationsHover$|^citation_location$|^citationLocation$|^cite_method$|^citeMethod$|^biblio_style$|^biblioStyle$|^biblio_title$|^biblioTitle$|^biblio_config$|^biblioConfig$|^citation_abbreviations$|^citationAbbreviations$|^link_citations$|^linkCitations$|^link_bibliography$|^linkBibliography$|^notes_after_punctuation$|^notesAfterPunctuation$|^output_file$|^outputFile$|^output_ext$|^outputExt$|^template_partials$|^templatePartials$|^embed_resources$|^embedResources$|^self_contained$|^selfContained$|^self_contained_math$|^selfContainedMath$|^keep_md$|^keepMd$|^keep_ipynb$|^keepIpynb$|^ipynb_filters$|^ipynbFilters$|^ipynb_shell_interactivity$|^ipynbShellInteractivity$|^plotly_connected$|^plotlyConnected$|^keep_typ$|^keepTyp$|^keep_tex$|^keepTex$|^extract_media$|^extractMedia$|^resource_path$|^resourcePath$|^default_image_extension$|^defaultImageExtension$|^html_table_processing$|^htmlTableProcessing$|^html_pre_tag_processing$|^htmlPreTagProcessing$|^css_property_processing$|^cssPropertyProcessing$|^use_rsvg_convert$|^useRsvgConvert$|^output_location$|^outputLocation$|^auto_stretch$|^autoStretch$|^min_scale$|^minScale$|^max_scale$|^maxScale$|^disable_layout$|^disableLayout$|^code_block_height$|^codeBlockHeight$|^preview_links$|^previewLinks$|^auto_play_media$|^autoPlayMedia$|^preload_iframes$|^preloadIframes$|^view_distance$|^viewDistance$|^mobile_view_distance$|^mobileViewDistance$|^parallax_background_image$|^parallaxBackgroundImage$|^parallax_background_size$|^parallaxBackgroundSize$|^parallax_background_horizontal$|^parallaxBackgroundHorizontal$|^parallax_background_vertical$|^parallaxBackgroundVertical$|^navigation_mode$|^navigationMode$|^mouse_wheel$|^mouseWheel$|^hide_inactive_cursor$|^hideInactiveCursor$|^hide_cursor_time$|^hideCursorTime$|^controls_layout$|^controlsLayout$|^controls_tutorial$|^controlsTutorial$|^controls_back_arrows$|^controlsBackArrows$|^auto_slide$|^autoSlide$|^auto_slide_stoppable$|^autoSlideStoppable$|^auto_slide_method$|^autoSlideMethod$|^default_timing$|^defaultTiming$|^hash_type$|^hashType$|^hash_one_based_index$|^hashOneBasedIndex$|^respond_to_hash_changes$|^respondToHashChanges$|^fragment_in_url$|^fragmentInUrl$|^slide_tone$|^slideTone$|^jump_to_slide$|^jumpToSlide$|^pdf_max_pages_per_slide$|^pdfMaxPagesPerSlide$|^pdf_separate_fragments$|^pdfSeparateFragments$|^pdf_page_height_offset$|^pdfPageHeightOffset$|^scroll_view$|^scrollView$|^transition_speed$|^transitionSpeed$|^background_transition$|^backgroundTransition$|^auto_animate$|^autoAnimate$|^auto_animate_easing$|^autoAnimateEasing$|^auto_animate_duration$|^autoAnimateDuration$|^auto_animate_unmatched$|^autoAnimateUnmatched$|^auto_animate_styles$|^autoAnimateStyles$|^slide_level$|^slideLevel$|^slide_number$|^slideNumber$|^show_slide_number$|^showSlideNumber$|^title_slide_attributes$|^titleSlideAttributes$|^title_slide_style$|^titleSlideStyle$|^center_title_slide$|^centerTitleSlide$|^show_notes$|^showNotes$|^df_print$|^dfPrint$|^tab_stop$|^tabStop$|^preserve_tabs$|^preserveTabs$|^strip_comments$|^stripComments$|^table_of_contents$|^tableOfContents$|^toc_indent$|^tocIndent$|^toc_depth$|^tocDepth$|^toc_location$|^tocLocation$|^toc_title$|^tocTitle$|^toc_expand$|^tocExpand$|^repo_actions$|^repoActions$|^image_height$|^imageHeight$|^image_width$|^imageWidth$|^image_alt$|^imageAlt$|^image_lazy_loading$|^imageLazyLoading$|^margin_geometry$|^marginGeometry$|^theorem_appearance$|^theoremAppearance$|^email_version$|^emailVersion$))","tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true}},{"_internalId":5618,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},{"_internalId":216686,"type":"ref","$ref":"quarto-dev-schema","description":""}],"description":"be all of: a Quarto YAML front matter object, an object, a front-matter-execute object, ref"}],"description":"be at least one of: the null value, all of: a Quarto YAML front matter object, an object, a front-matter-execute object, ref","$id":"front-matter"},"project-config-fields":{"_internalId":216782,"type":"object","description":"be an object","properties":{"project":{"_internalId":216754,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string"},"type":{"type":"string","description":"be a string","completions":["default","website","book","manuscript"],"tags":{"description":"Project type (`default`, `website`, `book`, or `manuscript`)"},"documentation":"Scripts to run as a post-render step"},"render":{"_internalId":216702,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"},"tags":{"description":"Files to render (defaults to all files)"},"documentation":"Array of paths used to detect the project type within a directory"},"execute-dir":{"_internalId":216705,"type":"enum","enum":["file","project"],"description":"be one of: `file`, `project`","completions":["file","project"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Working directory for computations","long":"Control the working directory for computations. \n\n- `file`: Use the directory of the file that is currently executing.\n- `project`: Use the root directory of the project.\n"}},"documentation":"Website configuration."},"output-dir":{"type":"string","description":"be a string","tags":{"description":"Output directory"},"documentation":"Book configuration."},"lib-dir":{"type":"string","description":"be a string","tags":{"description":"HTML library (JS/CSS/etc.) directory"},"documentation":"Book title"},"resources":{"_internalId":216717,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"The path to the favicon for this website"},{"_internalId":216716,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"Additional file resources to be copied to output directory"},"documentation":"The path to the favicon for this website"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"brand":{"_internalId":216722,"type":"ref","$ref":"brand-path-only-light-dark","description":"be brand-path-only-light-dark","tags":{"description":"Path to brand.yml or object with light and dark paths to brand.yml\n"},"documentation":"Base URL for published website"},"preview":{"_internalId":216727,"type":"ref","$ref":"project-preview","description":"be project-preview","tags":{"description":"Options for `quarto preview`"},"documentation":"Path to site (defaults to /). Not required if you\nspecify site-url."},"pre-render":{"_internalId":216735,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":216734,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a pre-render step"},"documentation":"Base URL for website source code repository"},"post-render":{"_internalId":216743,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":216742,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Scripts to run as a post-render step"},"documentation":"The value of the target attribute for repo links"},"detect":{"_internalId":216753,"type":"array","description":"be an array of values, where each element must be an array of values, where each element must be a string","items":{"_internalId":216752,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}},"completions":[],"tags":{"hidden":true,"description":"Array of paths used to detect the project type within a directory"},"documentation":"The value of the rel attribute for repo links"}},"patternProperties":{},"closed":true,"documentation":"Scripts to run as a pre-render step","tags":{"description":"Project configuration."}},"website":{"_internalId":216757,"type":"ref","$ref":"base-website","description":"be base-website","documentation":"Subdirectory of repository containing website","tags":{"description":"Website configuration."}},"book":{"_internalId":1729,"type":"object","description":"be an object","properties":{"title":{"type":"string","description":"be a string","tags":{"description":"Book title"},"documentation":"URL to use for the ‘report an issue’ repository action."},"description":{"type":"string","description":"be a string","tags":{"description":"Description metadata for HTML version of book"},"documentation":"Links to source repository actions"},"favicon":{"type":"string","description":"be a string","tags":{"description":"The path to the favicon for this website"},"documentation":"Links to source repository actions"},"site-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for published website"},"documentation":"Displays a ‘reader-mode’ tool which allows users to hide the sidebar\nand table of contents when viewing a page."},"site-path":{"type":"string","description":"be a string","tags":{"description":"Path to site (defaults to `/`). Not required if you specify `site-url`.\n"},"documentation":"Generate llms.txt and .llms.md files for LLM-friendly content\nconsumption."},"repo-url":{"type":"string","description":"be a string","tags":{"description":"Base URL for website source code repository"},"documentation":"Enable Google Analytics for this website"},"repo-link-target":{"type":"string","description":"be a string","tags":{"description":"The value of the target attribute for repo links"},"documentation":"The Google tracking Id or measurement Id of this website."},"repo-link-rel":{"type":"string","description":"be a string","tags":{"description":"The value of the rel attribute for repo links"},"documentation":"Storage options for Google Analytics data"},"repo-subdir":{"type":"string","description":"be a string","tags":{"description":"Subdirectory of repository containing website"},"documentation":"Anonymize the user ip address."},"repo-branch":{"type":"string","description":"be a string","tags":{"description":"Branch of website source code (defaults to `main`)"},"documentation":"The version number of Google Analytics to use."},"issue-url":{"type":"string","description":"be a string","tags":{"description":"URL to use for the 'report an issue' repository action."},"documentation":"Enable Plausible Analytics for this website by providing a script\nsnippet or path to snippet file"},"repo-actions":{"_internalId":534,"type":"anyOf","anyOf":[{"_internalId":532,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Provides an announcement displayed at the top of the page."},{"_internalId":533,"type":"array","description":"be an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","items":{"_internalId":532,"type":"enum","enum":["none","edit","source","issue"],"description":"be one of: `none`, `edit`, `source`, `issue`","completions":["none","edit","source","issue"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Links to source repository actions","long":"Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"}},"documentation":"Provides an announcement displayed at the top of the page."}}],"description":"be at least one of: one of: `none`, `edit`, `source`, `issue`, an array of values, where each element must be one of: `none`, `edit`, `source`, `issue`","tags":{"complete-from":["anyOf",0]}},"reader-mode":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Displays a 'reader-mode' tool which allows users to hide the sidebar and table of contents when viewing a page.\n"},"documentation":"The content of the announcement. Supports markdown formatting."},"llms-txt":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Generate llms.txt and .llms.md files for LLM-friendly content consumption.\n"},"documentation":"Whether this announcement may be dismissed by the user."},"google-analytics":{"_internalId":560,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":559,"type":"object","description":"be an object","properties":{"tracking-id":{"type":"string","description":"be a string","tags":{"description":"The Google tracking Id or measurement Id of this website."},"documentation":"The position of the announcement."},"storage":{"_internalId":551,"type":"enum","enum":["cookies","none"],"description":"be one of: `cookies`, `none`","completions":["cookies","none"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Storage options for Google Analytics data","long":"Storage option for Google Analytics data using on of these two values:\n\n`cookies`: Use cookies to store unique user and session identification (default).\n\n`none`: Do not use cookies to store unique user and session identification.\n\nFor more about choosing storage options see [Storage](https://quarto.org/docs/websites/website-tools.html#storage).\n"}},"documentation":"The type of announcement. Affects the appearance of the\nannouncement."},"anonymize-ip":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":{"short":"Anonymize the user ip address.","long":"Anonymize the user ip address. For more about this feature, see \n[IP Anonymization (or IP masking) in Google Analytics](https://support.google.com/analytics/answer/2763052?hl=en).\n"}},"documentation":"Request cookie consent before enabling scripts that set cookies"},"version":{"_internalId":558,"type":"enum","enum":[3,4],"description":"be one of: `3`, `4`","completions":["3","4"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The version number of Google Analytics to use.","long":"The version number of Google Analytics to use. \n\n- `3`: Use analytics.js\n- `4`: use gtag. \n\nThis is automatically detected based upon the `tracking-id`, but you may specify it.\n"}},"documentation":"The type of consent that should be requested"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention tracking-id,storage,anonymize-ip,version","type":"string","pattern":"(?!(^tracking_id$|^trackingId$|^anonymize_ip$|^anonymizeIp$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: a string, an object","tags":{"description":"Enable Google Analytics for this website"},"documentation":"The icon to display in the announcement"},"plausible-analytics":{"_internalId":570,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":569,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string","tags":{"description":"Path to a file containing the Plausible Analytics script snippet"},"documentation":"Whether to use a dark or light appearance for the consent banner\n(light or dark)."}},"patternProperties":{},"required":["path"],"closed":true}],"description":"be at least one of: a string, an object","tags":{"description":{"short":"Enable Plausible Analytics for this website by providing a script snippet or path to snippet file","long":"Enable Plausible Analytics for this website by pasting the script snippet from your Plausible dashboard,\nor by providing a path to a file containing the snippet.\n\nPlausible is a privacy-friendly, GDPR-compliant web analytics service that does not use cookies and does not require cookie consent.\n\n**Option 1: Inline snippet**\n\n```yaml\nwebsite:\n plausible-analytics: |\n \n```\n\n**Option 2: File path**\n\n```yaml\nwebsite:\n plausible-analytics:\n path: _plausible_snippet.html\n```\n\nTo get your script snippet:\n\n1. Log into your Plausible account at \n2. Go to your site settings\n3. Copy the JavaScript snippet provided\n4. Either paste it directly in your configuration or save it to a file\n\nFor more information, see \n"}},"documentation":"The style of the consent banner that is displayed"},"announcement":{"_internalId":600,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":599,"type":"object","description":"be an object","properties":{"content":{"type":"string","description":"be a string","tags":{"description":"The content of the announcement. Supports markdown formatting."},"documentation":"The language to be used when diplaying the cookie consent prompt\n(defaults to document language)."},"dismissable":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether this announcement may be dismissed by the user."},"documentation":"The text to display for the cookie preferences link in the website\nfooter."},"icon":{"type":"string","description":"be a string","tags":{"description":{"short":"The icon to display in the announcement","long":"Name of bootstrap icon (e.g. `github`, `twitter`, `share`) for the announcement.\nSee for a list of available icons\n"}},"documentation":"Provide full text search for website"},"position":{"_internalId":593,"type":"enum","enum":["above-navbar","below-navbar"],"description":"be one of: `above-navbar`, `below-navbar`","completions":["above-navbar","below-navbar"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The position of the announcement.","long":"The position of the announcement. One of `above-navbar` (default) or `below-navbar`.\n"}},"documentation":"Location for search widget (navbar or\nsidebar)"},"type":{"_internalId":598,"type":"enum","enum":["primary","secondary","success","danger","warning","info","light","dark"],"description":"be one of: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`","completions":["primary","secondary","success","danger","warning","info","light","dark"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of announcement. Affects the appearance of the announcement.","long":"The type of announcement. One of `primary`, `secondary`, `success`, `danger`, `warning`,\n `info`, `light` or `dark`. Affects the appearance of the announcement.\n"}},"documentation":"Type of search UI (overlay or textbox)"}},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Provides an announcement displayed at the top of the page."},"documentation":"The url to the website’s cookie or privacy policy."},"cookie-consent":{"_internalId":632,"type":"anyOf","anyOf":[{"_internalId":605,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":631,"type":"object","description":"be an object","properties":{"type":{"_internalId":612,"type":"enum","enum":["express","implied"],"description":"be one of: `express`, `implied`","completions":["express","implied"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The type of consent that should be requested","long":"The type of consent that should be requested, using one of these two values:\n\n- `express` (default): This will block cookies until the user expressly agrees to allow them (or continue blocking them if the user doesn’t agree).\n\n- `implied`: This will notify the user that the site uses cookies and permit them to change preferences, but not block cookies unless the user changes their preferences.\n"}},"documentation":"Matches after which to collapse additional results"},"style":{"_internalId":615,"type":"enum","enum":["simple","headline","interstitial","standalone"],"description":"be one of: `simple`, `headline`, `interstitial`, `standalone`","completions":["simple","headline","interstitial","standalone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"The style of the consent banner that is displayed","long":"The style of the consent banner that is displayed:\n\n- `simple` (default): A simple dialog in the lower right corner of the website.\n\n- `headline`: A full width banner across the top of the website.\n\n- `interstitial`: An semi-transparent overlay of the entire website.\n\n- `standalone`: An opaque overlay of the entire website.\n"}},"documentation":"Provide button for copying search link"},"palette":{"_internalId":618,"type":"enum","enum":["light","dark"],"description":"be one of: `light`, `dark`","completions":["light","dark"],"exhaustiveCompletions":true,"tags":{"description":"Whether to use a dark or light appearance for the consent banner (`light` or `dark`)."},"documentation":"When false, do not merge navbar crumbs into the crumbs in\nsearch.json."},"policy-url":{"type":"string","description":"be a string","tags":{"description":"The url to the website’s cookie or privacy policy."},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language to be used when diplaying the cookie consent prompt (defaults to document language).","long":"The language to be used when diplaying the cookie consent prompt specified using an IETF language tag.\n\nIf not specified, the document language will be used.\n"}},"documentation":"One or more keys that will act as a shortcut to launch search (single\ncharacters)"},"prefs-text":{"type":"string","description":"be a string","tags":{"description":{"short":"The text to display for the cookie preferences link in the website footer."}},"documentation":"Whether to include search result parents when displaying items in\nsearch results (when possible)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention type,style,palette,policy-url,language,prefs-text","type":"string","pattern":"(?!(^policy_url$|^policyUrl$|^prefs_text$|^prefsText$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: one of: `express`, `implied`, `true` or `false`, an object","tags":{"description":{"short":"Request cookie consent before enabling scripts that set cookies","long":"Quarto includes the ability to request cookie consent before enabling scripts that set cookies, using [Cookie Consent](https://www.cookieconsent.com/).\n\nThe user’s cookie preferences will automatically control Google Analytics (if enabled) and can be used to control custom scripts you add as well. For more information see [Custom Scripts and Cookie Consent](https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent).\n"}},"documentation":"Number of matches to display (defaults to 20)"},"search":{"_internalId":719,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":718,"type":"object","description":"be an object","properties":{"location":{"_internalId":641,"type":"enum","enum":["navbar","sidebar"],"description":"be one of: `navbar`, `sidebar`","completions":["navbar","sidebar"],"exhaustiveCompletions":true,"tags":{"description":"Location for search widget (`navbar` or `sidebar`)"},"documentation":"The name of the index to use when performing a search"},"type":{"_internalId":644,"type":"enum","enum":["overlay","textbox"],"description":"be one of: `overlay`, `textbox`","completions":["overlay","textbox"],"exhaustiveCompletions":true,"tags":{"description":"Type of search UI (`overlay` or `textbox`)"},"documentation":"The unique ID used by Algolia to identify your application"},"limit":{"type":"number","description":"be a number","tags":{"description":"Number of matches to display (defaults to 20)"},"documentation":"The Search-Only API key to use to connect to Algolia"},"collapse-after":{"type":"number","description":"be a number","tags":{"description":"Matches after which to collapse additional results"},"documentation":"Enable tracking of Algolia analytics events"},"copy-button":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide button for copying search link"},"documentation":"Enable the display of the Algolia logo in the search results\nfooter."},"merge-navbar-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When false, do not merge navbar crumbs into the crumbs in `search.json`."},"documentation":"Field that contains the URL of index entries"},"keyboard-shortcut":{"_internalId":666,"type":"anyOf","anyOf":[{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Field that contains the text of index entries"},{"_internalId":665,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string","tags":{"description":"One or more keys that will act as a shortcut to launch search (single characters)"},"documentation":"Field that contains the text of index entries"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0]}},"show-item-context":{"_internalId":676,"type":"anyOf","anyOf":[{"_internalId":673,"type":"enum","enum":["tree","parent","root"],"description":"be one of: `tree`, `parent`, `root`","completions":["tree","parent","root"],"exhaustiveCompletions":true},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: one of: `tree`, `parent`, `root`, `true` or `false`","tags":{"description":"Whether to include search result parents when displaying items in search results (when possible)."},"documentation":"Field that contains the section of index entries"},"algolia":{"_internalId":717,"type":"object","description":"be an object","properties":{"index-name":{"type":"string","description":"be a string","tags":{"description":"The name of the index to use when performing a search"},"documentation":"Top navigation options"},"application-id":{"type":"string","description":"be a string","tags":{"description":"The unique ID used by Algolia to identify your application"},"documentation":"The navbar title. Uses the project title if none is specified.\nSupports markdown formatting."},"search-only-api-key":{"type":"string","description":"be a string","tags":{"description":"The Search-Only API key to use to connect to Algolia"},"documentation":"Specification of image that will be displayed to the left of the\ntitle."},"analytics-events":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable tracking of Algolia analytics events"},"documentation":"Alternate text for the logo image."},"show-logo":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Enable the display of the Algolia logo in the search results footer."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"index-fields":{"_internalId":713,"type":"object","description":"be an object","properties":{"href":{"type":"string","description":"be a string","tags":{"description":"Field that contains the URL of index entries"},"documentation":"The navbar’s background color (named or hex color)."},"title":{"type":"string","description":"be a string","tags":{"description":"Field that contains the title of index entries"},"documentation":"The navbar’s foreground color (named or hex color)."},"text":{"type":"string","description":"be a string","tags":{"description":"Field that contains the text of index entries"},"documentation":"Include a search box in the navbar."},"section":{"type":"string","description":"be a string","tags":{"description":"Field that contains the section of index entries"},"documentation":"Always show the navbar (keeping it pinned)."}},"patternProperties":{},"closed":true},"params":{"_internalId":716,"type":"object","description":"be an object","properties":{},"patternProperties":{},"tags":{"description":"Additional parameters to pass when executing a search"},"documentation":"Collapse the navbar into a menu when the display becomes narrow."}},"patternProperties":{},"closed":true,"tags":{"description":"Use external Algolia search index"},"documentation":"Additional parameters to pass when executing a search"}},"patternProperties":{},"closed":true}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Provide full text search for website"},"documentation":"Use external Algolia search index"},"navbar":{"_internalId":773,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":772,"type":"object","description":"be an object","properties":{"title":{"_internalId":732,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The navbar title. Uses the project title if none is specified. Supports markdown formatting."},"documentation":"List of items for the left side of the navbar."},"logo":{"_internalId":735,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed to the left of the title."},"documentation":"List of items for the right side of the navbar."},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The position of the collapsed navbar toggle when in responsive\nmode"},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"Collapse tools into the navbar menu when the display becomes\nnarrow."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's background color (named or hex color)."},"documentation":"Side navigation options"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The navbar's foreground color (named or hex color)."},"documentation":"The identifier for this sidebar."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search box in the navbar."},"documentation":"The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting."},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Always show the navbar (keeping it pinned)."},"documentation":"Specification of image that will be displayed in the sidebar."},"collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse the navbar into a menu when the display becomes narrow."},"documentation":"Alternate text for the logo image."},"collapse-below":{"_internalId":752,"type":"enum","enum":["sm","md","lg","xl","xxl"],"description":"be one of: `sm`, `md`, `lg`, `xl`, `xxl`","completions":["sm","md","lg","xl","xxl"],"exhaustiveCompletions":true,"tags":{"description":"The responsive breakpoint below which the navbar will collapse into a menu (`sm`, `md`, `lg` (default), `xl`, `xxl`)."},"documentation":"Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html)."},"left":{"_internalId":758,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":757,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the left side of the navbar."},"documentation":"Include a search control in the sidebar."},"right":{"_internalId":764,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":763,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"List of items for the right side of the navbar."},"documentation":"List of sidebar tools"},"toggle-position":{"_internalId":769,"type":"enum","enum":["left","right"],"description":"be one of: `left`, `right`","completions":["left","right"],"exhaustiveCompletions":true,"tags":{"description":"The position of the collapsed navbar toggle when in responsive mode"},"documentation":"List of items for the sidebar"},"tools-collapse":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Collapse tools into the navbar menu when the display becomes narrow."},"documentation":"The style of sidebar (docked or\nfloating)."}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention title,logo,logo-alt,logo-href,background,foreground,search,pinned,collapse,collapse-below,left,right,toggle-position,tools-collapse","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_below$|^collapseBelow$|^toggle_position$|^togglePosition$|^tools_collapse$|^toolsCollapse$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}],"description":"be at least one of: `true` or `false`, an object","tags":{"description":"Top navigation options"},"documentation":"The responsive breakpoint below which the navbar will collapse into a\nmenu (sm, md, lg (default),\nxl, xxl)."},"sidebar":{"_internalId":844,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":843,"type":"anyOf","anyOf":[{"_internalId":841,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar’s foreground color (named or hex color)."},"title":{"_internalId":790,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified. Supports markdown formatting."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"logo":{"_internalId":793,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Markdown to place above sidebar content (text or file path)"},"tools":{"_internalId":805,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":804,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"Markdown to place below sidebar content (text or file path)"},"contents":{"_internalId":808,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"style":{"_internalId":811,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to insert below each page’s body."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place above margin content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to place below margin content (text or file path)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Provide next and previous article links in footer"},"alignment":{"_internalId":824,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Provide a ‘back to top’ navigation button"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Shared page footer"},"header":{"_internalId":834,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":833,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"footer":{"_internalId":840,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":839,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},{"_internalId":842,"type":"array","description":"be an array of values, where each element must be an object","items":{"_internalId":841,"type":"object","description":"be an object","properties":{"id":{"type":"string","description":"be a string","tags":{"description":"The identifier for this sidebar."},"documentation":"The sidebar’s foreground color (named or hex color)."},"title":{"_internalId":790,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}],"description":"be at least one of: a string, `true` or `false`","tags":{"description":"The sidebar title. Uses the project title if none is specified. Supports markdown formatting."},"documentation":"Whether to show a border on the sidebar (defaults to true for\n‘docked’ sidebars)"},"logo":{"_internalId":793,"type":"ref","$ref":"logo-light-dark-specifier","description":"be logo-light-dark-specifier","tags":{"description":"Specification of image that will be displayed in the sidebar."},"documentation":"Alignment of the items within the sidebar (left,\nright, or center)"},"logo-alt":{"type":"string","description":"be a string","tags":{"description":"Alternate text for the logo image."},"documentation":"The depth at which the sidebar contents should be collapsed by\ndefault."},"logo-href":{"type":"string","description":"be a string","tags":{"description":"Target href from navbar logo / title. By default, the logo and title link to the root page of the site (/index.html)."},"documentation":"When collapsed, pin the collapsed sidebar to the top of the page."},"search":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Include a search control in the sidebar."},"documentation":"Markdown to place above sidebar content (text or file path)"},"tools":{"_internalId":805,"type":"array","description":"be an array of values, where each element must be navigation-item-object","items":{"_internalId":804,"type":"ref","$ref":"navigation-item-object","description":"be navigation-item-object"},"tags":{"description":"List of sidebar tools"},"documentation":"Markdown to place below sidebar content (text or file path)"},"contents":{"_internalId":808,"type":"ref","$ref":"sidebar-contents","description":"be sidebar-contents","tags":{"description":"List of items for the sidebar"},"documentation":"Markdown to insert at the beginning of each page’s body (below the\ntitle and author block)."},"style":{"_internalId":811,"type":"enum","enum":["docked","floating"],"description":"be one of: `docked`, `floating`","completions":["docked","floating"],"exhaustiveCompletions":true,"tags":{"description":"The style of sidebar (`docked` or `floating`)."},"documentation":"Markdown to insert below each page’s body."},"background":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's background color (named or hex color)."},"documentation":"Markdown to place above margin content (text or file path)"},"foreground":{"type":"string","description":"be a string","completions":["primary","secondary","success","danger","warning","info","light","dark"],"tags":{"description":"The sidebar's foreground color (named or hex color)."},"documentation":"Markdown to place below margin content (text or file path)"},"border":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show a border on the sidebar (defaults to true for 'docked' sidebars)"},"documentation":"Provide next and previous article links in footer"},"alignment":{"_internalId":824,"type":"enum","enum":["left","right","center"],"description":"be one of: `left`, `right`, `center`","completions":["left","right","center"],"exhaustiveCompletions":true,"tags":{"description":"Alignment of the items within the sidebar (`left`, `right`, or `center`)"},"documentation":"Provide a ‘back to top’ navigation button"},"collapse-level":{"type":"number","description":"be a number","tags":{"description":"The depth at which the sidebar contents should be collapsed by default."},"documentation":"Whether to show navigation breadcrumbs for pages more than 1 level\ndeep"},"pinned":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"When collapsed, pin the collapsed sidebar to the top of the page."},"documentation":"Shared page footer"},"header":{"_internalId":834,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":833,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above sidebar content (text or file path)"},"documentation":"Default site thumbnail image for twitter\n/open-graph"},"footer":{"_internalId":840,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":839,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below sidebar content (text or file path)"},"documentation":"Default site thumbnail image alt text for twitter\n/open-graph"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention id,title,logo,logo-alt,logo-href,search,tools,contents,style,background,foreground,border,alignment,collapse-level,pinned,header,footer","type":"string","pattern":"(?!(^logo_alt$|^logoAlt$|^logo_href$|^logoHref$|^collapse_level$|^collapseLevel$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}}}],"description":"be at least one of: an object, an array of values, where each element must be an object","tags":{"complete-from":["anyOf",0]}}],"description":"be at least one of: `true` or `false`, at least one of: an object, an array of values, where each element must be an object","tags":{"description":"Side navigation options"},"documentation":"The sidebar’s background color (named or hex color)."},"body-header":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert at the beginning of each page’s body (below the title and author block)."},"documentation":"Publish open graph metadata"},"body-footer":{"type":"string","description":"be a string","tags":{"description":"Markdown to insert below each page’s body."},"documentation":"Publish twitter card metadata"},"margin-header":{"_internalId":854,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":853,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place above margin content (text or file path)"},"documentation":"A list of other links to appear below the TOC."},"margin-footer":{"_internalId":860,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":859,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"Markdown to place below margin content (text or file path)"},"documentation":"A list of code links to appear with this document."},"page-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide next and previous article links in footer"},"documentation":"A list of input documents that should be treated as drafts"},"back-to-top-navigation":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Provide a 'back to top' navigation button"},"documentation":"How to handle drafts that are encountered."},"bread-crumbs":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true,"tags":{"description":"Whether to show navigation breadcrumbs for pages more than 1 level deep"},"documentation":"Book subtitle"},"page-footer":{"_internalId":874,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":873,"type":"ref","$ref":"page-footer","description":"be page-footer"}],"description":"be at least one of: a string, page-footer","tags":{"description":"Shared page footer"},"documentation":"Author or authors of the book"},"image":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image for `twitter` /`open-graph`\n"},"documentation":"Author or authors of the book"},"image-alt":{"type":"string","description":"be a string","tags":{"description":"Default site thumbnail image alt text for `twitter` /`open-graph`\n"},"documentation":"Book publication date"},"comments":{"_internalId":883,"type":"ref","$ref":"document-comments-configuration","description":"be document-comments-configuration"},"open-graph":{"_internalId":891,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":890,"type":"ref","$ref":"open-graph-config","description":"be open-graph-config"}],"description":"be at least one of: `true` or `false`, open-graph-config","tags":{"description":"Publish open graph metadata"},"documentation":"Format string for dates in the book"},"twitter-card":{"_internalId":899,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":898,"type":"ref","$ref":"twitter-card-config","description":"be twitter-card-config"}],"description":"be at least one of: `true` or `false`, twitter-card-config","tags":{"description":"Publish twitter card metadata"},"documentation":"Book abstract"},"other-links":{"_internalId":904,"type":"ref","$ref":"other-links","description":"be other-links","tags":{"formats":["$html-doc"],"description":"A list of other links to appear below the TOC."},"documentation":"Book part and chapter files"},"code-links":{"_internalId":914,"type":"anyOf","anyOf":[{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},{"_internalId":913,"type":"ref","$ref":"code-links-schema","description":"be code-links-schema"}],"description":"be at least one of: `true` or `false`, code-links-schema","tags":{"formats":["$html-doc"],"description":"A list of code links to appear with this document."},"documentation":"Book appendix files"},"drafts":{"_internalId":922,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":921,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string","tags":{"complete-from":["anyOf",0],"description":"A list of input documents that should be treated as drafts"},"documentation":"Book references file"},"draft-mode":{"_internalId":927,"type":"enum","enum":["visible","unlinked","gone"],"description":"be one of: `visible`, `unlinked`, `gone`","completions":["visible","unlinked","gone"],"exhaustiveCompletions":true,"tags":{"description":{"short":"How to handle drafts that are encountered.","long":"How to handle drafts that are encountered.\n\n`visible` - the draft will visible and fully available\n`unlinked` - the draft will be rendered, but will not appear in navigation, search, or listings.\n`gone` - the draft will have no content and will not be linked to (default).\n"}},"documentation":"Base name for single-file output (e.g. PDF, ePub, docx)"},"subtitle":{"type":"string","description":"be a string","tags":{"description":"Book subtitle"},"documentation":"Cover image (used in HTML and ePub formats)"},"author":{"_internalId":947,"type":"anyOf","anyOf":[{"_internalId":945,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":943,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},{"_internalId":946,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":945,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":943,"type":"object","description":"be an object","properties":{},"patternProperties":{}}],"description":"be at least one of: a string, an object","tags":{"description":"Author or authors of the book"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object","tags":{"complete-from":["anyOf",0]}},"date":{"type":"string","description":"be a string","tags":{"description":"Book publication date"},"documentation":"Sharing buttons to include on navbar or sidebar (one or more of\ntwitter, facebook, linkedin)"},"date-format":{"type":"string","description":"be a string","tags":{"description":"Format string for dates in the book"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},"abstract":{"type":"string","description":"be a string","tags":{"description":"Book abstract"},"documentation":"Download buttons for other formats to include on navbar or sidebar\n(one or more of pdf, epub, and\ndocx)"},"chapters":{"_internalId":960,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book part and chapter files"},"documentation":"Custom tools for navbar or sidebar"},"appendices":{"_internalId":965,"type":"ref","$ref":"chapter-list","description":"be chapter-list","completions":[],"tags":{"hidden":true,"description":"Book appendix files"},"documentation":"The Digital Object Identifier for this book."},"references":{"type":"string","description":"be a string","tags":{"description":"Book references file"},"documentation":"A url to the abstract for this item."},"output-file":{"type":"string","description":"be a string","tags":{"description":"Base name for single-file output (e.g. PDF, ePub, docx)"},"documentation":"Date the item has been accessed."},"cover-image":{"type":"string","description":"be a string","tags":{"description":"Cover image (used in HTML and ePub formats)"},"documentation":"Short markup, decoration, or annotation to the item (e.g., to\nindicate items included in a review)."},"cover-image-alt":{"type":"string","description":"be a string","tags":{"description":"Alternative text for cover image (used in HTML format)"},"documentation":"Archive storing the item"},"sharing":{"_internalId":980,"type":"anyOf","anyOf":[{"_internalId":978,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."},{"_internalId":979,"type":"array","description":"be an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","items":{"_internalId":978,"type":"enum","enum":["twitter","facebook","linkedin"],"description":"be one of: `twitter`, `facebook`, `linkedin`","completions":["twitter","facebook","linkedin"],"exhaustiveCompletions":true,"tags":{"description":"Sharing buttons to include on navbar or sidebar\n(one or more of `twitter`, `facebook`, `linkedin`)\n"},"documentation":"Storage location within an archive (e.g. a box and folder\nnumber)."}}],"description":"be at least one of: one of: `twitter`, `facebook`, `linkedin`, an array of values, where each element must be one of: `twitter`, `facebook`, `linkedin`","tags":{"complete-from":["anyOf",0]}},"downloads":{"_internalId":987,"type":"anyOf","anyOf":[{"_internalId":985,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."},{"_internalId":986,"type":"array","description":"be an array of values, where each element must be one of: `pdf`, `epub`, `docx`","items":{"_internalId":985,"type":"enum","enum":["pdf","epub","docx"],"description":"be one of: `pdf`, `epub`, `docx`","completions":["pdf","epub","docx"],"exhaustiveCompletions":true,"tags":{"description":"Download buttons for other formats to include on navbar or sidebar\n(one or more of `pdf`, `epub`, and `docx`)\n"},"documentation":"Issuing or judicial authority (e.g. “USPTO” for a patent, “Fairfax\nCircuit Court” for a legal case)."}}],"description":"be at least one of: one of: `pdf`, `epub`, `docx`, an array of values, where each element must be one of: `pdf`, `epub`, `docx`","tags":{"complete-from":["anyOf",0]}},"tools":{"_internalId":993,"type":"array","description":"be an array of values, where each element must be navigation-item","items":{"_internalId":992,"type":"ref","$ref":"navigation-item","description":"be navigation-item"},"tags":{"description":"Custom tools for navbar or sidebar"},"documentation":"Date the item was initially available"},"doi":{"type":"string","description":"be a string","tags":{"formats":["$html-doc"],"description":"The Digital Object Identifier for this book."},"documentation":"Call number (to locate the item in a library)."},"abstract-url":{"type":"string","description":"be a string","tags":{"description":"A url to the abstract for this item."},"documentation":"The person leading the session containing a presentation (e.g. the\norganizer of the container-title of a\nspeech)."},"accessed":{"_internalId":1438,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item has been accessed."},"documentation":"Chapter number (e.g. chapter number in a book; track number on an\nalbum)."},"annote":{"type":"string","description":"be a string","tags":{"description":{"short":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review).","long":"Short markup, decoration, or annotation to the item (e.g., to indicate items included in a review);\n\nFor descriptive text (e.g., in an annotated bibliography), use `note` instead\n"}},"documentation":"Identifier of the item in the input data file (analogous to BiTeX\nentrykey)."},"archive":{"type":"string","description":"be a string","tags":{"description":"Archive storing the item"},"documentation":"Label identifying the item in in-text citations of label styles\n(e.g. “Ferr78”)."},"archive-collection":{"type":"string","description":"be a string","tags":{"description":"Collection the item is part of within an archive."},"documentation":"Index (starting at 1) of the cited reference in the bibliography\n(generated by the CSL processor)."},"archive_collection":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-location":{"type":"string","description":"be a string","tags":{"description":"Storage location within an archive (e.g. a box and folder number)."},"documentation":"Editor of the collection holding the item (e.g. the series editor for\na book)."},"archive_location":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"archive-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the archive."},"documentation":"Number identifying the collection holding the item (e.g. the series\nnumber for a book)"},"authority":{"type":"string","description":"be a string","tags":{"description":"Issuing or judicial authority (e.g. \"USPTO\" for a patent, \"Fairfax Circuit Court\" for a legal case)."},"documentation":"Title of the collection holding the item (e.g. the series title for a\nbook; the lecture series title for a presentation)."},"available-date":{"_internalId":1461,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":{"short":"Date the item was initially available","long":"Date the item was initially available (e.g. the online publication date of a journal \narticle before its formal publication date; the date a treaty was made available for signing).\n"}},"documentation":"Person compiling or selecting material for an item from the works of\nvarious persons or bodies (e.g. for an anthology)."},"call-number":{"type":"string","description":"be a string","tags":{"description":"Call number (to locate the item in a library)."},"documentation":"Composer (e.g. of a musical score)."},"chair":{"_internalId":1466,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The person leading the session containing a presentation (e.g. the organizer of the `container-title` of a `speech`)."},"documentation":"Author of the container holding the item (e.g. the book author for a\nbook chapter)."},"chapter-number":{"_internalId":1469,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Chapter number (e.g. chapter number in a book; track number on an album)."},"documentation":"Title of the container holding the item."},"citation-key":{"type":"string","description":"be a string","tags":{"description":{"short":"Identifier of the item in the input data file (analogous to BiTeX entrykey).","long":"Identifier of the item in the input data file (analogous to BiTeX entrykey);\n\nUse this variable to facilitate conversion between word-processor and plain-text writing systems;\nFor an identifer intended as formatted output label for a citation \n(e.g. “Ferr78”), use `citation-label` instead\n"}},"documentation":"Short/abbreviated form of container-title;"},"citation-label":{"type":"string","description":"be a string","tags":{"description":{"short":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\").","long":"Label identifying the item in in-text citations of label styles (e.g. \"Ferr78\");\n\nMay be assigned by the CSL processor based on item metadata; For the identifier of the item \nin the input data file, use `citation-key` instead\n"}},"documentation":"A minor contributor to the item; typically cited using “with” before\nthe name when listed in a bibliography."},"citation-number":{"_internalId":1478,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Index (starting at 1) of the cited reference in the bibliography (generated by the CSL processor).","hidden":true},"documentation":"Curator of an exhibit or collection (e.g. in a museum).","completions":[]},"collection-editor":{"_internalId":1481,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Editor of the collection holding the item (e.g. the series editor for a book)."},"documentation":"Physical (e.g. size) or temporal (e.g. running time) dimensions of\nthe item."},"collection-number":{"_internalId":1484,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the collection holding the item (e.g. the series number for a book)"},"documentation":"Director (e.g. of a film)."},"collection-title":{"type":"string","description":"be a string","tags":{"description":"Title of the collection holding the item (e.g. the series title for a book; the lecture series title for a presentation)."},"documentation":"Minor subdivision of a court with a jurisdiction for a\nlegal item"},"compiler":{"_internalId":1489,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Person compiling or selecting material for an item from the works of various persons or bodies (e.g. for an anthology)."},"documentation":"(Container) edition holding the item (e.g. “3” when citing a chapter\nin the third edition of a book)."},"composer":{"_internalId":1492,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Composer (e.g. of a musical score)."},"documentation":"The editor of the item."},"container-author":{"_internalId":1495,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the container holding the item (e.g. the book author for a book chapter)."},"documentation":"Managing editor (“Directeur de la Publication” in French)."},"container-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the container holding the item.","long":"Title of the container holding the item (e.g. the book title for a book chapter, \nthe journal title for a journal article; the album title for a recording; \nthe session title for multi-part presentation at a conference)\n"}},"documentation":"Combined editor and translator of a work."},"container-title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of container-title;","hidden":true},"documentation":"Date the event related to an item took place.","completions":[]},"contributor":{"_internalId":1502,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"A minor contributor to the item; typically cited using “with” before the name when listed in a bibliography."},"documentation":"Name of the event related to the item (e.g. the conference name when\nciting a conference paper; the meeting where presentation was made)."},"curator":{"_internalId":1505,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Curator of an exhibit or collection (e.g. in a museum)."},"documentation":"Geographic location of the event related to the item\n(e.g. “Amsterdam, The Netherlands”)."},"dimensions":{"type":"string","description":"be a string","tags":{"description":"Physical (e.g. size) or temporal (e.g. running time) dimensions of the item."},"documentation":"Executive producer of the item (e.g. of a television series)."},"director":{"_internalId":1510,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Director (e.g. of a film)."},"documentation":"Number of a preceding note containing the first reference to the\nitem."},"division":{"type":"string","description":"be a string","tags":{"description":"Minor subdivision of a court with a `jurisdiction` for a legal item"},"documentation":"A url to the full text for this item."},"DOI":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"edition":{"_internalId":1519,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"(Container) edition holding the item (e.g. \"3\" when citing a chapter in the third edition of a book)."},"documentation":"Type, class, or subtype of the item"},"editor":{"_internalId":1522,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"The editor of the item."},"documentation":"Guest (e.g. on a TV show or podcast)."},"editorial-director":{"_internalId":1525,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Managing editor (\"Directeur de la Publication\" in French)."},"documentation":"Host of the item (e.g. of a TV show or podcast)."},"editor-translator":{"_internalId":1528,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"Combined editor and translator of a work.","long":"Combined editor and translator of a work.\n\nThe citation processory must be automatically generate if editor and translator variables \nare identical; May also be provided directly in item data.\n"}},"documentation":"A value which uniquely identifies this item."},"event":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"event-date":{"_internalId":1535,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the event related to an item took place."},"documentation":"Illustrator (e.g. of a children’s book or graphic novel)."},"event-title":{"type":"string","description":"be a string","tags":{"description":"Name of the event related to the item (e.g. the conference name when citing a conference paper; the meeting where presentation was made)."},"documentation":"Interviewer (e.g. of an interview)."},"event-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the event related to the item (e.g. \"Amsterdam, The Netherlands\")."},"documentation":"International Standard Book Number (e.g. “978-3-8474-1017-1”)."},"executive-producer":{"_internalId":1542,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Executive producer of the item (e.g. of a television series)."},"documentation":"International Standard Serial Number."},"first-reference-note-number":{"_internalId":1547,"type":"ref","$ref":"csl-number","description":"be csl-number","completions":[],"tags":{"hidden":true,"description":{"short":"Number of a preceding note containing the first reference to the item.","long":"Number of a preceding note containing the first reference to the item\n\nAssigned by the CSL processor; Empty in non-note-based styles or when the item hasn't \nbeen cited in any preceding notes in a document\n"}},"documentation":"Issue number of the item or container holding the item"},"fulltext-url":{"type":"string","description":"be a string","tags":{"description":"A url to the full text for this item."},"documentation":"Date the item was issued/published."},"genre":{"type":"string","description":"be a string","tags":{"description":{"short":"Type, class, or subtype of the item","long":"Type, class, or subtype of the item (e.g. \"Doctoral dissertation\" for a PhD thesis; \"NIH Publication\" for an NIH technical report);\n\nDo not use for topical descriptions or categories (e.g. \"adventure\" for an adventure movie)\n"}},"documentation":"Geographic scope of relevance (e.g. “US” for a US patent; the court\nhearing a legal case)."},"guest":{"_internalId":1554,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Guest (e.g. on a TV show or podcast)."},"documentation":"Keyword(s) or tag(s) attached to the item."},"host":{"_internalId":1557,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Host of the item (e.g. of a TV show or podcast)."},"documentation":"The language of the item (used only for citation of the item)."},"id":{"_internalId":1564,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"type":"number","description":"be a number"}],"description":"be at least one of: a string, a number","tags":{"description":"A value which uniquely identifies this item."},"documentation":"The license information applicable to an item."},"illustrator":{"_internalId":1567,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Illustrator (e.g. of a children’s book or graphic novel)."},"documentation":"A cite-specific pinpointer within the item."},"interviewer":{"_internalId":1570,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Interviewer (e.g. of an interview)."},"documentation":"Description of the item’s format or medium (e.g. “CD”, “DVD”,\n“Album”, etc.)"},"isbn":{"type":"string","description":"be a string","tags":{"description":"International Standard Book Number (e.g. \"978-3-8474-1017-1\")."},"documentation":"Narrator (e.g. of an audio book)."},"ISBN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issn":{"type":"string","description":"be a string","tags":{"description":"International Standard Serial Number."},"documentation":"Descriptive text or notes about an item (e.g. in an annotated\nbibliography)."},"ISSN":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"issue":{"_internalId":1585,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Issue number of the item or container holding the item","long":"Issue number of the item or container holding the item (e.g. \"5\" when citing a \njournal article from journal volume 2, issue 5);\n\nUse `volume-title` for the title of the issue, if any.\n"}},"documentation":"Number identifying the item (e.g. a report number)."},"issued":{"_internalId":1588,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item was issued/published."},"documentation":"Total number of pages of the cited item."},"jurisdiction":{"type":"string","description":"be a string","tags":{"description":"Geographic scope of relevance (e.g. \"US\" for a US patent; the court hearing a legal case)."},"documentation":"Total number of volumes, used when citing multi-volume books and\nsuch."},"keyword":{"type":"string","description":"be a string","tags":{"description":"Keyword(s) or tag(s) attached to the item."},"documentation":"Organizer of an event (e.g. organizer of a workshop or\nconference)."},"language":{"type":"string","description":"be a string","tags":{"description":{"short":"The language of the item (used only for citation of the item).","long":"The language of the item (used only for citation of the item).\n\nShould be entered as an ISO 639-1 two-letter language code (e.g. \"en\", \"zh\"), \noptionally with a two-letter locale code (e.g. \"de-DE\", \"de-AT\").\n\nThis does not change the language of the item, instead it documents \nwhat language the item uses (which may be used in citing the item).\n"}},"documentation":"The original creator of a work."},"license":{"type":"string","description":"be a string","tags":{"description":{"short":"The license information applicable to an item.","long":"The license information applicable to an item (e.g. the license an article \nor software is released under; the copyright information for an item; \nthe classification status of a document)\n"}},"documentation":"Issue date of the original version."},"locator":{"_internalId":1599,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"A cite-specific pinpointer within the item.","long":"A cite-specific pinpointer within the item (e.g. a page number within a book, \nor a volume in a multi-volume work).\n\nMust be accompanied in the input data by a label indicating the locator type \n(see the Locators term list).\n"}},"documentation":"Original publisher, for items that have been republished by a\ndifferent publisher."},"medium":{"type":"string","description":"be a string","tags":{"description":"Description of the item’s format or medium (e.g. \"CD\", \"DVD\", \"Album\", etc.)"},"documentation":"Geographic location of the original publisher (e.g. “London,\nUK”)."},"narrator":{"_internalId":1604,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Narrator (e.g. of an audio book)."},"documentation":"Title of the original version (e.g. “Война и мир”, the untranslated\nRussian title of “War and Peace”)."},"note":{"type":"string","description":"be a string","tags":{"description":"Descriptive text or notes about an item (e.g. in an annotated bibliography)."},"documentation":"Range of pages the item (e.g. a journal article) covers in a\ncontainer (e.g. a journal issue)."},"number":{"_internalId":1609,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Number identifying the item (e.g. a report number)."},"documentation":"First page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"number-of-pages":{"_internalId":1612,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of pages of the cited item."},"documentation":"Last page of the range of pages the item (e.g. a journal article)\ncovers in a container (e.g. a journal issue)."},"number-of-volumes":{"_internalId":1615,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Total number of volumes, used when citing multi-volume books and such."},"documentation":"Number of the specific part of the item being cited (e.g. part 2 of a\njournal article)."},"organizer":{"_internalId":1618,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Organizer of an event (e.g. organizer of a workshop or conference)."},"documentation":"Title of the specific part of an item being cited."},"original-author":{"_internalId":1621,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":{"short":"The original creator of a work.","long":"The original creator of a work (e.g. the form of the author name \nlisted on the original version of a book; the historical author of a work; \nthe original songwriter or performer for a musical piece; the original \ndeveloper or programmer for a piece of software; the original author of an \nadapted work such as a book adapted into a screenplay)\n"}},"documentation":"A url to the pdf for this item."},"original-date":{"_internalId":1624,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Issue date of the original version."},"documentation":"Performer of an item (e.g. an actor appearing in a film; a muscian\nperforming a piece of music)."},"original-publisher":{"type":"string","description":"be a string","tags":{"description":"Original publisher, for items that have been republished by a different publisher."},"documentation":"PubMed Central reference number."},"original-publisher-place":{"type":"string","description":"be a string","tags":{"description":"Geographic location of the original publisher (e.g. \"London, UK\")."},"documentation":"PubMed reference number."},"original-title":{"type":"string","description":"be a string","tags":{"description":"Title of the original version (e.g. \"Война и мир\", the untranslated Russian title of \"War and Peace\")."},"documentation":"Printing number of the item or container holding the item."},"page":{"_internalId":1633,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"Producer (e.g. of a television or radio broadcast)."},"page-first":{"_internalId":1636,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"First page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"A public url for this item."},"page-last":{"_internalId":1639,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Last page of the range of pages the item (e.g. a journal article) covers in a container (e.g. a journal issue)."},"documentation":"The publisher of the item."},"part-number":{"_internalId":1642,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).","long":"Number of the specific part of the item being cited (e.g. part 2 of a journal article).\n\nUse `part-title` for the title of the part, if any.\n"}},"documentation":"The geographic location of the publisher."},"part-title":{"type":"string","description":"be a string","tags":{"description":"Title of the specific part of an item being cited."},"documentation":"Recipient (e.g. of a letter)."},"pdf-url":{"type":"string","description":"be a string","tags":{"description":"A url to the pdf for this item."},"documentation":"Author of the item reviewed by the current item."},"performer":{"_internalId":1649,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Performer of an item (e.g. an actor appearing in a film; a muscian performing a piece of music)."},"documentation":"Type of the item being reviewed by the current item (e.g. book,\nfilm)."},"pmcid":{"type":"string","description":"be a string","tags":{"description":"PubMed Central reference number."},"documentation":"Title of the item reviewed by the current item."},"PMCID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"pmid":{"type":"string","description":"be a string","tags":{"description":"PubMed reference number."},"documentation":"Scale of e.g. a map or model."},"PMID":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"printing-number":{"_internalId":1664,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Printing number of the item or container holding the item."},"documentation":"Writer of a script or screenplay (e.g. of a film)."},"producer":{"_internalId":1667,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Producer (e.g. of a television or radio broadcast)."},"documentation":"Section of the item or container holding the item (e.g. “§2.0.1” for\na law; “politics” for a newspaper article)."},"public-url":{"type":"string","description":"be a string","tags":{"description":"A public url for this item."},"documentation":"Creator of a series (e.g. of a television series)."},"publisher":{"type":"string","description":"be a string","tags":{"description":"The publisher of the item."},"documentation":"Source from whence the item originates (e.g. a library catalog or\ndatabase)."},"publisher-place":{"type":"string","description":"be a string","tags":{"description":"The geographic location of the publisher."},"documentation":"Publication status of the item (e.g. “forthcoming”; “in press”;\n“advance online publication”; “retracted”)"},"recipient":{"_internalId":1676,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Recipient (e.g. of a letter)."},"documentation":"Date the item (e.g. a manuscript) was submitted for publication."},"reviewed-author":{"_internalId":1679,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Author of the item reviewed by the current item."},"documentation":"Supplement number of the item or container holding the item (e.g. for\nsecondary legal items that are regularly updated between editions)."},"reviewed-genre":{"type":"string","description":"be a string","tags":{"description":"Type of the item being reviewed by the current item (e.g. book, film)."},"documentation":"Short/abbreviated form oftitle."},"reviewed-title":{"type":"string","description":"be a string","tags":{"description":"Title of the item reviewed by the current item."},"documentation":"Translator"},"scale":{"type":"string","description":"be a string","tags":{"description":"Scale of e.g. a map or model."},"documentation":"The type\nof the item."},"script-writer":{"_internalId":1688,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Writer of a script or screenplay (e.g. of a film)."},"documentation":"Uniform Resource Locator\n(e.g. “https://aem.asm.org/cgi/content/full/74/9/2766”)"},"section":{"_internalId":1691,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Section of the item or container holding the item (e.g. \"§2.0.1\" for a law; \"politics\" for a newspaper article)."},"documentation":"Version of the item (e.g. “2.0.9” for a software program)."},"series-creator":{"_internalId":1694,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Creator of a series (e.g. of a television series)."},"documentation":"Volume number of the item (e.g. “2” when citing volume 2 of a book)\nor the container holding the item."},"source":{"type":"string","description":"be a string","tags":{"description":"Source from whence the item originates (e.g. a library catalog or database)."},"documentation":"Title of the volume of the item or container holding the item."},"status":{"type":"string","description":"be a string","tags":{"description":"Publication status of the item (e.g. \"forthcoming\"; \"in press\"; \"advance online publication\"; \"retracted\")"},"documentation":"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”)."},"submitted":{"_internalId":1701,"type":"ref","$ref":"csl-date","description":"be csl-date","tags":{"description":"Date the item (e.g. a manuscript) was submitted for publication."},"documentation":"Manuscript configuration"},"supplement-number":{"_internalId":1704,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Supplement number of the item or container holding the item (e.g. for secondary legal items that are regularly updated between editions)."},"documentation":"internal-schema-hack"},"title-short":{"type":"string","description":"be a string","tags":{"description":"Short/abbreviated form of`title`.","hidden":true},"documentation":"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’.","completions":[]},"translator":{"_internalId":1709,"type":"ref","$ref":"csl-person","description":"be csl-person","tags":{"description":"Translator"},"documentation":"When defined, run axe-core accessibility tests on the document."},"type":{"_internalId":1712,"type":"enum","enum":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"description":"be one of: `article`, `article-journal`, `article-magazine`, `article-newspaper`, `bill`, `book`, `broadcast`, `chapter`, `classic`, `collection`, `dataset`, `document`, `entry`, `entry-dictionary`, `entry-encyclopedia`, `event`, `figure`, `graphic`, `hearing`, `interview`, `legal_case`, `legislation`, `manuscript`, `map`, `motion_picture`, `musical_score`, `pamphlet`, `paper-conference`, `patent`, `performance`, `periodical`, `personal_communication`, `post`, `post-weblog`, `regulation`, `report`, `review`, `review-book`, `software`, `song`, `speech`, `standard`, `thesis`, `treaty`, `webpage`","completions":["article","article-journal","article-magazine","article-newspaper","bill","book","broadcast","chapter","classic","collection","dataset","document","entry","entry-dictionary","entry-encyclopedia","event","figure","graphic","hearing","interview","legal_case","legislation","manuscript","map","motion_picture","musical_score","pamphlet","paper-conference","patent","performance","periodical","personal_communication","post","post-weblog","regulation","report","review","review-book","software","song","speech","standard","thesis","treaty","webpage"],"exhaustiveCompletions":true,"tags":{"description":"The [type](https://docs.citationstyles.org/en/stable/specification.html#appendix-iii-types) of the item."},"documentation":"If set, output axe-core results on console. json:\nproduce structured output; console: print output to\njavascript console; document: produce a visual report of\nviolations in the document itself."},"url":{"type":"string","description":"be a string","tags":{"description":"Uniform Resource Locator (e.g. \"https://aem.asm.org/cgi/content/full/74/9/2766\")"},"documentation":"The logo image."},"URL":{"type":"string","description":"be a string","completions":[],"tags":{"hidden":true}},"version":{"_internalId":1721,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":"Version of the item (e.g. \"2.0.9\" for a software program)."},"documentation":"Advanced geometry settings for Typst margin layout."},"volume":{"_internalId":1724,"type":"ref","$ref":"csl-number","description":"be csl-number","tags":{"description":{"short":"Volume number of the item (e.g. “2” when citing volume 2 of a book) or the container holding the item.","long":"Volume number of the item (e.g. \"2\" when citing volume 2 of a book) or the container holding the \nitem (e.g. \"2\" when citing a chapter from volume 2 of a book).\n\nUse `volume-title` for the title of the volume, if any.\n"}},"documentation":"Inner (left) margin geometry."},"volume-title":{"type":"string","description":"be a string","tags":{"description":{"short":"Title of the volume of the item or container holding the item.","long":"Title of the volume of the item or container holding the item.\n\nAlso use for titles of periodical special issues, special sections, and the like.\n"}},"documentation":"Outer (right) margin geometry."},"year-suffix":{"type":"string","description":"be a string","tags":{"description":"Disambiguating year suffix in author-date styles (e.g. \"a\" in \"Doe, 1999a\")."},"documentation":"Minimum vertical spacing between margin notes (default: 8pt)."}},"patternProperties":{},"closed":true,"tags":{"case-convention":["dash-case","underscore_case","capitalizationCase"],"error-importance":-5,"case-detection":true,"description":"Book configuration."},"documentation":"Branch of website source code (defaults to main)"},"manuscript":{"_internalId":216767,"type":"ref","$ref":"manuscript-schema","description":"be manuscript-schema","documentation":"Manuscript configuration","tags":{"description":"Manuscript configuration"}},"type":{"_internalId":216770,"type":"enum","enum":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"description":"be 'cd93424f-d5ba-4e95-91c6-1890eab59fc7'","completions":["cd93424f-d5ba-4e95-91c6-1890eab59fc7"],"exhaustiveCompletions":true,"documentation":"internal-schema-hack","tags":{"description":"internal-schema-hack","hidden":true}},"engines":{"_internalId":216781,"type":"array","description":"be an array of values, where each element must be at least one of: a string, external-engine","items":{"_internalId":216780,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":216779,"type":"ref","$ref":"external-engine","description":"be external-engine"}],"description":"be at least one of: a string, external-engine"},"documentation":"List execution engines you want to give priority when determining which engine should render a notebook. If two engines have support for a notebook, the one listed earlier will be chosen. Quarto's default order is 'knitr', 'jupyter', 'markdown', 'julia'.","tags":{"description":"List execution engines you want to give priority when determining which engine should render a notebook. If two engines have support for a notebook, the one listed earlier will be chosen. Quarto's default order is 'knitr', 'jupyter', 'markdown', 'julia'."}}},"patternProperties":{},"$id":"project-config-fields"},"project-config":{"_internalId":216813,"type":"allOf","allOf":[{"_internalId":216811,"type":"object","description":"be a Quarto YAML front matter object","properties":{"execute":{"_internalId":216808,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},"format":{"_internalId":216809,"type":"ref","$ref":"front-matter-format","description":"be at least one of: the name of a pandoc-supported output format, an object, all of: an object"},"profile":{"_internalId":216810,"type":"ref","$ref":"project-profile","description":"Specify a default profile and profile groups"}},"patternProperties":{}},{"_internalId":216808,"type":"ref","$ref":"front-matter-execute","description":"be a front-matter-execute object"},{"_internalId":216812,"type":"ref","$ref":"front-matter","description":"be at least one of: the null value, all of: a Quarto YAML front matter object, an object, a front-matter-execute object, ref"},{"_internalId":216783,"type":"ref","$ref":"project-config-fields","description":"be an object"}],"description":"be a project configuration object","$id":"project-config"},"engine-markdown":{"_internalId":216861,"type":"object","description":"be an object","properties":{"label":{"_internalId":216815,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":216816,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":216817,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"title":{"_internalId":216818,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":216819,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":216820,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":216821,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":216822,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":216823,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":216824,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":216825,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":216826,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":216827,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":216828,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":216829,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":216830,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":216831,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":216832,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":216833,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":216834,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":216835,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":216836,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":216837,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":216838,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":216839,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":216840,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":216841,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":216842,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":216843,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":216844,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":216845,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":216846,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":216847,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":216848,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":216849,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":216850,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":216851,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":216852,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":216853,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"html-table-processing":{"_internalId":216854,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":216855,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":216856,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":216857,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":216858,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":216859,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":216860,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,title,padding,expandable,width,height,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,html-table-processing,output,warning,error,include,panel,output-location","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-markdown"},"engine-knitr":{"_internalId":216956,"type":"object","description":"be an object","properties":{"label":{"_internalId":216863,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":216864,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":216865,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"cache":{"_internalId":216866,"type":"ref","$ref":"quarto-resource-cell-cache-cache","description":"quarto-resource-cell-cache-cache"},"cache-path":{"_internalId":216867,"type":"ref","$ref":"quarto-resource-cell-cache-cache-path","description":"quarto-resource-cell-cache-cache-path"},"cache-vars":{"_internalId":216868,"type":"ref","$ref":"quarto-resource-cell-cache-cache-vars","description":"quarto-resource-cell-cache-cache-vars"},"cache-globals":{"_internalId":216869,"type":"ref","$ref":"quarto-resource-cell-cache-cache-globals","description":"quarto-resource-cell-cache-cache-globals"},"cache-lazy":{"_internalId":216870,"type":"ref","$ref":"quarto-resource-cell-cache-cache-lazy","description":"quarto-resource-cell-cache-cache-lazy"},"cache-rebuild":{"_internalId":216871,"type":"ref","$ref":"quarto-resource-cell-cache-cache-rebuild","description":"quarto-resource-cell-cache-cache-rebuild"},"cache-comments":{"_internalId":216872,"type":"ref","$ref":"quarto-resource-cell-cache-cache-comments","description":"quarto-resource-cell-cache-cache-comments"},"dependson":{"_internalId":216873,"type":"ref","$ref":"quarto-resource-cell-cache-dependson","description":"quarto-resource-cell-cache-dependson"},"autodep":{"_internalId":216874,"type":"ref","$ref":"quarto-resource-cell-cache-autodep","description":"quarto-resource-cell-cache-autodep"},"title":{"_internalId":216875,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":216876,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":216877,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":216878,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":216879,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":216880,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":216881,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":216882,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":216883,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":216884,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":216885,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":216886,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":216887,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":216888,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":216889,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"tidy":{"_internalId":216890,"type":"ref","$ref":"quarto-resource-cell-codeoutput-tidy","description":"quarto-resource-cell-codeoutput-tidy"},"tidy-opts":{"_internalId":216891,"type":"ref","$ref":"quarto-resource-cell-codeoutput-tidy-opts","description":"quarto-resource-cell-codeoutput-tidy-opts"},"collapse":{"_internalId":216892,"type":"ref","$ref":"quarto-resource-cell-codeoutput-collapse","description":"quarto-resource-cell-codeoutput-collapse"},"prompt":{"_internalId":216893,"type":"ref","$ref":"quarto-resource-cell-codeoutput-prompt","description":"quarto-resource-cell-codeoutput-prompt"},"highlight":{"_internalId":216894,"type":"ref","$ref":"quarto-resource-cell-codeoutput-highlight","description":"quarto-resource-cell-codeoutput-highlight"},"class-source":{"_internalId":216895,"type":"ref","$ref":"quarto-resource-cell-codeoutput-class-source","description":"quarto-resource-cell-codeoutput-class-source"},"attr-source":{"_internalId":216896,"type":"ref","$ref":"quarto-resource-cell-codeoutput-attr-source","description":"quarto-resource-cell-codeoutput-attr-source"},"fig-width":{"_internalId":216897,"type":"ref","$ref":"quarto-resource-cell-figure-fig-width","description":"quarto-resource-cell-figure-fig-width"},"fig-height":{"_internalId":216898,"type":"ref","$ref":"quarto-resource-cell-figure-fig-height","description":"quarto-resource-cell-figure-fig-height"},"fig-cap":{"_internalId":216899,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":216900,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":216901,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":216902,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":216903,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":216904,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":216905,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":216906,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"fig-format":{"_internalId":216907,"type":"ref","$ref":"quarto-resource-cell-figure-fig-format","description":"quarto-resource-cell-figure-fig-format"},"fig-dpi":{"_internalId":216908,"type":"ref","$ref":"quarto-resource-cell-figure-fig-dpi","description":"quarto-resource-cell-figure-fig-dpi"},"fig-asp":{"_internalId":216909,"type":"ref","$ref":"quarto-resource-cell-figure-fig-asp","description":"quarto-resource-cell-figure-fig-asp"},"out-width":{"_internalId":216910,"type":"ref","$ref":"quarto-resource-cell-figure-out-width","description":"quarto-resource-cell-figure-out-width"},"out-height":{"_internalId":216911,"type":"ref","$ref":"quarto-resource-cell-figure-out-height","description":"quarto-resource-cell-figure-out-height"},"fig-keep":{"_internalId":216912,"type":"ref","$ref":"quarto-resource-cell-figure-fig-keep","description":"quarto-resource-cell-figure-fig-keep"},"fig-show":{"_internalId":216913,"type":"ref","$ref":"quarto-resource-cell-figure-fig-show","description":"quarto-resource-cell-figure-fig-show"},"out-extra":{"_internalId":216914,"type":"ref","$ref":"quarto-resource-cell-figure-out-extra","description":"quarto-resource-cell-figure-out-extra"},"external":{"_internalId":216915,"type":"ref","$ref":"quarto-resource-cell-figure-external","description":"quarto-resource-cell-figure-external"},"sanitize":{"_internalId":216916,"type":"ref","$ref":"quarto-resource-cell-figure-sanitize","description":"quarto-resource-cell-figure-sanitize"},"interval":{"_internalId":216917,"type":"ref","$ref":"quarto-resource-cell-figure-interval","description":"quarto-resource-cell-figure-interval"},"aniopts":{"_internalId":216918,"type":"ref","$ref":"quarto-resource-cell-figure-aniopts","description":"quarto-resource-cell-figure-aniopts"},"animation-hook":{"_internalId":216919,"type":"ref","$ref":"quarto-resource-cell-figure-animation-hook","description":"quarto-resource-cell-figure-animation-hook"},"child":{"_internalId":216920,"type":"ref","$ref":"quarto-resource-cell-include-child","description":"quarto-resource-cell-include-child"},"file":{"_internalId":216921,"type":"ref","$ref":"quarto-resource-cell-include-file","description":"quarto-resource-cell-include-file"},"code":{"_internalId":216922,"type":"ref","$ref":"quarto-resource-cell-include-code","description":"quarto-resource-cell-include-code"},"purl":{"_internalId":216923,"type":"ref","$ref":"quarto-resource-cell-include-purl","description":"quarto-resource-cell-include-purl"},"layout":{"_internalId":216924,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":216925,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":216926,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":216927,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":216928,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":216929,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":216930,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":216931,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":216932,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":216933,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":216934,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":216935,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":216936,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"tbl-colwidths":{"_internalId":216937,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"html-table-processing":{"_internalId":216938,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":216939,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":216940,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":216941,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":216942,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":216943,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":216944,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"},"message":{"_internalId":216945,"type":"ref","$ref":"quarto-resource-cell-textoutput-message","description":"quarto-resource-cell-textoutput-message"},"results":{"_internalId":216946,"type":"ref","$ref":"quarto-resource-cell-textoutput-results","description":"quarto-resource-cell-textoutput-results"},"comment":{"_internalId":216947,"type":"ref","$ref":"quarto-resource-cell-textoutput-comment","description":"quarto-resource-cell-textoutput-comment"},"class-output":{"_internalId":216948,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-output","description":"quarto-resource-cell-textoutput-class-output"},"attr-output":{"_internalId":216949,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-output","description":"quarto-resource-cell-textoutput-attr-output"},"class-warning":{"_internalId":216950,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-warning","description":"quarto-resource-cell-textoutput-class-warning"},"attr-warning":{"_internalId":216951,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-warning","description":"quarto-resource-cell-textoutput-attr-warning"},"class-message":{"_internalId":216952,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-message","description":"quarto-resource-cell-textoutput-class-message"},"attr-message":{"_internalId":216953,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-message","description":"quarto-resource-cell-textoutput-attr-message"},"class-error":{"_internalId":216954,"type":"ref","$ref":"quarto-resource-cell-textoutput-class-error","description":"quarto-resource-cell-textoutput-class-error"},"attr-error":{"_internalId":216955,"type":"ref","$ref":"quarto-resource-cell-textoutput-attr-error","description":"quarto-resource-cell-textoutput-attr-error"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,cache,cache-path,cache-vars,cache-globals,cache-lazy,cache-rebuild,cache-comments,dependson,autodep,title,padding,expandable,width,height,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,tidy,tidy-opts,collapse,prompt,highlight,class-source,attr-source,fig-width,fig-height,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,fig-format,fig-dpi,fig-asp,out-width,out-height,fig-keep,fig-show,out-extra,external,sanitize,interval,aniopts,animation-hook,child,file,code,purl,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,tbl-colwidths,html-table-processing,output,warning,error,include,panel,output-location,message,results,comment,class-output,attr-output,class-warning,attr-warning,class-message,attr-message,class-error,attr-error","type":"string","pattern":"(?!(^cache_path$|^cachePath$|^cache_vars$|^cacheVars$|^cache_globals$|^cacheGlobals$|^cache_lazy$|^cacheLazy$|^cache_rebuild$|^cacheRebuild$|^cache_comments$|^cacheComments$|^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^tidy_opts$|^tidyOpts$|^class_source$|^classSource$|^attr_source$|^attrSource$|^fig_width$|^figWidth$|^fig_height$|^figHeight$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^fig_format$|^figFormat$|^fig_dpi$|^figDpi$|^fig_asp$|^figAsp$|^out_width$|^outWidth$|^out_height$|^outHeight$|^fig_keep$|^figKeep$|^fig_show$|^figShow$|^out_extra$|^outExtra$|^animation_hook$|^animationHook$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^tbl_colwidths$|^tblColwidths$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$|^class_output$|^classOutput$|^attr_output$|^attrOutput$|^class_warning$|^classWarning$|^attr_warning$|^attrWarning$|^class_message$|^classMessage$|^attr_message$|^attrMessage$|^class_error$|^classError$|^attr_error$|^attrError$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-knitr"},"engine-jupyter":{"_internalId":217009,"type":"object","description":"be an object","properties":{"label":{"_internalId":216958,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":216959,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":216960,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"tags":{"_internalId":216961,"type":"ref","$ref":"quarto-resource-cell-attributes-tags","description":"quarto-resource-cell-attributes-tags"},"id":{"_internalId":216962,"type":"ref","$ref":"quarto-resource-cell-attributes-id","description":"quarto-resource-cell-attributes-id"},"export":{"_internalId":216963,"type":"ref","$ref":"quarto-resource-cell-attributes-export","description":"quarto-resource-cell-attributes-export"},"title":{"_internalId":216964,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":216965,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":216966,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":216967,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":216968,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"context":{"_internalId":216969,"type":"ref","$ref":"quarto-resource-cell-card-context","description":"quarto-resource-cell-card-context"},"content":{"_internalId":216970,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":216971,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":216972,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":216973,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":216974,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":216975,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":216976,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":216977,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":216978,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":216979,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":216980,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":216981,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":216982,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":216983,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":216984,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":216985,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":216986,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":216987,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":216988,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":216989,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":216990,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":216991,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":216992,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":216993,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":216994,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":216995,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":216996,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":216997,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":216998,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":216999,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":217000,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"tbl-colwidths":{"_internalId":217001,"type":"ref","$ref":"quarto-resource-cell-table-tbl-colwidths","description":"quarto-resource-cell-table-tbl-colwidths"},"html-table-processing":{"_internalId":217002,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":217003,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":217004,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":217005,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":217006,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":217007,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":217008,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,tags,id,export,title,padding,expandable,width,height,context,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,tbl-colwidths,html-table-processing,output,warning,error,include,panel,output-location","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^tbl_colwidths$|^tblColwidths$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-jupyter"},"engine-julia":{"_internalId":217057,"type":"object","description":"be an object","properties":{"label":{"_internalId":217011,"type":"ref","$ref":"quarto-resource-cell-attributes-label","description":"quarto-resource-cell-attributes-label"},"classes":{"_internalId":217012,"type":"ref","$ref":"quarto-resource-cell-attributes-classes","description":"quarto-resource-cell-attributes-classes"},"renderings":{"_internalId":217013,"type":"ref","$ref":"quarto-resource-cell-attributes-renderings","description":"quarto-resource-cell-attributes-renderings"},"title":{"_internalId":217014,"type":"ref","$ref":"quarto-resource-cell-card-title","description":"quarto-resource-cell-card-title"},"padding":{"_internalId":217015,"type":"ref","$ref":"quarto-resource-cell-card-padding","description":"quarto-resource-cell-card-padding"},"expandable":{"_internalId":217016,"type":"ref","$ref":"quarto-resource-cell-card-expandable","description":"quarto-resource-cell-card-expandable"},"width":{"_internalId":217017,"type":"ref","$ref":"quarto-resource-cell-card-width","description":"quarto-resource-cell-card-width"},"height":{"_internalId":217018,"type":"ref","$ref":"quarto-resource-cell-card-height","description":"quarto-resource-cell-card-height"},"content":{"_internalId":217019,"type":"ref","$ref":"quarto-resource-cell-card-content","description":"quarto-resource-cell-card-content"},"color":{"_internalId":217020,"type":"ref","$ref":"quarto-resource-cell-card-color","description":"quarto-resource-cell-card-color"},"eval":{"_internalId":217021,"type":"ref","$ref":"quarto-resource-cell-codeoutput-eval","description":"quarto-resource-cell-codeoutput-eval"},"echo":{"_internalId":217022,"type":"ref","$ref":"quarto-resource-cell-codeoutput-echo","description":"quarto-resource-cell-codeoutput-echo"},"code-fold":{"_internalId":217023,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-fold","description":"quarto-resource-cell-codeoutput-code-fold"},"code-summary":{"_internalId":217024,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-summary","description":"quarto-resource-cell-codeoutput-code-summary"},"code-overflow":{"_internalId":217025,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-overflow","description":"quarto-resource-cell-codeoutput-code-overflow"},"code-line-numbers":{"_internalId":217026,"type":"ref","$ref":"quarto-resource-cell-codeoutput-code-line-numbers","description":"quarto-resource-cell-codeoutput-code-line-numbers"},"lst-label":{"_internalId":217027,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-label","description":"quarto-resource-cell-codeoutput-lst-label"},"lst-cap":{"_internalId":217028,"type":"ref","$ref":"quarto-resource-cell-codeoutput-lst-cap","description":"quarto-resource-cell-codeoutput-lst-cap"},"fig-cap":{"_internalId":217029,"type":"ref","$ref":"quarto-resource-cell-figure-fig-cap","description":"quarto-resource-cell-figure-fig-cap"},"fig-subcap":{"_internalId":217030,"type":"ref","$ref":"quarto-resource-cell-figure-fig-subcap","description":"quarto-resource-cell-figure-fig-subcap"},"fig-link":{"_internalId":217031,"type":"ref","$ref":"quarto-resource-cell-figure-fig-link","description":"quarto-resource-cell-figure-fig-link"},"fig-align":{"_internalId":217032,"type":"ref","$ref":"quarto-resource-cell-figure-fig-align","description":"quarto-resource-cell-figure-fig-align"},"fig-alt":{"_internalId":217033,"type":"ref","$ref":"quarto-resource-cell-figure-fig-alt","description":"quarto-resource-cell-figure-fig-alt"},"fig-env":{"_internalId":217034,"type":"ref","$ref":"quarto-resource-cell-figure-fig-env","description":"quarto-resource-cell-figure-fig-env"},"fig-pos":{"_internalId":217035,"type":"ref","$ref":"quarto-resource-cell-figure-fig-pos","description":"quarto-resource-cell-figure-fig-pos"},"fig-scap":{"_internalId":217036,"type":"ref","$ref":"quarto-resource-cell-figure-fig-scap","description":"quarto-resource-cell-figure-fig-scap"},"layout":{"_internalId":217037,"type":"ref","$ref":"quarto-resource-cell-layout-layout","description":"quarto-resource-cell-layout-layout"},"layout-ncol":{"_internalId":217038,"type":"ref","$ref":"quarto-resource-cell-layout-layout-ncol","description":"quarto-resource-cell-layout-layout-ncol"},"layout-nrow":{"_internalId":217039,"type":"ref","$ref":"quarto-resource-cell-layout-layout-nrow","description":"quarto-resource-cell-layout-layout-nrow"},"layout-align":{"_internalId":217040,"type":"ref","$ref":"quarto-resource-cell-layout-layout-align","description":"quarto-resource-cell-layout-layout-align"},"layout-valign":{"_internalId":217041,"type":"ref","$ref":"quarto-resource-cell-layout-layout-valign","description":"quarto-resource-cell-layout-layout-valign"},"column":{"_internalId":217042,"type":"ref","$ref":"quarto-resource-cell-pagelayout-column","description":"quarto-resource-cell-pagelayout-column"},"fig-column":{"_internalId":217043,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-column","description":"quarto-resource-cell-pagelayout-fig-column"},"tbl-column":{"_internalId":217044,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-column","description":"quarto-resource-cell-pagelayout-tbl-column"},"cap-location":{"_internalId":217045,"type":"ref","$ref":"quarto-resource-cell-pagelayout-cap-location","description":"quarto-resource-cell-pagelayout-cap-location"},"fig-cap-location":{"_internalId":217046,"type":"ref","$ref":"quarto-resource-cell-pagelayout-fig-cap-location","description":"quarto-resource-cell-pagelayout-fig-cap-location"},"tbl-cap-location":{"_internalId":217047,"type":"ref","$ref":"quarto-resource-cell-pagelayout-tbl-cap-location","description":"quarto-resource-cell-pagelayout-tbl-cap-location"},"tbl-cap":{"_internalId":217048,"type":"ref","$ref":"quarto-resource-cell-table-tbl-cap","description":"quarto-resource-cell-table-tbl-cap"},"tbl-subcap":{"_internalId":217049,"type":"ref","$ref":"quarto-resource-cell-table-tbl-subcap","description":"quarto-resource-cell-table-tbl-subcap"},"html-table-processing":{"_internalId":217050,"type":"ref","$ref":"quarto-resource-cell-table-html-table-processing","description":"quarto-resource-cell-table-html-table-processing"},"output":{"_internalId":217051,"type":"ref","$ref":"quarto-resource-cell-textoutput-output","description":"quarto-resource-cell-textoutput-output"},"warning":{"_internalId":217052,"type":"ref","$ref":"quarto-resource-cell-textoutput-warning","description":"quarto-resource-cell-textoutput-warning"},"error":{"_internalId":217053,"type":"ref","$ref":"quarto-resource-cell-textoutput-error","description":"quarto-resource-cell-textoutput-error"},"include":{"_internalId":217054,"type":"ref","$ref":"quarto-resource-cell-textoutput-include","description":"quarto-resource-cell-textoutput-include"},"panel":{"_internalId":217055,"type":"ref","$ref":"quarto-resource-cell-textoutput-panel","description":"quarto-resource-cell-textoutput-panel"},"output-location":{"_internalId":217056,"type":"ref","$ref":"quarto-resource-cell-textoutput-output-location","description":"quarto-resource-cell-textoutput-output-location"}},"patternProperties":{},"propertyNames":{"errorMessage":"property ${value} does not match case convention label,classes,renderings,title,padding,expandable,width,height,content,color,eval,echo,code-fold,code-summary,code-overflow,code-line-numbers,lst-label,lst-cap,fig-cap,fig-subcap,fig-link,fig-align,fig-alt,fig-env,fig-pos,fig-scap,layout,layout-ncol,layout-nrow,layout-align,layout-valign,column,fig-column,tbl-column,cap-location,fig-cap-location,tbl-cap-location,tbl-cap,tbl-subcap,html-table-processing,output,warning,error,include,panel,output-location","type":"string","pattern":"(?!(^code_fold$|^codeFold$|^code_summary$|^codeSummary$|^code_overflow$|^codeOverflow$|^code_line_numbers$|^codeLineNumbers$|^lst_label$|^lstLabel$|^lst_cap$|^lstCap$|^fig_cap$|^figCap$|^fig_subcap$|^figSubcap$|^fig_link$|^figLink$|^fig_align$|^figAlign$|^fig_alt$|^figAlt$|^fig_env$|^figEnv$|^fig_pos$|^figPos$|^fig_scap$|^figScap$|^layout_ncol$|^layoutNcol$|^layout_nrow$|^layoutNrow$|^layout_align$|^layoutAlign$|^layout_valign$|^layoutValign$|^fig_column$|^figColumn$|^tbl_column$|^tblColumn$|^cap_location$|^capLocation$|^fig_cap_location$|^figCapLocation$|^tbl_cap_location$|^tblCapLocation$|^tbl_cap$|^tblCap$|^tbl_subcap$|^tblSubcap$|^html_table_processing$|^htmlTableProcessing$|^output_location$|^outputLocation$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"engine-julia"},"plugin-reveal":{"_internalId":7,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"name":{"type":"string","description":"be a string"},"register":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true},"script":{"_internalId":4,"type":"anyOf","anyOf":[{"_internalId":2,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"async":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["path"]}],"description":"be at least one of: a string, an object"},{"_internalId":3,"type":"array","description":"be an array of values, where each element must be at least one of: a string, an object","items":{"_internalId":2,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":1,"type":"object","description":"be an object","properties":{"path":{"type":"string","description":"be a string"},"async":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["path"]}],"description":"be at least one of: a string, an object"}}],"description":"be at least one of: at least one of: a string, an object, an array of values, where each element must be at least one of: a string, an object"},"stylesheet":{"_internalId":6,"type":"anyOf","anyOf":[{"type":"string","description":"be a string"},{"_internalId":5,"type":"array","description":"be an array of values, where each element must be a string","items":{"type":"string","description":"be a string"}}],"description":"be at least one of: a string, an array of values, where each element must be a string"},"self-contained":{"type":"boolean","description":"be `true` or `false`","completions":["true","false"],"exhaustiveCompletions":true}},"patternProperties":{},"required":["name"],"propertyNames":{"errorMessage":"property ${value} does not match case convention path,name,register,script,stylesheet,self-contained","type":"string","pattern":"(?!(^self_contained$|^selfContained$))","tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true}},"tags":{"case-convention":["dash-case"],"error-importance":-5,"case-detection":true},"$id":"plugin-reveal"}} \ No newline at end of file diff --git a/src/resources/editor/tools/yaml/web-worker.js b/src/resources/editor/tools/yaml/web-worker.js index b8625ae47d2..5e271cac075 100644 --- a/src/resources/editor/tools/yaml/web-worker.js +++ b/src/resources/editor/tools/yaml/web-worker.js @@ -8820,6 +8820,85 @@ try { giscus: { ref: "giscus-configuration" }, + beblob: { + object: { + closed: true, + properties: { + "client-id": { + string: { + description: "The GitLab OAuth Application ID used to authenticate commenters." + } + }, + "redirect-uri": { + string: { + description: "The redirect URI registered for the GitLab OAuth Application\n(must match the value configured in GitLab, typically your site URL).\n" + } + }, + "project-name": { + string: { + description: "The name of the GitLab project used to store comments as issues\n(e.g. `my-project`). This is the project's name as shown in GitLab \u2014\nBeBlob looks the project up by searching GitLab for this name \u2014 not\nthe full `namespace/path`.\n" + } + }, + "issue-mapping-strategy": { + string: { + description: { + short: "How pages are mapped to GitLab issues.", + long: "How pages are mapped to GitLab issues\n(`url`, `pageTitle`, or `issueId`).\n" + }, + completions: [ + "url", + "pageTitle", + "issueId" + ] + } + }, + "issue-id": { + string: { + description: "The GitLab issue id to use. Required only when `issue-mapping-strategy` is `issueId`." + } + }, + "gitlab-url": { + string: { + description: "The base URL of the GitLab instance (use this for self-managed GitLab). Defaults to `https://gitlab.com`." + } + }, + theme: { + string: { + description: { + short: "The theme that should be used for BeBlob.", + long: "The theme that should be used for BeBlob\n(`dark`, `white`, `light`, or `classic`).\n" + }, + completions: [ + "dark", + "white", + "light", + "classic" + ] + } + }, + "dev-mode": { + boolean: { + description: "Load the BeBlob assets locally from your own server instead of from the CDN." + } + }, + version: { + string: { + description: "The BeBlob version to load from the CDN." + } + }, + "client-url": { + string: { + description: "Override the default BeBlob client url with a custom client url (e.g. a self-hosted bundle)." + } + } + }, + required: [ + "client-id", + "redirect-uri", + "project-name" + ] + } + }, hypothesis: { anyOf: [ "boolean", @@ -21731,6 +21810,22 @@ try { short: "How posts should be mapped to Github issues", long: "How posts should be mapped to Github issues (pathname,\nurl, title or og:title)" }, + "The GitLab OAuth Application ID used to authenticate commenters.", + "The redirect URI registered for the GitLab OAuth Application (must\nmatch the value configured in GitLab, typically your site URL).", + "The GitLab project (e.g. group/project) that will be\nused to store comments as issues.", + { + short: "How pages are mapped to GitLab issues.", + long: "How pages are mapped to GitLab issues (url,\npageTitle, or issueId)." + }, + "The GitLab issue id to use. Required only when\nissue-mapping-strategy is issueId.", + "The base URL of the GitLab instance (use this for self-managed\nGitLab). Defaults to https://gitlab.com.", + { + short: "The theme that should be used for BeBlob.", + long: "The theme that should be used for BeBlob (dark,\nwhite, light, or classic)." + }, + "Load the BeBlob assets locally from your own server instead of from\nthe CDN.", + "The BeBlob version to load from the CDN.", + "Override the default BeBlob client url with a custom client url\n(e.g. a self-hosted bundle).", "Override the default hypothesis client url with a custom client\nurl.", "Controls whether the sidebar opens automatically on startup.", "Controls whether the in-document highlights are shown by default\n(always, whenSidebarOpen or\nnever)", @@ -21839,9 +21934,9 @@ try { short: "Name that should be displayed for the overall site", long: "Name that should be displayed for the overall site. If not explicitly\nprovided in the open-graph metadata, Quarto will use the\nwebsite or book title by default." }, - "Footer left content", - "Footer right content", - "Footer center content", + "Footer left content. Supports markdown formatting.", + "Footer right content. Supports markdown formatting.", + "Footer center content. Supports markdown formatting.", "Footer border (true, false, or a border\ncolor)", "Footer background color", "Footer foreground color", @@ -21886,7 +21981,7 @@ try { }, "Path to a file containing the Plausible Analytics script snippet", "Provides an announcement displayed at the top of the page.", - "The content of the announcement", + "The content of the announcement. Supports markdown formatting.", "Whether this announcement may be dismissed by the user.", { short: "The icon to display in the announcement", @@ -21944,7 +22039,7 @@ try { "Field that contains the section of index entries", "Additional parameters to pass when executing a search", "Top navigation options", - "The navbar title. Uses the project title if none is specified.", + "The navbar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed to the left of the\ntitle.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -21960,7 +22055,7 @@ try { "Collapse tools into the navbar menu when the display becomes\nnarrow.", "Side navigation options", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -21977,7 +22072,7 @@ try { "Markdown to place above sidebar content (text or file path)", "Markdown to place below sidebar content (text or file path)", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -22053,7 +22148,7 @@ try { }, "Path to a file containing the Plausible Analytics script snippet", "Provides an announcement displayed at the top of the page.", - "The content of the announcement", + "The content of the announcement. Supports markdown formatting.", "Whether this announcement may be dismissed by the user.", { short: "The icon to display in the announcement", @@ -22111,7 +22206,7 @@ try { "Field that contains the section of index entries", "Additional parameters to pass when executing a search", "Top navigation options", - "The navbar title. Uses the project title if none is specified.", + "The navbar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed to the left of the\ntitle.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -22127,7 +22222,7 @@ try { "Collapse tools into the navbar menu when the display becomes\nnarrow.", "Side navigation options", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -22144,7 +22239,7 @@ try { "Markdown to place above sidebar content (text or file path)", "Markdown to place below sidebar content (text or file path)", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -24480,7 +24575,7 @@ try { }, "Path to a file containing the Plausible Analytics script snippet", "Provides an announcement displayed at the top of the page.", - "The content of the announcement", + "The content of the announcement. Supports markdown formatting.", "Whether this announcement may be dismissed by the user.", { short: "The icon to display in the announcement", @@ -24538,7 +24633,7 @@ try { "Field that contains the section of index entries", "Additional parameters to pass when executing a search", "Top navigation options", - "The navbar title. Uses the project title if none is specified.", + "The navbar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed to the left of the\ntitle.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -24554,7 +24649,7 @@ try { "Collapse tools into the navbar menu when the display becomes\nnarrow.", "Side navigation options", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -24571,7 +24666,7 @@ try { "Markdown to place above sidebar content (text or file path)", "Markdown to place below sidebar content (text or file path)", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -24851,7 +24946,7 @@ try { }, "Path to a file containing the Plausible Analytics script snippet", "Provides an announcement displayed at the top of the page.", - "The content of the announcement", + "The content of the announcement. Supports markdown formatting.", "Whether this announcement may be dismissed by the user.", { short: "The icon to display in the announcement", @@ -24909,7 +25004,7 @@ try { "Field that contains the section of index entries", "Additional parameters to pass when executing a search", "Top navigation options", - "The navbar title. Uses the project title if none is specified.", + "The navbar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed to the left of the\ntitle.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -24925,7 +25020,7 @@ try { "Collapse tools into the navbar menu when the display becomes\nnarrow.", "Side navigation options", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -24942,7 +25037,7 @@ try { "Markdown to place above sidebar content (text or file path)", "Markdown to place below sidebar content (text or file path)", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -25375,12 +25470,12 @@ try { mermaid: "%%" }, "handlers/mermaid/schema.yml": { - _internalId: 222617, + _internalId: 222663, type: "object", description: "be an object", properties: { "mermaid-format": { - _internalId: 222609, + _internalId: 222655, type: "enum", enum: [ "png", @@ -25396,7 +25491,7 @@ try { exhaustiveCompletions: true }, theme: { - _internalId: 222616, + _internalId: 222662, type: "anyOf", anyOf: [ { diff --git a/src/resources/editor/tools/yaml/yaml-intelligence-resources.json b/src/resources/editor/tools/yaml/yaml-intelligence-resources.json index d2bad088076..1bf705c6f6e 100644 --- a/src/resources/editor/tools/yaml/yaml-intelligence-resources.json +++ b/src/resources/editor/tools/yaml/yaml-intelligence-resources.json @@ -1791,6 +1791,85 @@ "giscus": { "ref": "giscus-configuration" }, + "beblob": { + "object": { + "closed": true, + "properties": { + "client-id": { + "string": { + "description": "The GitLab OAuth Application ID used to authenticate commenters." + } + }, + "redirect-uri": { + "string": { + "description": "The redirect URI registered for the GitLab OAuth Application\n(must match the value configured in GitLab, typically your site URL).\n" + } + }, + "project-name": { + "string": { + "description": "The name of the GitLab project used to store comments as issues\n(e.g. `my-project`). This is the project's name as shown in GitLab —\nBeBlob looks the project up by searching GitLab for this name — not\nthe full `namespace/path`.\n" + } + }, + "issue-mapping-strategy": { + "string": { + "description": { + "short": "How pages are mapped to GitLab issues.", + "long": "How pages are mapped to GitLab issues\n(`url`, `pageTitle`, or `issueId`).\n" + }, + "completions": [ + "url", + "pageTitle", + "issueId" + ] + } + }, + "issue-id": { + "string": { + "description": "The GitLab issue id to use. Required only when `issue-mapping-strategy` is `issueId`." + } + }, + "gitlab-url": { + "string": { + "description": "The base URL of the GitLab instance (use this for self-managed GitLab). Defaults to `https://gitlab.com`." + } + }, + "theme": { + "string": { + "description": { + "short": "The theme that should be used for BeBlob.", + "long": "The theme that should be used for BeBlob\n(`dark`, `white`, `light`, or `classic`).\n" + }, + "completions": [ + "dark", + "white", + "light", + "classic" + ] + } + }, + "dev-mode": { + "boolean": { + "description": "Load the BeBlob assets locally from your own server instead of from the CDN." + } + }, + "version": { + "string": { + "description": "The BeBlob version to load from the CDN." + } + }, + "client-url": { + "string": { + "description": "Override the default BeBlob client url with a custom client url (e.g. a self-hosted bundle)." + } + } + }, + "required": [ + "client-id", + "redirect-uri", + "project-name" + ] + } + }, "hypothesis": { "anyOf": [ "boolean", @@ -14702,6 +14781,22 @@ "short": "How posts should be mapped to Github issues", "long": "How posts should be mapped to Github issues (pathname,\nurl, title or og:title)" }, + "The GitLab OAuth Application ID used to authenticate commenters.", + "The redirect URI registered for the GitLab OAuth Application (must\nmatch the value configured in GitLab, typically your site URL).", + "The GitLab project (e.g. group/project) that will be\nused to store comments as issues.", + { + "short": "How pages are mapped to GitLab issues.", + "long": "How pages are mapped to GitLab issues (url,\npageTitle, or issueId)." + }, + "The GitLab issue id to use. Required only when\nissue-mapping-strategy is issueId.", + "The base URL of the GitLab instance (use this for self-managed\nGitLab). Defaults to https://gitlab.com.", + { + "short": "The theme that should be used for BeBlob.", + "long": "The theme that should be used for BeBlob (dark,\nwhite, light, or classic)." + }, + "Load the BeBlob assets locally from your own server instead of from\nthe CDN.", + "The BeBlob version to load from the CDN.", + "Override the default BeBlob client url with a custom client url\n(e.g. a self-hosted bundle).", "Override the default hypothesis client url with a custom client\nurl.", "Controls whether the sidebar opens automatically on startup.", "Controls whether the in-document highlights are shown by default\n(always, whenSidebarOpen or\nnever)", @@ -14810,9 +14905,9 @@ "short": "Name that should be displayed for the overall site", "long": "Name that should be displayed for the overall site. If not explicitly\nprovided in the open-graph metadata, Quarto will use the\nwebsite or book title by default." }, - "Footer left content", - "Footer right content", - "Footer center content", + "Footer left content. Supports markdown formatting.", + "Footer right content. Supports markdown formatting.", + "Footer center content. Supports markdown formatting.", "Footer border (true, false, or a border\ncolor)", "Footer background color", "Footer foreground color", @@ -14857,7 +14952,7 @@ }, "Path to a file containing the Plausible Analytics script snippet", "Provides an announcement displayed at the top of the page.", - "The content of the announcement", + "The content of the announcement. Supports markdown formatting.", "Whether this announcement may be dismissed by the user.", { "short": "The icon to display in the announcement", @@ -14915,7 +15010,7 @@ "Field that contains the section of index entries", "Additional parameters to pass when executing a search", "Top navigation options", - "The navbar title. Uses the project title if none is specified.", + "The navbar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed to the left of the\ntitle.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -14931,7 +15026,7 @@ "Collapse tools into the navbar menu when the display becomes\nnarrow.", "Side navigation options", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -14948,7 +15043,7 @@ "Markdown to place above sidebar content (text or file path)", "Markdown to place below sidebar content (text or file path)", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -15024,7 +15119,7 @@ }, "Path to a file containing the Plausible Analytics script snippet", "Provides an announcement displayed at the top of the page.", - "The content of the announcement", + "The content of the announcement. Supports markdown formatting.", "Whether this announcement may be dismissed by the user.", { "short": "The icon to display in the announcement", @@ -15082,7 +15177,7 @@ "Field that contains the section of index entries", "Additional parameters to pass when executing a search", "Top navigation options", - "The navbar title. Uses the project title if none is specified.", + "The navbar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed to the left of the\ntitle.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -15098,7 +15193,7 @@ "Collapse tools into the navbar menu when the display becomes\nnarrow.", "Side navigation options", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -15115,7 +15210,7 @@ "Markdown to place above sidebar content (text or file path)", "Markdown to place below sidebar content (text or file path)", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -17451,7 +17546,7 @@ }, "Path to a file containing the Plausible Analytics script snippet", "Provides an announcement displayed at the top of the page.", - "The content of the announcement", + "The content of the announcement. Supports markdown formatting.", "Whether this announcement may be dismissed by the user.", { "short": "The icon to display in the announcement", @@ -17509,7 +17604,7 @@ "Field that contains the section of index entries", "Additional parameters to pass when executing a search", "Top navigation options", - "The navbar title. Uses the project title if none is specified.", + "The navbar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed to the left of the\ntitle.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -17525,7 +17620,7 @@ "Collapse tools into the navbar menu when the display becomes\nnarrow.", "Side navigation options", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -17542,7 +17637,7 @@ "Markdown to place above sidebar content (text or file path)", "Markdown to place below sidebar content (text or file path)", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -17822,7 +17917,7 @@ }, "Path to a file containing the Plausible Analytics script snippet", "Provides an announcement displayed at the top of the page.", - "The content of the announcement", + "The content of the announcement. Supports markdown formatting.", "Whether this announcement may be dismissed by the user.", { "short": "The icon to display in the announcement", @@ -17880,7 +17975,7 @@ "Field that contains the section of index entries", "Additional parameters to pass when executing a search", "Top navigation options", - "The navbar title. Uses the project title if none is specified.", + "The navbar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed to the left of the\ntitle.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -17896,7 +17991,7 @@ "Collapse tools into the navbar menu when the display becomes\nnarrow.", "Side navigation options", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -17913,7 +18008,7 @@ "Markdown to place above sidebar content (text or file path)", "Markdown to place below sidebar content (text or file path)", "The identifier for this sidebar.", - "The sidebar title. Uses the project title if none is specified.", + "The sidebar title. Uses the project title if none is specified.\nSupports markdown formatting.", "Specification of image that will be displayed in the sidebar.", "Alternate text for the logo image.", "Target href from navbar logo / title. By default, the logo and title\nlink to the root page of the site (/index.html).", @@ -18346,12 +18441,12 @@ "mermaid": "%%" }, "handlers/mermaid/schema.yml": { - "_internalId": 222617, + "_internalId": 222663, "type": "object", "description": "be an object", "properties": { "mermaid-format": { - "_internalId": 222609, + "_internalId": 222655, "type": "enum", "enum": [ "png", @@ -18367,7 +18462,7 @@ "exhaustiveCompletions": true }, "theme": { - "_internalId": 222616, + "_internalId": 222662, "type": "anyOf", "anyOf": [ { diff --git a/src/resources/formats/html/beblob/beblob.ejs b/src/resources/formats/html/beblob/beblob.ejs new file mode 100644 index 00000000000..79b41a8ef01 --- /dev/null +++ b/src/resources/formats/html/beblob/beblob.ejs @@ -0,0 +1,15 @@ +<% let srcHref = beblob['client-url'] || ("https://unpkg.com/beblob@" + beblob.version + "/dist/beblob.js"); %> +
+ diff --git a/src/resources/schema/definitions.yml b/src/resources/schema/definitions.yml index bfc2938fe76..2ee2118e407 100644 --- a/src/resources/schema/definitions.yml +++ b/src/resources/schema/definitions.yml @@ -352,6 +352,64 @@ required: [repo] giscus: ref: giscus-configuration + beblob: + object: + closed: true + properties: + client-id: + string: + description: The GitLab OAuth Application ID used to authenticate commenters. + redirect-uri: + string: + description: | + The redirect URI registered for the GitLab OAuth Application + (must match the value configured in GitLab, typically your site URL). + project-name: + string: + description: | + The name of the GitLab project used to store comments as issues + (e.g. `my-project`). This is the project's name as shown in GitLab — + BeBlob looks the project up by searching GitLab for this name — not + the full `namespace/path`. + issue-mapping-strategy: + string: + description: + short: How pages are mapped to GitLab issues. + long: | + How pages are mapped to GitLab issues + (`url`, `pageTitle`, or `issueId`). + completions: + - url + - pageTitle + - issueId + issue-id: + string: + description: The GitLab issue id to use. Required only when `issue-mapping-strategy` is `issueId`. + gitlab-url: + string: + description: The base URL of the GitLab instance (use this for self-managed GitLab). Defaults to `https://gitlab.com`. + theme: + string: + description: + short: The theme that should be used for BeBlob. + long: | + The theme that should be used for BeBlob + (`dark`, `white`, `light`, or `classic`). + completions: + - dark + - white + - light + - classic + dev-mode: + boolean: + description: Load the BeBlob assets locally from your own server instead of from the CDN. + version: + string: + description: The BeBlob version to load from the CDN. + client-url: + string: + description: Override the default BeBlob client url with a custom client url (e.g. a self-hosted bundle). + required: [client-id, redirect-uri, project-name] hypothesis: anyOf: - boolean diff --git a/src/resources/schema/json-schemas.json b/src/resources/schema/json-schemas.json index 72eb54089a8..f45b5cc9335 100644 --- a/src/resources/schema/json-schemas.json +++ b/src/resources/schema/json-schemas.json @@ -369,6 +369,42 @@ "giscus": { "$ref": "#/$defs/GiscusConfiguration" }, + "beblob": { + "object": { + "properties": { + "client-id": { + "type": "string" + }, + "redirect-uri": { + "type": "string" + }, + "project-name": { + "type": "string" + }, + "issue-mapping-strategy": { + "type": "string" + }, + "issue-id": { + "type": "string" + }, + "gitlab-url": { + "type": "string" + }, + "theme": { + "type": "string" + }, + "dev-mode": { + "type": "boolean" + }, + "version": { + "type": "string" + }, + "client-url": { + "type": "string" + } + } + } + }, "hypothesis": { "anyOf": [ { diff --git a/src/resources/types/schema-types.ts b/src/resources/types/schema-types.ts index 7a53ef7965f..bdd9997606a 100644 --- a/src/resources/types/schema-types.ts +++ b/src/resources/types/schema-types.ts @@ -163,6 +163,31 @@ export type ExternalEngine = { }; /* An execution engine not pre-loaded in Quarto */ export type DocumentCommentsConfiguration = false | { + beblob?: { + "client-id": + string /* The GitLab OAuth Application ID used to authenticate commenters. */; + "redirect-uri": + string /* The redirect URI registered for the GitLab OAuth Application +(must match the value configured in GitLab, typically your site URL). */; + "project-name": + string /* The name of the GitLab project used to store comments as issues +(e.g. `my-project`). This is the project's name as shown in GitLab — +BeBlob looks the project up by searching GitLab for this name — not +the full `namespace/path`. */; + "issue-mapping-strategy"?: string /* How pages are mapped to GitLab issues +(`url`, `pageTitle`, or `issueId`). */; + "issue-id"?: + string /* The GitLab issue id to use. Required only when `issue-mapping-strategy` is `issueId`. */; + "gitlab-url"?: + string /* The base URL of the GitLab instance (use this for self-managed GitLab). Defaults to `https://gitlab.com`. */; + "dev-mode"?: + boolean /* Load the BeBlob assets locally from your own server instead of from the CDN. */; + "client-url"?: + string /* Override the default BeBlob client url with a custom client url (e.g. a self-hosted bundle). */; + theme?: string /* The theme that should be used for BeBlob +(`dark`, `white`, `light`, or `classic`). */; + version?: string; /* The BeBlob version to load from the CDN. */ + }; giscus?: GiscusConfiguration; hypothesis?: boolean | { "client-url"?: diff --git a/src/resources/types/zod/schema-types.ts b/src/resources/types/zod/schema-types.ts index 1471ea898f4..07dbb2a457e 100644 --- a/src/resources/types/zod/schema-types.ts +++ b/src/resources/types/zod/schema-types.ts @@ -152,6 +152,22 @@ export const ZodDocumentCommentsConfiguration = z.union([ "issue-term": z.string(), }).strict().partial().required({ repo: true }), giscus: z.lazy(() => ZodGiscusConfiguration), + beblob: z.object({ + "client-id": z.string(), + "redirect-uri": z.string(), + "project-name": z.string(), + "issue-mapping-strategy": z.string(), + "issue-id": z.string(), + "gitlab-url": z.string(), + theme: z.string(), + "dev-mode": z.boolean(), + version: z.string(), + "client-url": z.string(), + }).strict().partial().required({ + "client-id": true, + "redirect-uri": true, + "project-name": true, + }), hypothesis: z.union([ z.boolean(), z.object({ diff --git a/tests/docs/smoke-all/comments/beblob.qmd b/tests/docs/smoke-all/comments/beblob.qmd new file mode 100644 index 00000000000..06ec1d48906 --- /dev/null +++ b/tests/docs/smoke-all/comments/beblob.qmd @@ -0,0 +1,19 @@ +--- +title: Beblob GitLab comments +format: + html: + comments: + beblob: + client-id: test-client-id + redirect-uri: https://example.com/ + project-name: test-quarto-comments + gitlab-url: https://gitlab.example.com + theme: dark +_quarto: + tests: + html: + ensureHtmlElements: + - ['div#beblob_thread', 'script#beblob-script[data-project-name="test-quarto-comments"][data-gitlab-url="https://gitlab.example.com"]'] +--- + +Some content, with GitLab-backed comments below.