schema stringclasses 471
values | key stringlengths 0 203 | description stringlengths 0 4.37k | object stringlengths 2 322k |
|---|---|---|---|
config_schema_v1.0.json | run | A list of setup commands to run in the environment after your system packages and Python packages have been installed. If you're familiar with Docker, it's like a `RUN` instruction in your `Dockerfile`. | {"type": ["array", "null"], "additionalItems": true, "items": {"anyOf": [{"type": "string"}, {"type": "object", "properties": {"command": {"type": "string"}, "mounts": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string", "enum": ["secret"]}, "id": {"type": "string"}, "target": {"type": "string"}}, "required": ["type", "id", "target"]}}}, "required": ["command"]}]}} |
config_schema_v1.0.json | image | The name given to built Docker images. If you want to push to a registry, this should also include the registry name. | {"type": "string"} |
config_schema_v1.0.json | predict | The pointer to the `Predictor` object in your code, which defines how predictions are run on your model. | {"type": "string"} |
config_schema_v1.0.json | train | The pointer to the `Predictor` object in your code, which defines how predictions are run on your model. | {"type": "string"} |
launchsettings.json | windowsAuthentication | Set to true to enable windows authentication for your site in IIS and IIS Express. | {"type": "boolean", "default": false} |
launchsettings.json | anonymousAuthentication | Set to true to enable anonymous authentication for your site in IIS and IIS Express. | {"type": "boolean", "default": true} |
launchsettings.json | iisExpress | Site settings to use with IISExpress profiles. | {"type": "object", "allOf": [{}]} |
launchsettings.json | iis | Site settings to use with IIS profiles. | {"type": "object", "allOf": [{}]} |
launchsettings.json | applicationUrl | The URL of the web site. | {"type": "string", "format": "uri", "default": ""} |
launchsettings.json | sslPort | The SSL port to use for the web site. | {"type": "integer", "maximum": 65535, "minimum": 0, "default": 0} |
launchsettings.json | commandName | Identifies the debug target to run. | {"type": "string", "enum": ["Executable", "Project", "IIS", "IISExpress", "DebugRoslynComponent", "Docker", "DockerCompose", "MsixPackage"], "default": "", "minLength": 1} |
launchsettings.json | commandLineArgs | The arguments to pass to the target being run. | {"type": "string", "default": ""} |
launchsettings.json | executablePath | An absolute or relative path to the executable. | {"type": "string", "default": ""} |
launchsettings.json | workingDirectory | Sets the working directory of the command. | {"type": "string"} |
launchsettings.json | launchBrowser | Set to true if the browser should be launched. | {"type": "boolean", "default": false} |
launchsettings.json | launchUrl | The relative URL to launch in the browser. | {"type": "string"} |
launchsettings.json | environmentVariables | Set the environment variables as key/value pairs. | {"type": "object", "additionalProperties": {"type": "string"}} |
launchsettings.json | applicationUrl | A semi-colon delimited list of URL(s) to configure for the web server. | {"type": "string"} |
launchsettings.json | nativeDebugging | Set to true to enable native code debugging. | {"type": "boolean", "default": false} |
launchsettings.json | externalUrlConfiguration | Set to true to disable configuration of the site when running the Asp.Net Core Project profile. | {"type": "boolean", "default": false} |
launchsettings.json | use64Bit | Set to true to run the 64 bit version of IIS Express, false to run the x86 version. | {"type": "boolean", "default": true} |
launchsettings.json | ancmHostingModel | Specifies the hosting model to use when running ASP.NET core projects in IIS and IIS Express. | {"enum": ["InProcess", "OutOfProcess"], "default": false} |
launchsettings.json | sqlDebugging | Set to true to enable debugging of SQL scripts and stored procedures. | {"type": "boolean", "default": false} |
launchsettings.json | jsWebView2Debugging | Set to true to enable the JavaScript debugger for Microsoft Edge (Chromium) based WebView2. | {"type": "boolean", "default": false} |
launchsettings.json | leaveRunningOnClose | Set to true to leave the IIS application pool running when the project is closed. | {"type": "boolean", "default": false} |
launchsettings.json | remoteDebugEnabled | Set to true to have the debugger attach to a process on a remote computer. | {"type": "boolean", "default": false} |
launchsettings.json | remoteDebugMachine | The name and port number of the remote machine in name:port format. | {"type": "string"} |
launchsettings.json | authenticationMode | The authentication scheme to use when connecting to the remote computer. | {"enum": ["None", "Windows"], "default": "None"} |
launchsettings.json | hotReloadEnabled | Set to true to enable applying code changes to the running application. | {"type": "boolean", "default": true} |
launchsettings.json | publishAllPorts | Publish all exposed ports to random ports in Docker (-P). | {"type": "boolean", "default": true} |
launchsettings.json | useSSL | Set to true to bind the SSL port. | {"type": "boolean", "default": true} |
launchsettings.json | sslPort | The SSL port to use for the web site. | {"type": "integer", "maximum": 65535, "minimum": 0, "default": 0} |
launchsettings.json | httpPort | The HTTP port to use for the web site. | {"type": "integer", "maximum": 65535, "minimum": 0, "default": 0} |
launchsettings.json | dotnetRunMessages | Set to true to display a message when the project is building. | {"type": "boolean", "default": true} |
launchsettings.json | inspectUri | The url to enable debugging on a Blazor WebAssembly application. | {"type": "string", "default": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}"} |
launchsettings.json | targetProject | A relative ot absolute path to the .NET project file on which Roslyn component should be executed. Relative to the current project's folder. | {"type": "string", "default": ""} |
launchsettings.json | profiles | A list of debug profiles | {"type": "object", "additionalProperties": {}} |
launchsettings.json | iisSettings | IIS and IIS Express settings | {"type": "object", "allOf": [{}]} |
aiproj-1.1.json | Settings for project analysis by the Application Inspector | {"$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "id": "https://json.schemastore.org/aiproj-1.1.json", "properties": {"$schema": {"type": "string"}, "Version": {"type": "string", "enum": ["1.0", "1.1"]}, "BlackBoxSettings": {"type": ["object", "null"], "additionalProperties": false, "properties": {"AdditionalHttpHeaders": {"type": ["array", "null"], "items": {"type": "object", "properties": {"Key": {"type": "string"}, "Value": {"type": "string"}}}}, "WhiteListedAddresses": {"type": ["array", "null"], "items": {"type": "object", "properties": {"Address": {"type": "string"}, "Format": {"type": "string", "enum": ["Wildcard", "ExactMatch", "RegExp"]}}}}, "BlackListedAddresses": {"type": ["array", "null"], "items": {"type": "object", "properties": {"Address": {"type": "string"}, "Format": {"type": "string", "enum": ["Wildcard", "ExactMatch", "RegExp"]}}}}, "Authentication": {"oneOf": [{"type": "object", "required": ["Cookie", "Type"], "properties": {"Type": {"enum": ["RawCookie"]}, "Cookie": {"type": "object"}}}, {"type": "object", "required": ["Form", "Type"], "properties": {"Type": {"enum": ["Form"]}, "Form": {"type": "object"}}}, {"type": "object", "required": ["Http", "Type"], "properties": {"Type": {"enum": ["Http"]}, "Http": {"type": "object"}}}, {"type": "object", "required": ["Type"], "properties": {"Type": {"enum": ["None"]}}}, {"type": "null"}], "type": ["object", "null"], "additionalProperties": false, "properties": {"Cookie": {"type": ["object", "null"], "required": ["Cookie", "ValidationAddress", "ValidationTemplate"], "additionalProperties": false, "properties": {"Cookie": {"type": "string"}, "ValidationAddress": {"type": "string"}, "ValidationTemplate": {"type": "string"}}}, "Form": {"type": ["object", "null"], "additionalProperties": false, "properties": {"FormDetection": {"type": "string", "enum": ["Auto", "Manual"]}, "FormAddress": {}, "FormXPath": {}, "Login": {}, "LoginKey": {}, "Password": {}, "PasswordKey": {}, "ValidationTemplate": {}}, "anyOf": [{"properties": {"FormDetection": {"enum": ["Auto"]}, "FormAddress": {"type": ["string"]}, "FormXPath": {"type": ["null", "string"]}, "Login": {"type": "string"}, "LoginKey": {"type": ["null", "string"]}, "Password": {"type": "string"}, "PasswordKey": {"type": ["null", "string"]}, "ValidationTemplate": {"type": ["string"]}}, "required": ["FormDetection", "Login", "Password", "FormAddress", "ValidationTemplate"]}, {"properties": {"FormDetection": {"enum": ["Manual"]}, "FormAddress": {"type": ["string"]}, "FormXPath": {"type": ["string"]}, "Login": {"type": "string"}, "LoginKey": {"type": ["string"]}, "Password": {"type": "string"}, "PasswordKey": {"type": ["string"]}, "ValidationTemplate": {"type": ["string"]}}, "required": ["FormDetection", "Login", "Password", "FormAddress", "ValidationTemplate", "LoginKey", "PasswordKey", "FormXPath"]}]}, "Http": {"type": ["object", "null"], "additionalProperties": false, "required": ["Login", "Password", "ValidationAddress"], "properties": {"Login": {"type": "string"}, "Password": {"type": "string"}, "ValidationAddress": {"type": "string"}}}, "Type": {"type": "string", "enum": ["Form", "Http", "RawCookie", "None"]}}}, "Level": {"type": "string", "enum": ["None", "Fast", "Full", "Normal"]}, "ProxySettings": {"type": ["object", "null"], "additionalProperties": false, "properties": {"Enabled": {"type": "boolean"}, "Host": {"type": ["null", "string"]}, "Login": {"type": ["null", "string"]}, "Password": {"type": ["null", "string"]}, "Port": {"type": "integer"}, "Type": {"type": "string", "enum": ["Http", "Socks4", "Socks5"]}}}, "RunAutocheckAfterScan": {"type": "boolean"}, "ScanScope": {"type": "string", "enum": ["Domain", "Folder", "Path"]}, "Site": {"type": "string"}, "SslCheck": {"type": "boolean"}}}, "CustomParameters": {"type": ["null", "string"]}, "DotNetSettings": {"type": ["object", "null"], "additionalProperties": false, "properties": {"ProjectType": {"type": "string", "enum": ["None", "Solution", "WebSite"]}, "SolutionFile": {"type": ["null", "string"]}}}, "JavaSettings": {"type": ["object", "null"], "additionalProperties": false, "properties": {"Parameters": {"type": ["null", "string"]}, "UnpackUserPackages": {"type": "boolean"}, "UserPackagePrefixes": {"type": ["null", "string"]}, "Version": {"type": "string", "enum": ["v1_8", "v1_11"]}}}, "MailingProjectSettings": {"type": ["object", "null"], "additionalProperties": false, "properties": {"Enabled": {"type": "boolean"}, "MailProfileName": {"type": ["null", "string"]}, "EmailRecipients": {"type": "array", "items": {"type": "string", "format": "email"}}}, "oneOf": [{"type": "object", "properties": {"Enabled": {"enum": [true]}, "MailProfileName": {"type": "string", "minLength": 1}, "EmailRecipients": {"type": "array", "minItems": 1, "maxItems": 10}}, "required": ["Enabled", "MailProfileName", "EmailRecipients"]}, {"properties": {"Enabled": {"enum": [false]}, "MailProfileName": {"type": ["null", "string"]}, "EmailRecipients": {"type": "array", "minItems": 0, "maxItems": 10}}, "required": ["Enabled"]}]}, "ProgrammingLanguage": {"type": "string", "enum": ["Java", "CSharp", "VB", "Php", "JavaScript", "Python", "ObjectiveC", "Swift", "CAndCPlusPlus", "Go", "Kotlin", "Sql"]}, "ProjectName": {"type": "string"}, "ScanModules": {"type": "array", "uniqueItems": true, "items": {"type": "string", "enum": ["Configuration", "Components", "BlackBox", "DataFlowAnalysis", "PatternMatching", "VulnerableSourceCode"]}}, "SkipGitIgnoreFiles": {"type": "boolean"}, "UsePublicAnalysisMethod": {"type": "boolean"}, "UseSastRules": {"type": "boolean"}, "UseCustomPmRules": {"type": "boolean"}, "UseSecurityPolicies": {"type": "boolean"}, "DownloadDependencies": {"type": ["null", "boolean"]}}, "required": ["ProjectName", "ProgrammingLanguage", "ScanModules"], "type": "object"} | |
aiproj-1.1.json | AdditionalHttpHeaders | Dictionary of additional HTTP headers | {"type": ["array", "null"], "items": {"type": "object", "properties": {"Key": {"type": "string"}, "Value": {"type": "string"}}}} |
aiproj-1.1.json | WhiteListedAddresses | Addresses, that was added in white list | {"type": ["array", "null"], "items": {"type": "object", "properties": {"Address": {"type": "string"}, "Format": {"type": "string", "enum": ["Wildcard", "ExactMatch", "RegExp"]}}}} |
aiproj-1.1.json | Address | Address value | {"type": "string"} |
aiproj-1.1.json | Format | Type of address | {"type": "string", "enum": ["Wildcard", "ExactMatch", "RegExp"]} |
aiproj-1.1.json | BlackListedAddresses | Addresses, that was added in black list | {"type": ["array", "null"], "items": {"type": "object", "properties": {"Address": {"type": "string"}, "Format": {"type": "string", "enum": ["Wildcard", "ExactMatch", "RegExp"]}}}} |
aiproj-1.1.json | Address | Address value | {"type": "string"} |
aiproj-1.1.json | Format | Type of address | {"type": "string", "enum": ["Wildcard", "ExactMatch", "RegExp"]} |
aiproj-1.1.json | Cookie | Cookie authentication options | {"type": ["object", "null"], "required": ["Cookie", "ValidationAddress", "ValidationTemplate"], "additionalProperties": false, "properties": {"Cookie": {"type": "string"}, "ValidationAddress": {"type": "string"}, "ValidationTemplate": {"type": "string"}}} |
aiproj-1.1.json | ValidationAddress | Verification address | {"type": "string"} |
aiproj-1.1.json | ValidationTemplate | String to search for | {"type": "string"} |
aiproj-1.1.json | Form | Form-based authentication options | {"type": ["object", "null"], "additionalProperties": false, "properties": {"FormDetection": {"type": "string", "enum": ["Auto", "Manual"]}, "FormAddress": {}, "FormXPath": {}, "Login": {}, "LoginKey": {}, "Password": {}, "PasswordKey": {}, "ValidationTemplate": {}}, "anyOf": [{"properties": {"FormDetection": {"enum": ["Auto"]}, "FormAddress": {"type": ["string"]}, "FormXPath": {"type": ["null", "string"]}, "Login": {"type": "string"}, "LoginKey": {"type": ["null", "string"]}, "Password": {"type": "string"}, "PasswordKey": {"type": ["null", "string"]}, "ValidationTemplate": {"type": ["string"]}}, "required": ["FormDetection", "Login", "Password", "FormAddress", "ValidationTemplate"]}, {"properties": {"FormDetection": {"enum": ["Manual"]}, "FormAddress": {"type": ["string"]}, "FormXPath": {"type": ["string"]}, "Login": {"type": "string"}, "LoginKey": {"type": ["string"]}, "Password": {"type": "string"}, "PasswordKey": {"type": ["string"]}, "ValidationTemplate": {"type": ["string"]}}, "required": ["FormDetection", "Login", "Password", "FormAddress", "ValidationTemplate", "LoginKey", "PasswordKey", "FormXPath"]}]} |
aiproj-1.1.json | FormDetection | Type of form authentication detection | {"type": "string", "enum": ["Auto", "Manual"]} |
aiproj-1.1.json | ValidationTemplate | String to search for | {} |
aiproj-1.1.json | Http | HTTP Basic authentication options | {"type": ["object", "null"], "additionalProperties": false, "required": ["Login", "Password", "ValidationAddress"], "properties": {"Login": {"type": "string"}, "Password": {"type": "string"}, "ValidationAddress": {"type": "string"}}} |
aiproj-1.1.json | ProxySettings | Proxy server settings | {"type": ["object", "null"], "additionalProperties": false, "properties": {"Enabled": {"type": "boolean"}, "Host": {"type": ["null", "string"]}, "Login": {"type": ["null", "string"]}, "Password": {"type": ["null", "string"]}, "Port": {"type": "integer"}, "Type": {"type": "string", "enum": ["Http", "Socks4", "Socks5"]}}} |
aiproj-1.1.json | RunAutocheckAfterScan | Autocheck vulnerabilities after scanning | {"type": "boolean"} |
aiproj-1.1.json | CustomParameters | Custom kernel startup parameters | {"type": ["null", "string"]} |
aiproj-1.1.json | SolutionFile | Path to a solution or project | {"type": ["null", "string"]} |
aiproj-1.1.json | MailingProjectSettings | Report mailing options | {"type": ["object", "null"], "additionalProperties": false, "properties": {"Enabled": {"type": "boolean"}, "MailProfileName": {"type": ["null", "string"]}, "EmailRecipients": {"type": "array", "items": {"type": "string", "format": "email"}}}, "oneOf": [{"type": "object", "properties": {"Enabled": {"enum": [true]}, "MailProfileName": {"type": "string", "minLength": 1}, "EmailRecipients": {"type": "array", "minItems": 1, "maxItems": 10}}, "required": ["Enabled", "MailProfileName", "EmailRecipients"]}, {"properties": {"Enabled": {"enum": [false]}, "MailProfileName": {"type": ["null", "string"]}, "EmailRecipients": {"type": "array", "minItems": 0, "maxItems": 10}}, "required": ["Enabled"]}]} |
aiproj-1.1.json | SkipGitIgnoreFiles | Exclude from scanning the files from the .gitignore file | {"type": "boolean"} |
aiproj-1.1.json | UsePublicAnalysisMethod | Search from available public and protected methods | {"type": "boolean"} |
aiproj-1.1.json | UseSastRules | Enable SAST Analysis rules | {"type": "boolean"} |
aiproj-1.1.json | UseCustomPmRules | Enable custom PM rules | {"type": "boolean"} |
aiproj-1.1.json | UseSecurityPolicies | Check for compliance with the security policy | {"type": "boolean"} |
remarkrc.json | plugins | The plugins field, related to plugins in options, has either an array of plugin names (or paths) or plugin–options tuples, or an object mapping plugins to their options.
Plugin options can be false, which specifies that a plugin should not be used. In all other cases, they are treated as an object, and merged by the cascade. Thus, it's possible to specify part of the options from one configuration file, and overwrite or extend it from another file. | {"oneOf": [{"type": "array", "items": {"oneOf": [{"type": "string"}, {"type": "array", "additionalItems": true, "items": [{"type": "string"}]}]}}, {"type": "object"}]} |
remarkrc.json | bullet | Marker to use to for bullets of items in unordered lists. | {"enum": ["*", "+", "-"], "default": "*"} |
remarkrc.json | closeAtx | Whether to add the same number of number signs (#) at the end of an ATX heading as the opening sequence. | {"type": "boolean", "default": false} |
remarkrc.json | emphasis | Marker to use to serialize emphasis. | {"enum": ["*", "_"], "default": "*"} |
remarkrc.json | fence | Marker to use to serialize fenced code. | {"enum": ["`", "~"], "default": "`"} |
remarkrc.json | fences | Whether to use fenced code always. The default is to fenced code if there is a language defined, if the code is empty, or if it starts or ends in empty lines | {"type": "boolean", "default": false} |
remarkrc.json | incrementListMarker | Whether to increment the value of bullets of items in ordered lists. | {"type": "boolean", "default": true} |
remarkrc.json | listItemIndent | Whether to indent the content of list items with the size of the bullet plus one space (when 'one') or a tab stop ('tab'), or depending on the item and its parent list ('mixed', uses 'one' if the item and list are tight and 'tab' otherwise) | {"enum": ["one", "tab", "mixed"], "default": "tab"} |
remarkrc.json | quote | Marker to use to serialize titles. | {"enum": ["\"", "'"], "default": "\""} |
remarkrc.json | resourceLink | Whether to use resource links ([text](url)) always. The default is to use autolinks (<https://example.com>) when possible. | {"type": "boolean", "default": false} |
remarkrc.json | rule | Marker to use for thematic breaks. | {"enum": ["*", "-", "_"], "default": "*"} |
remarkrc.json | ruleRepetition | Number of markers to use for thematic breaks. | {"type": "integer", "minimum": 3, "default": 3} |
remarkrc.json | ruleSpaces | Whether to add spaces between markers in thematic breaks. | {"type": "boolean", "default": false} |
remarkrc.json | setext | Whether to use setext headings when possible. Setext headings are not possible for headings with a rank more than 2 or when they're empty. | {"type": "boolean", "default": false} |
remarkrc.json | strong | Marker to use to serialize strong. | {"enum": ["*", "_"], "default": "_"} |
remarkrc.json | tightDefinitions | Whether to join definitions w/o a blank line. | {"type": "boolean", "default": false} |
kustomization.json | ConfigMapArgs | ConfigMapArgs contains the metadata of how to generate a configmap | {"properties": {"KVSources": {"items": {}, "type": "array"}, "behavior": {"enum": ["create", "replace", "merge"]}, "env": {"type": "string"}, "envs": {"items": {"type": "string"}, "type": "array"}, "files": {"items": {"type": "string"}, "type": "array"}, "literals": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "namespace": {"type": "string"}, "options": {}}, "additionalProperties": false, "type": "object"} |
kustomization.json | env | Deprecated. Use envs instead. | {"type": "string"} |
kustomization.json | envs | A list of file paths. The contents of each file should be one key=value pair per line | {"items": {"type": "string"}, "type": "array"} |
kustomization.json | files | A list of file sources to use in creating a list of key, value pairs | {"items": {"type": "string"}, "type": "array"} |
kustomization.json | literals | A list of literal pair sources. Each literal source should be a key and literal value, e.g. `key=value` | {"items": {"type": "string"}, "type": "array"} |
kustomization.json | name | Name - actually the partial name - of the generated resource | {"type": "string"} |
kustomization.json | namespace | Namespace for the configmap, optional | {"type": "string"} |
kustomization.json | FieldSelector | Contains the fieldPath to an object field | {"properties": {"fieldpath": {"type": "string"}}, "additionalProperties": false, "type": "object"} |
kustomization.json | GeneratorOptions | GeneratorOptions modify behavior of all ConfigMap and Secret generators | {"properties": {"annotations": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "disableNameSuffixHash": {"type": "boolean"}, "immutable": {"type": "boolean"}, "labels": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}}, "additionalProperties": false, "type": "object"} |
kustomization.json | annotations | Annotations to add to all generated resources | {"patternProperties": {".*": {"type": "string"}}, "type": "object"} |
kustomization.json | disableNameSuffixHash | DisableNameSuffixHash if true disables the default behavior of adding a suffix to the names of generated resources that is a hash of the resource contents | {"type": "boolean"} |
kustomization.json | immutable | Immutable if true add to all generated resources | {"type": "boolean"} |
kustomization.json | labels | Labels to add to all generated resources | {"patternProperties": {".*": {"type": "string"}}, "type": "object"} |
kustomization.json | Inventory | Inventory appends an object that contains the record of all other objects, which can be used in apply, prune and delete | {"properties": {"configMap": {}, "type": {"type": "string"}}, "additionalProperties": false, "type": "object"} |
kustomization.json | bases | DEPRECATED. Bases are relative paths or git repository URLs specifying a directory containing a kustomization.yaml file. | {"items": {"type": "string"}, "type": "array"} |
kustomization.json | commonAnnotations | CommonAnnotations to add to all objects | {"patternProperties": {".*": {"type": "string"}}, "type": "object"} |
kustomization.json | buildMetadata | BuildMetadata is a list of strings used to toggle different build options | {"items": {"type": "string"}, "type": "array"} |
kustomization.json | commonLabels | CommonLabels to add to all objects and selectors | {"patternProperties": {".*": {"type": "string"}}, "type": "object"} |
kustomization.json | configMapGenerator | ConfigMapGenerator is a list of configmaps to generate from local data (one configMap per list item) | {"items": {}, "type": "array"} |
kustomization.json | configurations | Configurations is a list of transformer configuration files | {"items": {"type": "string"}, "type": "array"} |
kustomization.json | crds | Crds specifies relative paths to Custom Resource Definition files. This allows custom resources to be recognized as operands, making it possible to add them to the Resources list. CRDs themselves are not modified. | {"items": {"type": "string"}, "type": "array"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.