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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ repos:
args:
[
'--ignore-words-list',
'crate,ninjs,ans,specif,seh,specifid,deriver,isnt,tye,forin,dependees,rouge,interm,fo,wast,nome,statics,ue,aack,gost,inout,provId,handels,bu,testng,ags,edn,aks,te,decorder,provid,branche,alse,nd,mape,wil,clude,wit,flate,omlet,THIRDPARTY,NotIn,notIn,CopyIn,Requestor,requestor,re-use,ofo,abl,dout,foto,vor,wel,NAM,BRIN,everyTime,afterAll,beforeAll',
'crate,ninjs,ans,specif,seh,specifid,deriver,isnt,tye,forin,dependees,rouge,interm,fo,wast,nome,statics,ue,aack,gost,inout,provId,handels,bu,testng,ags,edn,aks,te,decorder,provid,branche,alse,nd,mape,wil,clude,wit,flate,omlet,THIRDPARTY,NotIn,notIn,CopyIn,Requestor,requestor,re-use,ofo,abl,dout,foto,vor,wel,NAM,BRIN,everyTime,afterAll,beforeAll,ontainer',
]
42 changes: 41 additions & 1 deletion src/api/json/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,16 @@
"fileMatch": ["*.avsc"],
"url": "https://www.schemastore.org/avro-avsc.json"
},
{
"name": "Awesome Repositories",
"description": "Configuration for awesome repository catalogs with categories",
"fileMatch": [
"awesome-repositories.json",
"awesome-repositories.yaml",
"awesome-repositories.yml"
],
"url": "https://raw.githubusercontent.com/abordage/schemas/main/schemas/awesome-repositories/awesome-repositories.schema.json"
},
{
"name": "AWS AppConfig Feature Flags-v1",
"description": "AWS CDK AppConfig Feature Flags",
Expand Down Expand Up @@ -636,6 +646,12 @@
"fileMatch": ["buf.gen.yaml"],
"url": "https://www.schemastore.org/buf.gen.json"
},
{
"name": "buf.lock",
"description": "buf.lock is a dependency lock file generated by buf via 'buf dep update'. It represents a single, reproducible build of the workspace's external dependencies and should never be hand-edited",
"fileMatch": ["buf.lock"],
"url": "https://www.schemastore.org/buf.lock.json"
},
{
"name": "buf.plugin.yaml",
"description": "A `buf.plugin.yaml` file captures metadata about the plugin. It includes mandatory and optional fields that are displayed on the individual plugin page and the BSR plugin. Documentation: https://buf.build/plugins",
Expand Down Expand Up @@ -3829,18 +3845,22 @@
"description": "Fast and powerful Git hooks manager",
"fileMatch": [
".lefthook.json",
".lefthook.jsonc",
".lefthook.toml",
".lefthook.yaml",
".lefthook.yml",
".lefthook-local.json",
".lefthook-local.jsonc",
".lefthook-local.toml",
".lefthook-local.yaml",
".lefthook-local.yml",
"lefthook.json",
"lefthook.jsonc",
"lefthook.toml",
"lefthook.yaml",
"lefthook.yml",
"lefthook-local.json",
"lefthook-local.jsonc",
"lefthook-local.toml",
"lefthook-local.yaml",
"lefthook-local.yml"
Expand Down Expand Up @@ -5445,7 +5465,21 @@
".renovaterc.json",
".renovaterc.json5"
],
"url": "https://docs.renovatebot.com/renovate-schema.json"
"url": "https://docs.renovatebot.com/renovate-schema.json",
"versions": {
"41": "https://www.schemastore.org/renovate-41.json",
"40": "https://www.schemastore.org/renovate-40.json",
"39": "https://www.schemastore.org/renovate-39.json"
}
},
{
"name": "Renovate global configuration",
"description": "Renovate global self-hosting configuration file options. Documentation: https://docs.renovatebot.com/self-hosted-configuration/",
"fileMatch": [],
"url": "https://docs.renovatebot.com/renovate-global-schema.json",
"versions": {
"41": "https://www.schemastore.org/renovate-global-schema-41.json"
}
},
{
"name": "RenderCV",
Expand Down Expand Up @@ -9201,6 +9235,12 @@
"description": "Configuration for unqueryvet - a Go linter for SQL queries",
"fileMatch": [".unqueryvet.yaml", ".unqueryvet.yml"],
"url": "https://raw.githubusercontent.com/MirrexOne/unqueryvet/main/schema.json"
},
{
"name": "Bento",
"description": "Bento stream configuration file",
"fileMatch": ["bento.json", "bento.yml", "bento.yaml"],
"url": "https://raw.githubusercontent.com/warpstreamlabs/bento/refs/heads/main/resources/schemastore/bento.json"
}
]
}
11 changes: 11 additions & 0 deletions src/schema-validation.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,10 @@
"pylock.json",
"rehyperc.json",
"remarkrc.json",
"renovate-39.json",
"renovate-40.json",
"renovate-41.json",
"renovate-global-schema-41.json",
"resjson.json",
"sarif-1.0.0.json",
"size-limit.json",
Expand Down Expand Up @@ -380,6 +384,7 @@
"problem_package_generators.json",
"theme-v1.json",
"renovate.json",
"renovate-global-schema.json",
"markdownlint.json",
"geojson.json",
"semgrep.json",
Expand Down Expand Up @@ -1201,6 +1206,12 @@
"rancher-fleet-0.8.json": {
"externalSchema": ["base.json"]
},
"renovate-41.json": {
"unknownKeywords": ["allowComments", "x-renovate-version"]
},
"renovate-global-schema-41.json": {
"unknownKeywords": ["allowComments", "x-renovate-version"]
},
"rc3-collection-0.0.3.json": {
"externalSchema": ["rc3-auth-0.0.3.json"]
},
Expand Down
51 changes: 51 additions & 0 deletions src/schemas/json/buf.lock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://json.schemastore.org/buf.lock.json",
"$comment": "https://buf.build/docs/configuration/v2/buf-lock",
"title": "buf.lock",
"description": "buf.lock is a dependency lock file generated by buf via 'buf dep update'. It represents a single, reproducible build of the workspace's external dependencies and should never be hand-edited.",
"type": "object",
"readOnly": true,
"required": ["version"],
"properties": {
"version": {
"description": "Buf configuration version.",
"type": "string",
"enum": ["v2", "v1", "v1beta1"]
},
"deps": {
"description": "Module pins, each uniquely representing a specific snapshot of a module, protected with a cryptographic digest.",
"type": "array",
"items": {
"type": "object",
"required": ["name", "commit", "digest"],
"additionalProperties": false,
"properties": {
"name": {
"description": "Module name.",
"type": "string",
"pattern": "^[a-z0-9.-]+/[a-z0-9-]+/[a-z0-9-]+$",
"examples": [
"buf.build/googleapis/googleapis",
"buf.build/grpc/grpc"
]
},
"commit": {
"description": "Commit that uniquely identifies this snapshot of the module.",
"type": "string",
"pattern": "^[a-f0-9]{32}$",
"examples": ["7a6bc1e3207144b38e9066861e1de0ff"]
},
"digest": {
"description": "Digest of the module contents.",
"type": "string",
"pattern": "^b[0-9]+:[a-f0-9]+$",
"examples": [
"b5:6d05bde5ed4cd22531d7ca6467feb828d2dc45cc9de12ce3345fbddd64ddb1bf0db756558c32ca49e6bc7de4426ada8960d5590e8446854b81f5f36f0916dc48"
]
}
}
}
}
}
}
3 changes: 3 additions & 0 deletions src/schemas/json/github-workflow.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@
"actions": {
"$ref": "#/definitions/permissions-level"
},
"artifact-metadata": {
"$ref": "#/definitions/permissions-level"
},
"attestations": {
"$ref": "#/definitions/permissions-level"
},
Expand Down
Loading