Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/api/json/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -3678,6 +3678,12 @@
"fileMatch": ["karakum.config.json"],
"url": "https://raw.githubusercontent.com/karakum-team/karakum/master/karakum-schema/karakum-schema.json"
},
{
"name": "klin.json",
"description": "klin quality policy configuration",
"fileMatch": ["klin.json"],
"url": "https://raw.githubusercontent.com/brajevicm/klin/main/schemas/klin.json"
},
{
"name": "Knative Functions - func.yaml",
"description": "Knative Functions func.yaml files",
Expand Down
2 changes: 1 addition & 1 deletion src/schemas/json/sarif-1.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,7 @@
"$schema": {
"description": "The URI of the JSON schema corresponding to the version.",
"type": "string",
"format": "uri"
"format": "uri-reference"
},
"version": {
"description": "The SARIF format version of this log file.",
Expand Down
2 changes: 1 addition & 1 deletion src/schemas/json/sarif-2.0.0-csd.2.beta.2018-10-10.json
Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,7 @@
"$schema": {
"description": "The URI of the JSON schema corresponding to the version.",
"type": "string",
"format": "uri"
"format": "uri-reference"
},
"version": {
"description": "The SARIF format version of this log file.",
Expand Down
2 changes: 1 addition & 1 deletion src/schemas/json/sarif-2.0.0-csd.2.beta.2019-01-09.json
Original file line number Diff line number Diff line change
Expand Up @@ -1761,7 +1761,7 @@
"$schema": {
"description": "The URI of the JSON schema corresponding to the version.",
"type": "string",
"format": "uri"
"format": "uri-reference"
},
"version": {
"description": "The SARIF format version of this log file.",
Expand Down
2 changes: 1 addition & 1 deletion src/schemas/json/sarif-2.0.0-csd.2.beta.2019-01-24.json
Original file line number Diff line number Diff line change
Expand Up @@ -1858,7 +1858,7 @@
"$schema": {
"description": "The URI of the JSON schema corresponding to the version.",
"type": "string",
"format": "uri"
"format": "uri-reference"
},
"version": {
"description": "The SARIF format version of this log file.",
Expand Down
2 changes: 1 addition & 1 deletion src/schemas/json/sarif-2.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -1704,7 +1704,7 @@
"$schema": {
"description": "The URI of the JSON schema corresponding to the version.",
"type": "string",
"format": "uri"
"format": "uri-reference"
},
"version": {
"description": "The SARIF format version of this log file.",
Expand Down
117 changes: 64 additions & 53 deletions src/schemas/json/sarif-2.1.0-rtm.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -620,25 +620,27 @@
"properties": {
"$ref": "#/definitions/propertyBag",
"description": "Key/value pairs that provide additional information about the external property file."
},
"location": {
"$ref": "#/definitions/artifactLocation",
"description": "The location of the external property file."
},
"guid": {
"description": "A stable, unique identifier for the external property file in the form of a GUID.",
"type": "string",
"pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$"
}
},
"anyOf": [
{
"properties": {
"location": {
"$ref": "#/definitions/artifactLocation",
"description": "The location of the external property file."
}
"location": true
},
"required": ["location"]
},
{
"properties": {
"guid": {
"description": "A stable, unique identifier for the external property file in the form of a GUID.",
"type": "string",
"pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$"
}
"guid": true
},
"required": ["guid"]
}
Expand Down Expand Up @@ -893,28 +895,30 @@
"properties": {
"$ref": "#/definitions/propertyBag",
"description": "Key/value pairs that provide additional information about the graph traversal."
},
"runGraphIndex": {
"description": "The index within the run.graphs to be associated with the result.",
"type": "integer",
"default": -1,
"minimum": -1
},
"resultGraphIndex": {
"description": "The index within the result.graphs to be associated with the result.",
"type": "integer",
"default": -1,
"minimum": -1
}
},
"oneOf": [
{
"properties": {
"runGraphIndex": {
"description": "The index within the run.graphs to be associated with the result.",
"type": "integer",
"default": -1,
"minimum": -1
}
"runGraphIndex": true
},
"required": ["runGraphIndex"]
},
{
"properties": {
"resultGraphIndex": {
"description": "The index within the result.graphs to be associated with the result.",
"type": "integer",
"default": -1,
"minimum": -1
}
"resultGraphIndex": true
},
"required": ["resultGraphIndex"]
}
Expand Down Expand Up @@ -1211,24 +1215,26 @@
"properties": {
"$ref": "#/definitions/propertyBag",
"description": "Key/value pairs that provide additional information about the message."
},
"text": {
"description": "A plain text message string.",
"type": "string"
},
"id": {
"description": "The identifier for this message.",
"type": "string"
}
},
"anyOf": [
{
"properties": {
"text": {
"description": "A plain text message string.",
"type": "string"
}
"text": true
},
"required": ["text"]
},
{
"properties": {
"id": {
"description": "The identifier for this message.",
"type": "string"
}
"id": true
},
"required": ["id"]
}
Expand Down Expand Up @@ -1356,24 +1362,26 @@
"properties": {
"$ref": "#/definitions/propertyBag",
"description": "Key/value pairs that provide additional information about the physical location."
},
"address": {
"$ref": "#/definitions/address",
"description": "The address of the location."
},
"artifactLocation": {
"$ref": "#/definitions/artifactLocation",
"description": "The location of the artifact."
}
},
"anyOf": [
{
"properties": {
"address": {
"$ref": "#/definitions/address",
"description": "The address of the location."
}
"address": true
},
"required": ["address"]
},
{
"properties": {
"artifactLocation": {
"$ref": "#/definitions/artifactLocation",
"description": "The location of the artifact."
}
"artifactLocation": true
},
"required": ["artifactLocation"]
}
Expand Down Expand Up @@ -1647,36 +1655,39 @@
"properties": {
"$ref": "#/definitions/propertyBag",
"description": "Key/value pairs that provide additional information about the reporting descriptor reference."
},
"index": {
"description": "The index into an array of descriptors in toolComponent.ruleDescriptors, toolComponent.notificationDescriptors, or toolComponent.taxonomyDescriptors, depending on context.",
"type": "integer",
"default": -1,
"minimum": -1
},
"guid": {
"description": "A guid that uniquely identifies the descriptor.",
"type": "string",
"pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$"
},
"id": {
"description": "The id of the descriptor.",
"type": "string"
}
},
"anyOf": [
{
"properties": {
"index": {
"description": "The index into an array of descriptors in toolComponent.ruleDescriptors, toolComponent.notificationDescriptors, or toolComponent.taxonomyDescriptors, depending on context.",
"type": "integer",
"default": -1,
"minimum": -1
}
"index": true
},
"required": ["index"]
},
{
"properties": {
"guid": {
"description": "A guid that uniquely identifies the descriptor.",
"type": "string",
"pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$"
}
"guid": true
},
"required": ["guid"]
},
{
"properties": {
"id": {
"description": "The id of the descriptor.",
"type": "string"
}
"id": true
},
"required": ["id"]
}
Expand Down Expand Up @@ -2850,7 +2861,7 @@
"$schema": {
"description": "The URI of the JSON schema corresponding to the version.",
"type": "string",
"format": "uri"
"format": "uri-reference"
},
"version": {
"description": "The SARIF format version of this log file.",
Expand Down
Loading
Loading