schema stringclasses 471
values | key stringlengths 0 203 | description stringlengths 0 4.37k | object stringlengths 2 322k |
|---|---|---|---|
webextension.json | homepage | Defines the page to be used as the browser's homepage. | {"type": "string"} |
webextension.json | chrome_url_overrides | Use the chrome_url_overrides key to provide a custom replacement for the documents loaded into various special pages usually provided by the browser itself. | {"type": "object", "properties": {"bookmarks": {"type": "string"}, "history": {"type": "string"}, "newtab": {"type": "string"}}} |
webextension.json | bookmarks | Provide a replacement for the page that shows the bookmarks. | {"type": "string"} |
webextension.json | history | Provide a replacement for the page that shows the browsing history. | {"type": "string"} |
webextension.json | newtab | Provide a replacement for the document that's shown in the "new tab" page | {"type": "string"} |
webextension.json | commands | Use the commands API to add keyboard shortcuts that trigger actions in your extension, for example, an action to open the browser action or send a command to the extension. | {"type": "object", "properties": {"_execute_browser_action": {}, "_execute_page_action": {}, "_execute_sidebar_action": {}}, "additionalProperties": {}} |
webextension.json | content_scripts | Content scripts are JavaScript files that run in the context of web pages. | {"type": "array", "minItems": 1, "uniqueItems": true, "items": {"type": "object", "required": ["matches"], "additionalProperties": false, "properties": {"matches": {"type": "array", "minItems": 1, "uniqueItems": true, "items": {}}, "exclude_matches": {"type": "array", "uniqueItems": true, "items": {}}, "css": {"type": "array", "uniqueItems": true, "items": {"type": "string"}}, "js": {}, "run_at": {"type": "string", "enum": ["document_start", "document_end", "document_idle"], "default": "document_idle"}, "all_frames": {"type": "boolean", "default": false}, "include_globs": {"type": "array", "uniqueItems": true, "items": {}}, "exclude_globs": {"type": "array", "uniqueItems": true, "items": {}}, "match_about_blank": {"type": "boolean", "default": false}}}} |
webextension.json | matches | Specifies which pages this content script will be injected into. | {"type": "array", "minItems": 1, "uniqueItems": true, "items": {}} |
webextension.json | exclude_matches | Excludes pages that this content script would otherwise be injected into. | {"type": "array", "uniqueItems": true, "items": {}} |
webextension.json | css | The list of CSS files to be injected into matching pages. These are injected in the order they appear in this array, before any DOM is constructed or displayed for the page. | {"type": "array", "uniqueItems": true, "items": {"type": "string"}} |
webextension.json | js | The list of JavaScript files to be injected into matching pages. These are injected in the order they appear in this array. | {} |
webextension.json | run_at | Controls when the files in js are injected. | {"type": "string", "enum": ["document_start", "document_end", "document_idle"], "default": "document_idle"} |
webextension.json | all_frames | Controls whether the content script runs in all frames of the matching page, or only the top frame. | {"type": "boolean", "default": false} |
webextension.json | include_globs | Applied after matches to include only those URLs that also match this glob. Intended to emulate the @include Greasemonkey keyword. | {"type": "array", "uniqueItems": true, "items": {}} |
webextension.json | exclude_globs | Applied after matches to exclude URLs that match this glob. Intended to emulate the @exclude Greasemonkey keyword. | {"type": "array", "uniqueItems": true, "items": {}} |
webextension.json | match_about_blank | Whether to insert the content script on about:blank and about:srcdoc. | {"type": "boolean", "default": false} |
webextension.json | default_locale | Specifies the subdirectory of _locales that contains the default strings for this extension. | {"type": "string", "default": "en"} |
webextension.json | description | A plain text description of the extension | {"type": "string"} |
webextension.json | developer | The name of the extension's developer and their homepage URL, intended for display in the browser's user interface. | {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string", "format": "uri"}}} |
webextension.json | devtools_page | A DevTools extension adds functionality to the Chrome DevTools. It can add new UI panels and sidebars, interact with the inspected page, get information about network requests, and more. | {"type": "string"} |
webextension.json | homepage_url | The URL of the homepage for this add-on. The add-on management page will contain a link to this URL. | {"type": "string", "format": "uri"} |
webextension.json | icons | One or more icons that represent the extension, app, or theme. Recommended format: PNG; also BMP, GIF, ICO, JPEG. | {"additionalProperties": false, "patternProperties": {"^[1-9]\\d*$": {"type": "string"}}} |
webextension.json | incognito | Specify how this extension will behave if allowed to run in incognito mode. | {"type": "string", "enum": ["spanning", "split", "not_allowed"], "default": "spanning"} |
webextension.json | manifest_version | One integer specifying the version of the manifest file format your package requires. | {"type": "integer", "enum": [2]} |
webextension.json | name | The name of the extension | {"type": "string", "minLength": 2, "maxLength": 45} |
webextension.json | omnibox | The omnibox API allows you to register a keyword with Google Chrome's address bar, which is also known as the omnibox. | {"type": "object", "required": ["keyword"], "properties": {"keyword": {"type": "string"}}} |
webextension.json | keyword | The keyword that will trigger your extension. | {"type": "string"} |
webextension.json | optional_permissions | Use the optional_permissions key to list permissions which you want to ask for at runtime, after your add-on has been installed. | {"type": "array", "uniqueItems": true, "items": {"anyOf": [{"type": "string"}, {"enum": ["activeTab", "background", "bookmarks", "clipboardRead", "clipboardWrite", "contentSettings", "contextMenus", "cookies", "debugger", "geolocation", "history", "idle", "management", "notifications", "pageCapture", "tabs", "topSites", "webNavigation", "webRequest", "webRequestBlocking"]}]}} |
webextension.json | options_ui | Use the options_ui key to define an options page for your add-on. | {"type": "object", "required": ["page"], "properties": {"page": {"type": "string"}, "browser_style": {"type": "boolean", "default": true}, "open_in_tab": {"type": "boolean", "default": false}}} |
webextension.json | page | The path to an HTML file containing the specification of your options page. | {"type": "string"} |
webextension.json | browser_style | Use this to include a stylesheet in your page that will make it look consistent with the browser's UI and with other add-ons that use the browser_style property. | {"type": "boolean", "default": true} |
webextension.json | open_in_tab | If true, the options page will open in a normal browser tab, rather than being integrated into the browser's add-ons manager. | {"type": "boolean", "default": false} |
webextension.json | page_action | Use the chrome.pageAction API to put icons inside the address bar. Page actions represent actions that can be taken on the current page, but that aren't applicable to all pages. | {"type": "object", "properties": {"browser_style": {"type": "boolean", "default": false}, "default_icon": {}, "default_popup": {"type": "string"}, "default_title": {"type": "string"}}} |
webextension.json | browser_style | Use this to include a stylesheet in your popup that will make it look consistent with the browser's UI and with other add-ons that use the browser_style property. Although this key defaults to false, it's recommended that you include it and set it to true. | {"type": "boolean", "default": false} |
webextension.json | default_popup | The popup appears when the user clicks the icon. | {"type": "string"} |
webextension.json | default_title | Tooltip for the main toolbar icon. | {"type": "string"} |
webextension.json | permissions | Permissions help to limit damage if your extension or app is compromised by malware. Some permissions are also displayed to users before installation, as detailed in Permission Warnings. | {} |
webextension.json | protocol_handlers | Use this key to register one of more web-based protocol handlers. | {"type": "array", "items": {"type": "object", "properties": {"protocol": {"anyOf": [{"enum": ["bitcoin", "geo", "im", "irc", "ircs", "magnet", "mailto", "mms", "news", "nntp", "sip", "sms", "smsto", "ssh", "tel", "urn", "webcal", "wtai", "xmpp"]}, {"type": "string", "pattern": "^(ext|web)\\+[0-9a-z]+"}]}, "name": {"type": "string"}, "uriTemplate": {"pattern": "%s"}}}} |
webextension.json | items | Use this object to register a single web-based protocol handler | {"type": "object", "properties": {"protocol": {"anyOf": [{"enum": ["bitcoin", "geo", "im", "irc", "ircs", "magnet", "mailto", "mms", "news", "nntp", "sip", "sms", "smsto", "ssh", "tel", "urn", "webcal", "wtai", "xmpp"]}, {"type": "string", "pattern": "^(ext|web)\\+[0-9a-z]+"}]}, "name": {"type": "string"}, "uriTemplate": {"pattern": "%s"}}} |
webextension.json | protocol | A string defining the protocol. | {"anyOf": [{"enum": ["bitcoin", "geo", "im", "irc", "ircs", "magnet", "mailto", "mms", "news", "nntp", "sip", "sms", "smsto", "ssh", "tel", "urn", "webcal", "wtai", "xmpp"]}, {"type": "string", "pattern": "^(ext|web)\\+[0-9a-z]+"}]} |
webextension.json | protocol | A pre-existing protocol allowed for use with WebExtensions. See https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/protocol_handlers for more information. | {"enum": ["bitcoin", "geo", "im", "irc", "ircs", "magnet", "mailto", "mms", "news", "nntp", "sip", "sms", "smsto", "ssh", "tel", "urn", "webcal", "wtai", "xmpp"]} |
webextension.json | protocol | A custom-named protocol. These MUST be prefixed with 'web+' or 'ext+', followed by a string consisting of only lower-case ASCII characters. | {"type": "string", "pattern": "^(ext|web)\\+[0-9a-z]+"} |
webextension.json | name | A string representing the name of the protocol handler. This will be displayed to the user when they are being asked if they want this handler to open the link. | {"type": "string"} |
webextension.json | uriTemplate | A string representing the URL of the handler. This string must include "%s" as a placeholder: this will be replaced with the escaped URL of the document to be handled. This URL might be a true URL, or it could be a phone number, email address, or so forth. | {"pattern": "%s"} |
webextension.json | short_name | The short name is typically used where there is insufficient space to display the full name. | {"type": "string", "minLength": 2, "maxLength": 12} |
webextension.json | sidebar_action | A sidebar is a pane that is displayed at the left-hand side of the browser window, next to the web page. The browser provides a UI that enables the user to see the currently available sidebars and to select a sidebar to display. | {"type": "object", "properties": {"default_icon": {}, "default_panel": {"type": "string"}, "default_title": {"type": "string"}}} |
webextension.json | default_panel | The path to an HTML file that specifies the sidebar's contents. | {"type": "string"} |
webextension.json | default_title | Title for the sidebar. This is used in the browser UI for listing and opening sidebars, and is displayed at the top of the sidebar when it is open. | {"type": "string"} |
webextension.json | version | One to four dot-separated integers identifying the version of this extension. | {"pattern": "^(?:\\d{1,5}\\.){0,3}\\d{1,5}$"} |
webextension.json | web_accessible_resources | An array of strings specifying the paths (relative to the package root) of packaged resources that are expected to be usable in the context of a web page. | {"type": "array", "uniqueItems": true, "items": {"type": "string"}} |
gitversion.json | Output from the GitVersion tool, describing the current version of the repo it was executed from | {"$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": true, "default": {}, "properties": {"Major": {"type": "integer", "default": 0, "examples": [0]}, "Minor": {"type": "integer", "default": 0, "examples": [7]}, "Patch": {"type": "integer", "default": 0, "examples": [1]}, "PreReleaseTag": {"type": "string", "default": "", "examples": ["alpha"]}, "PreReleaseTagWithDash": {"type": "string", "default": "", "examples": ["-alpha"]}, "PreReleaseLabel": {"type": "string", "default": "", "examples": ["alpha"]}, "PreReleaseNumber": {"type": "integer", "default": 0, "examples": [1]}, "WeightedPreReleaseNumber": {"type": "integer", "default": 0, "examples": [55001]}, "BuildMetaData": {"type": "string", "default": "", "examples": [""]}, "BuildMetaDataPadded": {"type": "string", "default": "", "examples": [""]}, "FullBuildMetaData": {"type": "string", "default": "", "examples": ["Branch.master.Sha.3a34284b9e04010912f491ce662c813ebfdcae0b"]}, "MajorMinorPatch": {"type": "string", "default": "", "examples": ["0.7.1"]}, "SemVer": {"type": "string", "default": "", "examples": ["0.7.1-alpha.1"]}, "LegacySemVer": {"type": "string", "default": "", "examples": ["0.7.1-alpha1"]}, "LegacySemVerPadded": {"type": "string", "default": "", "examples": ["0.7.1-alpha0001"]}, "AssemblySemVer": {"type": "string", "default": "", "examples": ["0.7.0.0"]}, "AssemblySemFileVer": {"type": "string", "default": "", "examples": ["0.7.1.0"]}, "FullSemVer": {"type": "string", "default": "", "examples": ["0.7.1-alpha.1"]}, "InformationalVersion": {"type": "string", "default": "", "examples": ["0.7.1-alpha.1+Branch.master.Sha.3a34284b9e04010912f491ce662c813ebfdcae0b"]}, "BranchName": {"type": "string", "default": "", "examples": ["master"]}, "EscapedBranchName": {"type": "string", "default": "", "examples": ["master"]}, "Sha": {"type": "string", "default": "", "examples": ["3a34284b9e04010912f491ce662c813ebfdcae0b"], "maxLength": 40, "minLength": 40}, "ShortSha": {"type": "string", "default": "", "examples": ["3a34284"], "maxLength": 7, "minLength": 7}, "NuGetVersionV2": {"type": "string", "default": "", "examples": ["0.7.1-alpha0001"]}, "NuGetVersion": {"type": "string", "default": "", "examples": ["0.7.1-alpha0001"]}, "NuGetPreReleaseTagV2": {"type": "string", "default": "", "examples": ["alpha0001"]}, "NuGetPreReleaseTag": {"type": "string", "default": "", "examples": ["alpha0001"]}, "VersionSourceSha": {"type": "string", "default": "", "examples": ["1014284b9e04010912f491ce662c813ebfdcaccd"]}, "CommitsSinceVersionSource": {"type": "integer", "default": 0, "examples": [1]}, "CommitsSinceVersionSourcePadded": {"type": "string", "default": "", "examples": ["0001"], "maxLength": 4, "minLength": 4}, "CommitDate": {"type": "string", "default": "", "examples": ["2020-05-09"]}}, "required": ["Major", "Minor", "Patch", "PreReleaseTag", "PreReleaseTagWithDash", "PreReleaseLabel", "PreReleaseNumber", "WeightedPreReleaseNumber", "BuildMetaData", "BuildMetaDataPadded", "FullBuildMetaData", "MajorMinorPatch", "SemVer", "LegacySemVer", "LegacySemVerPadded", "AssemblySemVer", "AssemblySemFileVer", "FullSemVer", "InformationalVersion", "BranchName", "EscapedBranchName", "Sha", "ShortSha", "NuGetVersionV2", "NuGetVersion", "NuGetPreReleaseTagV2", "NuGetPreReleaseTag", "VersionSourceSha", "CommitsSinceVersionSource", "CommitsSinceVersionSourcePadded", "CommitDate"], "type": "object"} | |
gitversion.json | Major | {"type": "integer", "default": 0, "examples": [0]} | |
gitversion.json | Minor | {"type": "integer", "default": 0, "examples": [7]} | |
gitversion.json | Patch | {"type": "integer", "default": 0, "examples": [1]} | |
gitversion.json | PreReleaseTag | {"type": "string", "default": "", "examples": ["alpha"]} | |
gitversion.json | PreReleaseTagWithDash | {"type": "string", "default": "", "examples": ["-alpha"]} | |
gitversion.json | PreReleaseLabel | {"type": "string", "default": "", "examples": ["alpha"]} | |
gitversion.json | PreReleaseNumber | {"type": "integer", "default": 0, "examples": [1]} | |
gitversion.json | WeightedPreReleaseNumber | A summation of branch specific pre-release-weight and the PreReleaseNumber. It can be used to obtain a monotonically increasing version number across the branches | {"type": "integer", "default": 0, "examples": [55001]} |
gitversion.json | BuildMetaData | {"type": "string", "default": "", "examples": [""]} | |
gitversion.json | BuildMetaDataPadded | {"type": "string", "default": "", "examples": [""]} | |
gitversion.json | FullBuildMetaData | Includes branch and commit hash | {"type": "string", "default": "", "examples": ["Branch.master.Sha.3a34284b9e04010912f491ce662c813ebfdcae0b"]} |
gitversion.json | MajorMinorPatch | {"type": "string", "default": "", "examples": ["0.7.1"]} | |
gitversion.json | SemVer | {"type": "string", "default": "", "examples": ["0.7.1-alpha.1"]} | |
gitversion.json | LegacySemVer | For pre v2.0 compatibility | {"type": "string", "default": "", "examples": ["0.7.1-alpha1"]} |
gitversion.json | LegacySemVerPadded | {"type": "string", "default": "", "examples": ["0.7.1-alpha0001"]} | |
gitversion.json | AssemblySemVer | Semantic version for windows/.NET assembly use. If configured as Major.Minor, gives you the ability to roll out hot fixes to your assembly without breaking existing applications that may be referencing it. | {"type": "string", "default": "", "examples": ["0.7.0.0"]} |
gitversion.json | AssemblySemFileVer | {"type": "string", "default": "", "examples": ["0.7.1.0"]} | |
gitversion.json | FullSemVer | {"type": "string", "default": "", "examples": ["0.7.1-alpha.1"]} | |
gitversion.json | InformationalVersion | Combined version and build metadata | {"type": "string", "default": "", "examples": ["0.7.1-alpha.1+Branch.master.Sha.3a34284b9e04010912f491ce662c813ebfdcae0b"]} |
gitversion.json | BranchName | Repository branch name | {"type": "string", "default": "", "examples": ["master"]} |
gitversion.json | EscapedBranchName | Repository branch name, containing only alphanumeric characters and - | {"type": "string", "default": "", "examples": ["master"]} |
gitversion.json | Sha | The commit hash that was used for the build | {"type": "string", "default": "", "examples": ["3a34284b9e04010912f491ce662c813ebfdcae0b"], "maxLength": 40, "minLength": 40} |
gitversion.json | ShortSha | A shorter representation of the build commit hash | {"type": "string", "default": "", "examples": ["3a34284"], "maxLength": 7, "minLength": 7} |
gitversion.json | NuGetVersionV2 | NuGet package version string, using semantic version v2.0 | {"type": "string", "default": "", "examples": ["0.7.1-alpha0001"]} |
gitversion.json | NuGetVersion | NuGet package version string, without semantic version v2.0 format | {"type": "string", "default": "", "examples": ["0.7.1-alpha0001"]} |
gitversion.json | NuGetPreReleaseTagV2 | NuGet package pre-release tag for semantic version v2.0 | {"type": "string", "default": "", "examples": ["alpha0001"]} |
gitversion.json | NuGetPreReleaseTag | NuGet package pre-release tag, without semantic version v2.0 format | {"type": "string", "default": "", "examples": ["alpha0001"]} |
gitversion.json | VersionSourceSha | The hash of the commit used as version source | {"type": "string", "default": "", "examples": ["1014284b9e04010912f491ce662c813ebfdcaccd"]} |
gitversion.json | CommitsSinceVersionSource | The number of commits made since the version source commit | {"type": "integer", "default": 0, "examples": [1]} |
gitversion.json | CommitsSinceVersionSourcePadded | The number of commits made since the version source commit (zero-padded) | {"type": "string", "default": "", "examples": ["0001"], "maxLength": 4, "minLength": 4} |
gitversion.json | CommitDate | {"type": "string", "default": "", "examples": ["2020-05-09"]} | |
container-structure-test.json | The Container Structure Tests provide a powerful framework to validate the structure of a container image. These tests can be used to check the output of commands in an image, as well as verify metadata and contents of the filesystem | {"$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": {"envVar": {"type": "object", "additionalProperties": false, "required": ["key", "value"], "properties": {"key": {"type": "string"}, "value": {"type": "string"}}}, "label": {"type": "object", "additionalProperties": false, "required": ["key", "value"], "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "isRegex": {"type": "boolean"}}}}, "properties": {"schemaVersion": {"type": "string", "default": "2.0.0"}, "commandTests": {"type": "array", "items": {"type": "object", "required": ["name", "command"], "properties": {"name": {"type": "string"}, "setup": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "teardown": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "envVars": {"type": "array", "items": {}}, "command": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}, "expectedOutput": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "excludedOutput": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "expectedError": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "excludedError": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "exitCode": {"type": "integer"}}}}, "fileExistenceTests": {"type": "array", "items": {"type": "object", "required": ["name", "path", "shouldExist"], "properties": {"name": {"type": "string"}, "path": {"type": "string", "default": "/"}, "shouldExist": {"type": "boolean", "default": true}, "permissions": {"type": "string"}, "uid": {"type": "number"}, "gid": {"type": "number"}, "isExecutableBy": {"type": "string", "enum": ["owner", "group", "any", "other"]}}}}, "fileContentTests": {"type": "array", "items": {"type": "object", "required": ["name", "path"], "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "expectedContents": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "excludedContents": {"type": "array", "minItems": 1, "items": {"type": "string"}}}}}, "licenseTests": {"type": "array", "items": {"type": "object", "required": ["debian"], "properties": {"debian": {"type": "boolean", "default": true}, "files": {"type": "array", "minItems": 1, "items": {"type": "string"}}}}}, "metadataTest": {"type": "object", "properties": {"env": {"type": "array", "minItems": 1, "items": {}}, "labels": {"type": "array", "minItems": 1, "items": {}}, "entrypoint": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "cmd": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "exposedPorts": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "unexposedPorts": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "volumes": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "unmountedVolumes": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "workdir": {"type": "string"}}}, "globalEnvVars": {"type": "array", "minItems": 1, "items": {}}}, "required": ["schemaVersion"], "type": "object"} | |
container-structure-test.json | key | The name of the environment variables | {"type": "string"} |
container-structure-test.json | value | The value of the environment variable | {"type": "string"} |
container-structure-test.json | key | The name of the label | {"type": "string"} |
container-structure-test.json | value | The value of the label | {"type": "string"} |
container-structure-test.json | isRegex | Interpreted the value as regex | {"type": "boolean"} |
container-structure-test.json | schemaVersion | The schema version of Structure Tests. | {"type": "string", "default": "2.0.0"} |
container-structure-test.json | commandTests | A list of command tests | {"type": "array", "items": {"type": "object", "required": ["name", "command"], "properties": {"name": {"type": "string"}, "setup": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "teardown": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "envVars": {"type": "array", "items": {}}, "command": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}, "expectedOutput": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "excludedOutput": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "expectedError": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "excludedError": {"type": "array", "minItems": 1, "items": {"type": "string"}}, "exitCode": {"type": "integer"}}}} |
container-structure-test.json | name | The name of the test | {"type": "string"} |
container-structure-test.json | setup | A list of commands (each with optional flags) to run before the actual command under test. | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}} |
container-structure-test.json | teardown | A list of commands (each with optional flags) to run after the actual command under test. | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}} |
container-structure-test.json | command | The command to run in the test. | {"type": "string"} |
container-structure-test.json | args | The arguments to pass to the command. | {"type": "array", "items": {"type": "string"}} |
container-structure-test.json | expectedOutput | List of regexes that should match the stdout from running the command. | {"type": "array", "minItems": 1, "items": {"type": "string"}} |
container-structure-test.json | excludedOutput | List of regexes that should not match the stdout from running the command.. | {"type": "array", "minItems": 1, "items": {"type": "string"}} |
container-structure-test.json | expectedError | List of regexes that should match the stderr from running the command. | {"type": "array", "minItems": 1, "items": {"type": "string"}} |
container-structure-test.json | excludedError | List of regexes that should not match the stderr from running the command. | {"type": "array", "minItems": 1, "items": {"type": "string"}} |
container-structure-test.json | exitCode | Exit code that the command should exit with. | {"type": "integer"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.