schema stringclasses 471
values | key stringlengths 0 203 | description stringlengths 0 4.37k | object stringlengths 2 322k |
|---|---|---|---|
sfdx-hardis.jsonschema.json | msTeamsWebhookUrl | Url of the Ms Teams channel Web Hook that can be used to send ALL notifications | {"default": "", "examples": ["https://my.msteams.webhook.url"], "type": "string"} |
sfdx-hardis.jsonschema.json | msTeamsWebhookUrlCritical | Url of the Ms Teams channel Web Hook that can be used to send CRITICAL notifications | {"default": "", "examples": ["https://my.msteams.webhook.url"], "type": "string"} |
sfdx-hardis.jsonschema.json | msTeamsWebhookUrlSevere | Url of the Ms Teams channel Web Hook that can be used to send SEVERE notifications | {"default": "", "examples": ["https://my.msteams.webhook.url"], "type": "string"} |
sfdx-hardis.jsonschema.json | msTeamsWebhookUrlWarning | Url of the Ms Teams channel Web Hook that can be used to send WARNING notifications | {"default": "", "examples": ["https://my.msteams.webhook.url"], "type": "string"} |
sfdx-hardis.jsonschema.json | msTeamsWebhookUrlInfo | Url of the Ms Teams channel Web Hook that can be used to send INFO notifications | {"default": "", "examples": ["https://my.msteams.webhook.url"], "type": "string"} |
sfdx-hardis.jsonschema.json | poolConfig | Configuration allowing to generate and fetch scratch orgs from scratch org pool | {"examples": [{"maxScratchOrgsNumber": 10, "storageService": "kvdb.io"}], "type": "object", "properties": {"minScratchOrgRemainingDays": {"default": 25, "type": "number"}, "maxScratchOrgsNumber": {"type": "number"}, "maxScratchOrgsNumberToCreateOnce": {"type": "number"}, "storageService": {"type": "string"}}} |
sfdx-hardis.jsonschema.json | minScratchOrgRemainingDays | When pool scratch org is less than this number, it is deleted and another one is created | {"default": 25, "type": "number"} |
sfdx-hardis.jsonschema.json | maxScratchOrgsNumber | Maximum number of active scratch orgs in the scratch org pool | {"type": "number"} |
sfdx-hardis.jsonschema.json | maxScratchOrgsNumberToCreateOnce | Maximum number of scratch orgs to create in one CI job | {"type": "number"} |
sfdx-hardis.jsonschema.json | storageService | Remote service allowing to store scratch org pool details | {"type": "string"} |
sfdx-hardis.jsonschema.json | productionBranch | Name of the git branch corresponding to production environment | {"default": "", "examples": ["master", "main", "production"], "type": "string"} |
sfdx-hardis.jsonschema.json | projectName | Identifier for the project (can be the client and project) | {"default": "", "examples": ["MyClientMyProject", "GoogleGmail", "AppleIWatch"], "type": "string"} |
sfdx-hardis.jsonschema.json | retrofitBranch | Name of the git branch where retrofit merge requests targets to | {"default": "", "examples": ["preprod", "dev", "maintenance"], "type": "string"} |
sfdx-hardis.jsonschema.json | retrofitIgnoredFiles | When calling hardis:org:retrieve:sources:retrofit, list of files to ignore (discard just after retrieve) | {"examples": [["force-app/main/default/applications/MyAppIWantToManageInProduction.app-meta.xml", "force-app/main/default/flexipages/MyFlexipageWithDashboards.flexipage-meta.xml"]], "items": {"type": "string"}, "type": "array"} |
sfdx-hardis.jsonschema.json | scratchOrgInitApexScripts | Apex scripts to call after scratch org initialization | {"examples": [["scripts/apex/init-scratch.apex", "scripts/apex/init-custom-settings.apex"]], "items": {"type": "string"}, "type": "array"} |
sfdx-hardis.jsonschema.json | sfdmuCanModify | Instance host name to allow SFDMU to deploy data in a production org | {"default": "", "examples": ["myproject.force.com"], "type": "string"} |
sfdx-hardis.jsonschema.json | skipUpdateForceIgnore | Defines if sfdx-hardis will propose to upgrade local .forceignore file | {"default": false, "type": "boolean"} |
sfdx-hardis.jsonschema.json | skipUpdateGitIgnore | Defines if sfdx-hardis will propose to upgrade local .gitignore file | {"default": false, "type": "boolean"} |
sfdx-hardis.jsonschema.json | targetUsername | Salesforce username used by CI for deployment or backups | {"default": "", "examples": ["deployments@myclient.com", "deployments@google.fr", "deployments@apple.com"], "type": "string"} |
sfdx-hardis.jsonschema.json | linterIgnoreRightMetadataFile | Ignore profiles or permission sets | {"default": "", "examples": ["Profile", "Profile:ProfileA", "PermissionSet", "PermissionSet:PermissionSetA, Profile:ProfileA"], "type": "string"} |
sarif-2.1.0-rtm.6.json | Static Analysis Results Format (SARIF) Version 2.1.0-rtm.6 JSON Schema: a standard format for the output of static analysis tools. | {"$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": {"address": {"additionalProperties": false, "type": "object", "properties": {"absoluteAddress": {"type": "integer", "minimum": -1, "default": -1}, "relativeAddress": {"type": "integer"}, "length": {"type": "integer"}, "... | |
sarif-2.1.0-rtm.6.json | address | A physical or virtual address, or a range of addresses, in an 'addressable region' (memory or a binary file). | {"additionalProperties": false, "type": "object", "properties": {"absoluteAddress": {"type": "integer", "minimum": -1, "default": -1}, "relativeAddress": {"type": "integer"}, "length": {"type": "integer"}, "kind": {"type": "string"}, "name": {"type": "string"}, "fullyQualifiedName": {"type": "string"}, "offsetFromParen... |
sarif-2.1.0-rtm.6.json | absoluteAddress | The address expressed as a byte offset from the start of the addressable region. | {"type": "integer", "minimum": -1, "default": -1} |
sarif-2.1.0-rtm.6.json | relativeAddress | The address expressed as a byte offset from the absolute address of the top-most parent object. | {"type": "integer"} |
sarif-2.1.0-rtm.6.json | length | The number of bytes in this range of addresses. | {"type": "integer"} |
sarif-2.1.0-rtm.6.json | kind | An open-ended string that identifies the address kind. 'data', 'function', 'header','instruction', 'module', 'page', 'section', 'segment', 'stack', 'stackFrame', 'table' are well-known values. | {"type": "string"} |
sarif-2.1.0-rtm.6.json | name | A name that is associated with the address, e.g., '.text'. | {"type": "string"} |
sarif-2.1.0-rtm.6.json | fullyQualifiedName | A human-readable fully qualified name that is associated with the address. | {"type": "string"} |
sarif-2.1.0-rtm.6.json | offsetFromParent | The byte offset of this address from the absolute or relative address of the parent object. | {"type": "integer"} |
sarif-2.1.0-rtm.6.json | index | The index within run.addresses of the cached object for this address. | {"type": "integer", "default": -1, "minimum": -1} |
sarif-2.1.0-rtm.6.json | parentIndex | The index within run.addresses of the parent object. | {"type": "integer", "default": -1, "minimum": -1} |
sarif-2.1.0-rtm.6.json | properties | Key/value pairs that provide additional information about the address. | {} |
sarif-2.1.0-rtm.6.json | artifact | A single artifact. In some cases, this artifact might be nested within another artifact. | {"additionalProperties": false, "type": "object", "properties": {"location": {}, "parentIndex": {"type": "integer", "default": -1, "minimum": -1}, "offset": {"type": "integer", "minimum": 0}, "length": {"type": "integer", "default": -1, "minimum": -1}, "roles": {"type": "array", "minItems": 0, "uniqueItems": true, "def... |
sarif-2.1.0-rtm.6.json | description | A short description of the artifact. | {} |
sarif-2.1.0-rtm.6.json | location | The location of the artifact. | {} |
sarif-2.1.0-rtm.6.json | parentIndex | Identifies the index of the immediate parent of the artifact, if this artifact is nested. | {"type": "integer", "default": -1, "minimum": -1} |
sarif-2.1.0-rtm.6.json | offset | The offset in bytes of the artifact within its containing artifact. | {"type": "integer", "minimum": 0} |
sarif-2.1.0-rtm.6.json | length | The length of the artifact in bytes. | {"type": "integer", "default": -1, "minimum": -1} |
sarif-2.1.0-rtm.6.json | roles | The role or roles played by the artifact in the analysis. | {"type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": {"enum": ["analysisTarget", "attachment", "responseFile", "resultFile", "standardStream", "tracedFile", "unmodified", "modified", "added", "deleted", "renamed", "uncontrolled", "driver", "extension", "translation", "taxonomy", "policy", "refe... |
sarif-2.1.0-rtm.6.json | mimeType | The MIME type (RFC 2045) of the artifact. | {"type": "string", "pattern": "[^/]+/.+"} |
sarif-2.1.0-rtm.6.json | contents | The contents of the artifact. | {} |
sarif-2.1.0-rtm.6.json | encoding | Specifies the encoding for an artifact object that refers to a text file. | {"type": "string"} |
sarif-2.1.0-rtm.6.json | sourceLanguage | Specifies the source language for any artifact object that refers to a text file that contains source code. | {"type": "string"} |
sarif-2.1.0-rtm.6.json | hashes | A dictionary, each of whose keys is the name of a hash function and each of whose values is the hashed value of the artifact produced by the specified hash function. | {"type": "object", "additionalProperties": {"type": "string"}} |
sarif-2.1.0-rtm.6.json | lastModifiedTimeUtc | The Coordinated Universal Time (UTC) date and time at which the artifact was most recently modified. See "Date/time properties" in the SARIF spec for the required format. | {"type": "string", "format": "date-time"} |
sarif-2.1.0-rtm.6.json | properties | Key/value pairs that provide additional information about the artifact. | {} |
sarif-2.1.0-rtm.6.json | artifactChange | A change to a single artifact. | {"additionalProperties": false, "type": "object", "properties": {"artifactLocation": {}, "replacements": {"type": "array", "minItems": 1, "uniqueItems": false, "items": {}}, "properties": {}}, "required": ["artifactLocation", "replacements"]} |
sarif-2.1.0-rtm.6.json | artifactLocation | The location of the artifact to change. | {} |
sarif-2.1.0-rtm.6.json | replacements | An array of replacement objects, each of which represents the replacement of a single region in a single artifact specified by 'artifactLocation'. | {"type": "array", "minItems": 1, "uniqueItems": false, "items": {}} |
sarif-2.1.0-rtm.6.json | properties | Key/value pairs that provide additional information about the change. | {} |
sarif-2.1.0-rtm.6.json | artifactContent | Represents the contents of an artifact. | {"type": "object", "additionalProperties": false, "properties": {"text": {"type": "string"}, "binary": {"type": "string"}, "rendered": {}, "properties": {}}} |
sarif-2.1.0-rtm.6.json | text | UTF-8-encoded content from a text artifact. | {"type": "string"} |
sarif-2.1.0-rtm.6.json | binary | MIME Base64-encoded content from a binary artifact, or from a text artifact in its original encoding. | {"type": "string"} |
sarif-2.1.0-rtm.6.json | rendered | An alternate rendered representation of the artifact (e.g., a decompiled representation of a binary region). | {} |
sarif-2.1.0-rtm.6.json | properties | Key/value pairs that provide additional information about the artifact content. | {} |
sarif-2.1.0-rtm.6.json | artifactLocation | Specifies the location of an artifact. | {"additionalProperties": false, "type": "object", "properties": {"uri": {"type": "string", "format": "uri-reference"}, "uriBaseId": {"type": "string"}, "index": {"type": "integer", "default": -1, "minimum": -1}, "properties": {}}} |
sarif-2.1.0-rtm.6.json | uri | A string containing a valid relative or absolute URI. | {"type": "string", "format": "uri-reference"} |
sarif-2.1.0-rtm.6.json | uriBaseId | A string which indirectly specifies the absolute URI with respect to which a relative URI in the "uri" property is interpreted. | {"type": "string"} |
sarif-2.1.0-rtm.6.json | index | The index within the run artifacts array of the artifact object associated with the artifact location. | {"type": "integer", "default": -1, "minimum": -1} |
sarif-2.1.0-rtm.6.json | description | A short description of the artifact location. | {} |
sarif-2.1.0-rtm.6.json | properties | Key/value pairs that provide additional information about the artifact location. | {} |
sarif-2.1.0-rtm.6.json | attachment | An artifact relevant to a result. | {"type": "object", "additionalProperties": false, "properties": {"artifactLocation": {}, "regions": {"type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": {}}, "rectangles": {"type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": {}}, "properties": {}}, "required": ["artifac... |
sarif-2.1.0-rtm.6.json | description | A message describing the role played by the attachment. | {} |
sarif-2.1.0-rtm.6.json | artifactLocation | The location of the attachment. | {} |
sarif-2.1.0-rtm.6.json | regions | An array of regions of interest within the attachment. | {"type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": {}} |
sarif-2.1.0-rtm.6.json | rectangles | An array of rectangles specifying areas of interest within the image. | {"type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": {}} |
sarif-2.1.0-rtm.6.json | properties | Key/value pairs that provide additional information about the attachment. | {} |
sarif-2.1.0-rtm.6.json | codeFlow | A set of threadFlows which together describe a pattern of code execution relevant to detecting a result. | {"additionalProperties": false, "type": "object", "properties": {"message": {}, "threadFlows": {"type": "array", "minItems": 1, "uniqueItems": false, "items": {}}, "properties": {}}, "required": ["threadFlows"]} |
sarif-2.1.0-rtm.6.json | message | A message relevant to the code flow. | {} |
sarif-2.1.0-rtm.6.json | threadFlows | An array of one or more unique threadFlow objects, each of which describes the progress of a program through a thread of execution. | {"type": "array", "minItems": 1, "uniqueItems": false, "items": {}} |
sarif-2.1.0-rtm.6.json | properties | Key/value pairs that provide additional information about the code flow. | {} |
sarif-2.1.0-rtm.6.json | configurationOverride | Information about how a specific rule or notification was reconfigured at runtime. | {"type": "object", "additionalProperties": false, "properties": {"configuration": {}, "descriptor": {}, "properties": {}}, "required": ["configuration", "descriptor"]} |
sarif-2.1.0-rtm.6.json | configuration | Specifies how the rule or notification was configured during the scan. | {} |
sarif-2.1.0-rtm.6.json | descriptor | A reference used to locate the descriptor whose configuration was overridden. | {} |
sarif-2.1.0-rtm.6.json | properties | Key/value pairs that provide additional information about the configuration override. | {} |
sarif-2.1.0-rtm.6.json | conversion | Describes how a converter transformed the output of a static analysis tool from the analysis tool's native output format into the SARIF format. | {"additionalProperties": false, "type": "object", "properties": {"tool": {}, "invocation": {}, "analysisToolLogFiles": {"type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": {}}, "properties": {}}, "required": ["tool"]} |
sarif-2.1.0-rtm.6.json | tool | A tool object that describes the converter. | {} |
sarif-2.1.0-rtm.6.json | invocation | An invocation object that describes the invocation of the converter. | {} |
sarif-2.1.0-rtm.6.json | analysisToolLogFiles | The locations of the analysis tool's per-run log files. | {"type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": {}} |
sarif-2.1.0-rtm.6.json | properties | Key/value pairs that provide additional information about the conversion. | {} |
sarif-2.1.0-rtm.6.json | edge | Represents a directed edge in a graph. | {"type": "object", "additionalProperties": false, "properties": {"id": {"type": "string"}, "label": {}, "sourceNodeId": {"type": "string"}, "targetNodeId": {"type": "string"}, "properties": {}}, "required": ["id", "sourceNodeId", "targetNodeId"]} |
sarif-2.1.0-rtm.6.json | id | A string that uniquely identifies the edge within its graph. | {"type": "string"} |
sarif-2.1.0-rtm.6.json | label | A short description of the edge. | {} |
sarif-2.1.0-rtm.6.json | sourceNodeId | Identifies the source node (the node at which the edge starts). | {"type": "string"} |
sarif-2.1.0-rtm.6.json | targetNodeId | Identifies the target node (the node at which the edge ends). | {"type": "string"} |
sarif-2.1.0-rtm.6.json | properties | Key/value pairs that provide additional information about the edge. | {} |
sarif-2.1.0-rtm.6.json | edgeTraversal | Represents the traversal of a single edge during a graph traversal. | {"type": "object", "additionalProperties": false, "properties": {"edgeId": {"type": "string"}, "message": {}, "finalState": {"type": "object", "additionalProperties": {}}, "stepOverEdgeCount": {"type": "integer", "minimum": 0}, "properties": {}}, "required": ["edgeId"]} |
sarif-2.1.0-rtm.6.json | edgeId | Identifies the edge being traversed. | {"type": "string"} |
sarif-2.1.0-rtm.6.json | message | A message to display to the user as the edge is traversed. | {} |
sarif-2.1.0-rtm.6.json | finalState | The values of relevant expressions after the edge has been traversed. | {"type": "object", "additionalProperties": {}} |
sarif-2.1.0-rtm.6.json | stepOverEdgeCount | The number of edge traversals necessary to return from a nested graph. | {"type": "integer", "minimum": 0} |
sarif-2.1.0-rtm.6.json | properties | Key/value pairs that provide additional information about the edge traversal. | {} |
sarif-2.1.0-rtm.6.json | exception | Describes a runtime exception encountered during the execution of an analysis tool. | {"type": "object", "additionalProperties": false, "properties": {"kind": {"type": "string"}, "message": {"type": "string"}, "stack": {}, "innerExceptions": {"type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": {}}, "properties": {}}} |
sarif-2.1.0-rtm.6.json | kind | A string that identifies the kind of exception, for example, the fully qualified type name of an object that was thrown, or the symbolic name of a signal. | {"type": "string"} |
sarif-2.1.0-rtm.6.json | message | A message that describes the exception. | {"type": "string"} |
sarif-2.1.0-rtm.6.json | stack | The sequence of function calls leading to the exception. | {} |
sarif-2.1.0-rtm.6.json | innerExceptions | An array of exception objects each of which is considered a cause of this exception. | {"type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": {}} |
sarif-2.1.0-rtm.6.json | properties | Key/value pairs that provide additional information about the exception. | {} |
sarif-2.1.0-rtm.6.json | externalProperties | The top-level element of an external property file. | {"type": "object", "additionalProperties": false, "properties": {"schema": {"type": "string", "format": "uri"}, "version": {"enum": ["2.1.0"]}, "guid": {"type": "string", "format": "uuid"}, "runGuid": {"type": "string", "format": "uuid"}, "conversion": {}, "graphs": {"type": "array", "minItems": 0, "default": [], "uniq... |
sarif-2.1.0-rtm.6.json | schema | The URI of the JSON schema corresponding to the version of the external property file format. | {"type": "string", "format": "uri"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.