├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request_new_schema.yml │ └── feature_request_website.yml ├── PULL_REQUEST_TEMPLATE.md ├── copilot-instructions.md ├── dependabot.yml ├── labeler.yml └── workflows │ ├── auto-update.yml │ ├── codeowners-merge.yml │ ├── github-pages.yml │ ├── label-prs.yml │ ├── pre-commit-checks.yml │ ├── stale-prs.yml │ └── validate.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierrc.cjs ├── CNAME ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── SchemaStore.sln ├── cli.js ├── config ├── .spectral-draft04.yaml ├── .spectral-draft06.yaml └── .spectral-draft07.yaml ├── eslint.config.js ├── jsconfig.json ├── package.json ├── scripts ├── build-xregistry.js ├── build_xregistry_site.sh ├── dirty_repository_check.sh └── postprocess-xregistry-site.js └── src ├── Web.config ├── _Layout.cshtml ├── api └── json │ └── catalog.json ├── bin ├── Microsoft.Web.Infrastructure.dll ├── Microsoft.Web.Infrastructure.dll.refresh ├── StaticWebHelper.dll ├── StaticWebHelper.dll.refresh ├── System.Web.Helpers.dll ├── System.Web.Helpers.dll.refresh ├── System.Web.Helpers.xml ├── System.Web.Razor.dll ├── System.Web.Razor.dll.refresh ├── System.Web.Razor.xml ├── System.Web.WebPages.Deployment.dll ├── System.Web.WebPages.Deployment.dll.refresh ├── System.Web.WebPages.Deployment.xml ├── System.Web.WebPages.Razor.dll ├── System.Web.WebPages.Razor.dll.refresh ├── System.Web.WebPages.Razor.xml ├── System.Web.WebPages.dll ├── System.Web.WebPages.dll.refresh ├── System.Web.WebPages.xml ├── WebMarkupMin.Core.dll └── WebMarkupMin.Core.dll.refresh ├── css └── site.css ├── favicon.ico ├── img ├── api.png ├── autocomplete.png ├── css-autocomplete.png ├── favicon │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-160x160.png │ ├── favicon-16x16.png │ ├── favicon-192x192.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ └── mstile-70x70.png ├── forkme.png ├── javascript-autocomplete.png ├── json-icon.png ├── json-logo.png ├── octocat.png ├── sponsor.png ├── test.png ├── tooltip.png └── xml.png ├── index.cshtml ├── js └── site.js ├── json.cshtml ├── negative_test ├── abc-inventory-module-data-1.0.0 │ └── abc-inventory-module-data-missing-schema-property.json ├── abc-inventory-module-data-2.0.0 │ └── abc-inventory-module-data-missing-schema-property.json ├── abc-inventory-module-data-3.0.0 │ └── abc-inventory-module-data-missing-schema-property.json ├── abc-inventory-module-data-4.0.0 │ └── abc-inventory-module-data-missing-schema-property.json ├── abc-inventory-module-data-5.1.0 │ └── abc-inventory-module-data-missing-schema-property.json ├── abc-supply-plan-1.0.0 │ ├── abc-suppply-plan-extraneous-key.json │ ├── abc-suppply-plan-invalid-fractional-lot-size.json │ ├── abc-suppply-plan-invalid-planDate.json │ └── abc-suppply-plan-invalid-strings-as-numbers.json ├── abc-supply-plan-10.0.0 │ ├── abc-supply-plan-extraneous-property.json │ ├── abc-supply-plan-invalid-fractional-lot-size.json │ ├── abc-supply-plan-invalid-plan-date.json │ ├── abc-supply-plan-invalid-strings-as-numbers.json │ ├── abc-supply-plan-missing-schema-property.json │ └── abc-supply-plan-missing-tabs.json ├── abc-supply-plan-10.1.0 │ ├── abc-supply-plan-extraneous-property.json │ ├── abc-supply-plan-invalid-fractional-lot-size.json │ ├── abc-supply-plan-invalid-plan-date.json │ ├── abc-supply-plan-invalid-strings-as-numbers.json │ ├── abc-supply-plan-invalid-targetmfcs-empty-array.json │ ├── abc-supply-plan-invalid-targetmfcs-too-many-items.json │ ├── abc-supply-plan-missing-schema-property.json │ └── abc-supply-plan-missing-tabs.json ├── abc-supply-plan-11.0.0 │ ├── abc-supply-plan-extraneous-property.json │ ├── abc-supply-plan-invalid-fractional-lot-size.json │ ├── abc-supply-plan-invalid-plan-date.json │ ├── abc-supply-plan-invalid-strings-as-numbers.json │ ├── abc-supply-plan-missing-schema-property.json │ └── abc-supply-plan-missing-tabs.json ├── abc-supply-plan-11.1.0 │ ├── abc-supply-plan-extraneous-property.json │ ├── abc-supply-plan-invalid-fractional-lot-size.json │ ├── abc-supply-plan-invalid-plan-date.json │ ├── abc-supply-plan-invalid-strings-as-numbers.json │ ├── abc-supply-plan-missing-schema-property.json │ └── abc-supply-plan-missing-tabs.json ├── abc-supply-plan-11.2.0 │ ├── abc-supply-plan-extraneous-property.json │ ├── abc-supply-plan-invalid-fractional-lot-size.json │ ├── abc-supply-plan-invalid-plan-date.json │ ├── abc-supply-plan-invalid-strings-as-numbers.json │ ├── abc-supply-plan-missing-schema-property.json │ └── abc-supply-plan-missing-tabs.json ├── abc-supply-plan-2.0.0 │ ├── abc-supply-plan-missing-schema-property.json │ ├── abc-suppply-plan-extraneous-property.json │ ├── abc-suppply-plan-invalid-fractional-lot-size.json │ ├── abc-suppply-plan-invalid-planDate.json │ └── abc-suppply-plan-invalid-strings-as-numbers.json ├── abc-supply-plan-3.0.0 │ ├── abc-supply-plan-missing-schema-property.json │ ├── abc-suppply-plan-extraneous-property.json │ ├── abc-suppply-plan-invalid-fractional-lot-size.json │ ├── abc-suppply-plan-invalid-planDate.json │ └── abc-suppply-plan-invalid-strings-as-numbers.json ├── abc-supply-plan-4.0.0 │ ├── abc-supply-plan-missing-schema-property.json │ ├── abc-suppply-plan-extraneous-property.json │ ├── abc-suppply-plan-invalid-fractional-lot-size.json │ ├── abc-suppply-plan-invalid-planDate.json │ └── abc-suppply-plan-invalid-strings-as-numbers.json ├── abc-supply-plan-5.0.0 │ ├── abc-supply-plan-missing-schema-property.json │ ├── abc-suppply-plan-extraneous-property.json │ ├── abc-suppply-plan-invalid-fractional-lot-size.json │ ├── abc-suppply-plan-invalid-planDate.json │ └── abc-suppply-plan-invalid-strings-as-numbers.json ├── abc-supply-plan-6.0.0 │ ├── abc-supply-plan-missing-schema-property.json │ ├── abc-suppply-plan-extraneous-property.json │ ├── abc-suppply-plan-invalid-fractional-lot-size.json │ ├── abc-suppply-plan-invalid-planDate.json │ └── abc-suppply-plan-invalid-strings-as-numbers.json ├── abc-supply-plan-7.0.0 │ ├── abc-supply-plan-missing-schema-property.json │ ├── abc-suppply-plan-extraneous-property.json │ ├── abc-suppply-plan-invalid-fractional-lot-size.json │ ├── abc-suppply-plan-invalid-planDate.json │ └── abc-suppply-plan-invalid-strings-as-numbers.json ├── abc-supply-plan-8.0.0 │ ├── abc-supply-plan-missing-schema-property.json │ ├── abc-suppply-plan-extraneous-property.json │ ├── abc-suppply-plan-invalid-fractional-lot-size.json │ ├── abc-suppply-plan-invalid-planDate.json │ └── abc-suppply-plan-invalid-strings-as-numbers.json ├── abc-supply-plan-9.0.0 │ ├── abc-supply-plan-missing-schema-property.json │ ├── abc-suppply-plan-extraneous-property.json │ ├── abc-suppply-plan-invalid-fractional-lot-size.json │ ├── abc-suppply-plan-invalid-planDate.json │ └── abc-suppply-plan-invalid-strings-as-numbers.json ├── accelerator │ ├── accelerator-invalid-engine-strategy.yaml │ ├── accelerator-invalid-engine-transform-type.yaml │ ├── accelerator-invalid-include-ant-pattern.yaml │ ├── accelerator-invalid-options-datatype.yaml │ └── accelerator-invalid-options-name.yaml ├── all-contributors │ ├── additional-property.json │ ├── contributor-additional-property.json │ ├── empty-contributions.json │ ├── empty.json │ ├── non-uri-avatar.json │ └── non-uri-profile.json ├── appsettings │ ├── serilog-1.json │ └── serilog-2.json ├── asconfig-schema │ ├── root_unknown_property.json │ └── unknown_property.json ├── aurora-1.0 │ ├── invalid-http-method.aurora.yaml │ ├── invalid-index-type.aurora.yaml │ ├── invalid-property-type.aurora.yaml │ ├── invalid-relationship-type.aurora.yaml │ └── invalid-resolve-type.aurora.yaml ├── ava │ ├── additional_properties_fails.json │ └── invalid_timeout_fails.json ├── aws-cdk-appconfig-featureflags-1.0.0 │ └── featureflags.appConfig.json ├── azure-deviceupdate-import-manifest-4.0 │ ├── invalidstep-importmanifest.json │ ├── nosteps-importmanifest.json │ └── toomanycompatinfo-importmanifest.json ├── azure-deviceupdate-update-manifest-4 │ ├── invalidreferencestep-full-updatemanifest.json │ └── toomanyfiles-mini-updatemanifest.json ├── bigconfig │ ├── invalid-row-creation-time.yaml │ ├── invalid-saved-metric-def.yaml │ ├── invalid-tag-definitions.yaml │ ├── invalid-tag-deployments.yaml │ └── invalid-type-bigconfig.yaml ├── bosh-deploy-config │ ├── exclude-only.yaml │ ├── include-and-exclude.yaml │ ├── include-only.yaml │ ├── invalid-flag-and-exclude.yaml │ ├── invalid-flag-and-include.yaml │ ├── invalid-flag-only.yaml │ └── invalid-types.yaml ├── browser.i18n │ └── key_cannot_start_with_two_at.json ├── bxci.schema-1.0 │ └── bxci.yml ├── bxci.schema-2.0.0 │ └── bxci.yml ├── bxci.schema-2.x │ ├── bxci-cache-with-unknown-types.yml │ ├── bxci-missing-output-package-channel-branch.yml │ ├── bxci-missing-output-package-publish.yml │ ├── bxci-output-docker-wrong-args.yml │ ├── bxci-output-with-additional-properties.yml │ ├── bxci-output-with-invalid-vulnerability-scan.yml │ ├── bxci-stages-parallel-stage-no-stages.yml │ ├── bxci-stages-singe-stage-no-steps.yml │ ├── bxci-stages-wrong-fail-fast.yml │ ├── bxci-wrong-checkmarx-thresholds.yml │ ├── bxci-wrong-checkmarx.yml │ └── bxci-wrong-commit-threshold.yml ├── bxci.schema-3.x │ ├── bxci-cache-with-unknown-types.yml │ ├── bxci-helm-missing-properties.yml │ ├── bxci-missing-output-package-channel-branch.yml │ ├── bxci-missing-output-package-publish.yml │ ├── bxci-output-docker-additional-properties.yml │ ├── bxci-output-docker-image-missing-properties.yml │ ├── bxci-output-image-with-additional-properties.yml │ ├── bxci-output-with-additional-properties.yml │ ├── bxci-output-with-invalid-vulnerability-scan.yml │ ├── bxci-stages-parallel-stage-no-stages.yml │ ├── bxci-stages-singe-stage-no-steps.yml │ ├── bxci-stages-wrong-fail-fast.yml │ ├── bxci-wrong-checkmarx-thresholds.yml │ ├── bxci-wrong-checkmarx.yml │ └── bxci-wrong-commit-threshold.yml ├── cheatsheets │ ├── duplicate-tags.yml │ ├── empty-name.yml │ └── empty-path.yml ├── chrome-extension-locales-messages │ └── invalid-message-key.json ├── chrome-manifest │ ├── v3_browser_action_is_no_longer_in_the_root_issue_1986.json │ ├── v3_global_command_key_must_end_in_number.json │ ├── v3_global_command_key_must_include_shift.json │ └── v3_page_action_is_no_longer_in_the_root_issue_1986.json ├── cibuildwheel │ ├── cibuildwheel-bad-override.toml │ └── cibuildwheel-unreco.toml ├── cinnamon-spice.info │ ├── additional-properties.json │ ├── author-only-additional-properties.json │ ├── missing-properties.json │ └── no-properties.json ├── circleciconfig │ ├── conflicting-resource-class.yml │ ├── invalid-job-name-format.yml │ ├── invalid-machine-executor-1.yml │ ├── invalid-machine-executor-2.yml │ └── invalid-workflow-job-requires.yml ├── clang-format-18.x │ ├── empty.clang-format.yml │ └── invalid.clang-format.yml ├── clang-format-21.x │ ├── empty.clang-format.yml │ └── invalid.clang-format.yml ├── clangd │ └── external-file-and-server.yml ├── claude-code-settings │ ├── additional-properties-hook.json │ ├── invalid-enum-values.json │ ├── invalid-env-variable-name.json │ ├── invalid-hook-type.json │ ├── invalid-permission-rule.json │ ├── invalid-timeout-value.json │ ├── missing-required-hook-fields.json │ └── wrong-property-types.json ├── cloud-run-v1 │ ├── incorrect-name.yaml │ └── incorrect-port.yaml ├── cloudbuild │ ├── invalid-args.yaml │ ├── invalid-serviceaccount.json │ └── invalid-steps.yaml ├── codecov │ ├── missing-default.json │ └── wrong-patch.json ├── contextive-glossary │ ├── empty-imports.yml │ ├── missing-context-and-imports.yml │ ├── missing-context-terms.yml │ └── missing-term-name.yml ├── dependabot-2.0 │ ├── allow-no-subkeys-present.json │ ├── allow-wrong-type.json │ ├── allow.dependency-type-wrong-value.json │ ├── assignees-duplicate-values.json │ ├── assignees-no-values.json │ ├── assignees-value-is-empty-string.json │ ├── assignees-value-wrong-type.json │ ├── assignees-wrong-type.json │ ├── commit-message-no-subkeys.json │ ├── commit-message-unknown-property.json │ ├── commit-message-wrong-type.json │ ├── commit-message.prefix-development-max-length-exceeded.json │ ├── commit-message.prefix-development-wrong-type.json │ ├── commit-message.prefix-max-length-exceeded.json │ ├── commit-message.prefix-wrong-type.json │ ├── commit-message.scope-wrong-type.json │ ├── commit-message.scope-wrong-value.json │ ├── directory-and-directories.json │ ├── directory-missing.json │ ├── groups-no-subkeys.json │ ├── groups-subkey-is-empty-string.json │ ├── groups-wrong-value.json │ ├── groups.x-no-required-properties.json │ ├── groups.x-no-subkeys.json │ ├── groups.x-unknown-properties.json │ ├── groups.x-wrong-type.json │ ├── groups.x.dependency-type-wrong-type.json │ ├── groups.x.dependency-type-wrong-value.json │ ├── groups.x.exclude-patterns-missing-values.json │ ├── groups.x.exclude-patterns-value-empty-string.json │ ├── groups.x.exclude-patterns-value-wrong-type.json │ ├── groups.x.exclude-patterns-wrong-type.json │ ├── groups.x.patterns-missing-values.json │ ├── groups.x.patterns-value-empty-string.json │ ├── groups.x.patterns-value-wrong-type.json │ ├── groups.x.patterns-wrong-type.json │ ├── groups.x.update-types-duplicate-values.json │ ├── groups.x.update-types-missing-values.json │ ├── groups.x.update-types-wrong-type.json │ ├── groups.x.update-types-wrong-value.json │ ├── ignore-no-subkeys-present.json │ ├── ignore-wrong-type.json │ ├── ignore.update-types-duplicate-values.json │ ├── ignore.update-types-no-values.json │ ├── ignore.update-types-wrong-value.json │ ├── ignore.versions-duplicate-values.json │ ├── ignore.versions-no-values.json │ ├── labels-duplicate-values.json │ ├── labels-value-empty-string.json │ ├── labels-value-wrong-type.json │ ├── labels-wrong-type.json │ ├── milestone-min-value-exceeded.json │ ├── milestone-wrong-type-float.json │ ├── milestone-wrong-type-string.json │ ├── open-pull-requests-limit-min-value-exceeded.json │ ├── open-pull-requests-limit-wrong-type.json │ ├── package-ecosystem-missing.json │ ├── package-ecosystem-tool-name-not-yaml-value-elm-package.json │ ├── package-ecosystem-tool-name-not-yaml-value-hex.json │ ├── package-ecosystem-tool-name-not-yaml-value-pip-compile.json │ ├── package-ecosystem-tool-name-not-yaml-value-pipenv.json │ ├── package-ecosystem-tool-name-not-yaml-value-pnpm.json │ ├── package-ecosystem-tool-name-not-yaml-value-poetry.json │ ├── package-ecosystem-tool-name-not-yaml-value-yarn.json │ ├── package-ecosystem-value-min-length-exceeded-betas-enabled.json │ ├── package-ecosystem-value-unknown-betas-disabled.json │ ├── package-ecosystem-value-unknown-betas-unspecified.json │ ├── pull-request-branch-name-missing-required-property.json │ ├── pull-request-branch-name-unknown-property.json │ ├── pull-request-branch-name-wrong-type.json │ ├── pull-request-branch-name.separator-wrong-type.json │ ├── pull-request-branch-name.separator-wrong-value.json │ ├── rebase-strategy-wrong-type.json │ ├── rebase-strategy-wrong-value.json │ ├── registries-duplicate-values.json │ ├── registries-missing-values.json │ ├── registries-string-other-than-asterisk.json │ ├── registries-top-level-no-subkeys.json │ ├── registries-top-level-subkey-empty-string.json │ ├── registries-top-level-type-missing.json │ ├── registries-top-level-url-missing.json │ ├── registries-top-level-wrong-type.json │ ├── registries-value-wrong-type.json │ ├── registries-wrong-type.json │ ├── reviewers-no-longer-valid-2025-08-08.json │ ├── schedule-missing.json │ ├── schedule-wrong-type.json │ ├── schedule.interval-missing.json │ ├── schedule.interval-wrong-value.json │ ├── schedule.time-pattern-mismatch.json │ ├── schedule.timezone-wrong-value.json │ ├── target-branch-empty-string.json │ ├── target-branch-wrong-type.json │ ├── updates-missing.json │ ├── updates-wrong-type.json │ ├── vendor-wrong-type.json │ ├── version-int-must-be-2.json │ ├── version-missing.json │ ├── version-str.json │ └── versioning-strategy-wrong-value.json ├── deployed │ └── .deployed.json ├── djlint │ └── invalid-profile.json ├── dotnet-releases-index │ └── invalid-null-eol-date.json ├── drupal-info │ └── theme-info-wrong-library-name.yml ├── foundryvtt-module-manifest │ ├── pf2e-abomination-vaults_module.json │ └── remote-highlight-ui_module.json ├── foundryvtt-system-manifest │ ├── CoC7_system.json │ └── dnd5e_system.json ├── foundryvtt-world-manifest │ └── foundryvtt-demo-world_world.json ├── github-action │ ├── empty_json_must_always_fail.json │ └── missing_items_in_run.json ├── github-discussion │ └── no_body.yaml ├── github-funding │ ├── buy_me_a_coffee-bad-type.json │ ├── buy_me_a_coffee-empty-string.json │ ├── community_bridge-bad-type.json │ ├── community_bridge-empty-string.json │ ├── custom-array-bad-format.json │ ├── custom-array-bad-type.json │ ├── custom-array-not-unique.json │ ├── custom-array-too-long.json │ ├── custom-array-too-short.json │ ├── custom-bad-type.json │ ├── custom-string-bad-format.json │ ├── custom-string-empty-string.json │ ├── github-array-empty-array.json │ ├── github-array-non-unique.json │ ├── github-array-too-many-items.json │ ├── github-bad-type.json │ ├── github-string-empty-string.json │ ├── issuehunt-bad-type.json │ ├── issuehunt-empty-string.json │ ├── ko_fi-bad-type.json │ ├── ko_fi-empty-string.json │ ├── liberapay-bad-type.json │ ├── liberapay-empty-string.json │ ├── open_collective-bad-type.json │ ├── open_collective-empty-string.json │ ├── patreon-bad-type.json │ ├── patreon-empty-string.json │ ├── polar-bad-type.json │ ├── polar-empty-string.json │ ├── thanks_dev-bad-pattern.json │ ├── thanks_dev-bad-type.json │ ├── tidelift-bad-type.json │ └── tidelift-unknown-platform-name.json ├── github-issue-config │ └── links-must-have-name-url-and-about.json ├── github-issue-forms │ ├── check_additionalProperties_at_attribute.json │ ├── check_additionalProperties_at_body.json │ ├── check_additionalProperties_at_root.json │ ├── check_unknown_type.json │ └── wrong_render_name.yml ├── github-workflow │ ├── all-steps-must-contain-run-or-uses.yaml │ ├── bad_pull_request_event_declaration.yaml │ ├── empty_json_must_always_fail.yaml │ ├── env-must-be-object-or-has-from-json.yaml │ ├── permissions-event-has-wrong-level.yaml │ ├── permissions-event-has-wrong-property-keys.yaml │ ├── permissions-must-be-object-or-string.yaml │ ├── permissions-string-is-not-from-enum.yaml │ ├── reusable-workflow-input-must-declare-type.yaml │ ├── reusable-workflow-uses-has-wrong-filetype.yaml │ ├── reusable-workflow-uses-has-wrong-pattern.yaml │ ├── runs-on.yaml │ ├── steps-must-contain-run-or-uses.yaml │ ├── with-must-be-object-or-has-from-json-copy.yaml │ ├── workflow_dispatch-inputs-bool-default-.yaml │ ├── workflow_dispatch-inputs-choice-without-options.yaml │ └── workflow_dispatch-inputs-string-default-bool.yaml ├── global │ ├── must-have-full-semver-version.json │ └── must-use-valid-rollforward-value.json ├── grpc-api-gateway │ ├── invalid-multiple-methods.yaml │ └── invalid-root-value.yaml ├── hammerkit │ └── invalid_envs.json ├── hatch │ ├── both-dev-mode-dirs-and-exact.toml │ ├── both-vcs-and-static.toml │ ├── invalid-platform-override.toml │ └── try-redefining-pypi.toml ├── hugo-theme │ ├── basic-requirement.toml │ ├── incorrect-values.toml │ └── mistake-author-s.toml ├── hws-config │ └── hws-config.yaml ├── img-catapult-psp-1.0.0 │ ├── contents-additional-properties.yaml │ ├── contents-buildConfig-not-uppercase.yaml │ ├── contents-missing-properties.yaml │ └── contents-name-more-than-30-chars.yaml ├── importmap │ └── unknown_property.json ├── jasmine │ ├── camel-case-prop.json │ └── wrong-value.json ├── jfrog-pipelines │ ├── incorrect_resource_aql.yml │ ├── incorrect_resource_buildInfo.yml │ ├── incorrect_resource_cronTrigger.yml │ ├── incorrect_resource_distributionRule.yml │ ├── incorrect_resource_fileSpec.yml │ ├── incorrect_resource_gitrRepo.yml │ ├── incorrect_resource_helmChart.yml │ ├── incorrect_resource_image.yml │ ├── incorrect_resource_incomingWebhook.yml │ ├── incorrect_resource_outgoingWebhook.yml │ ├── incorrect_resource_propertyBag.yml │ ├── incorrect_resource_releaseBundle.yml │ ├── incorrect_resource_remoteFile.yml │ ├── incorrect_resource_vmcluster.yml │ ├── incorrect_step_bash.yml │ ├── incorrect_step_createReleaseBundle.yml │ ├── incorrect_step_dockerBuild.yml │ ├── incorrect_step_dockerPush.yml │ ├── incorrect_step_goPublishBinary.yml │ ├── incorrect_step_goPublishModule.yml │ ├── incorrect_step_gradleBuild.yml │ ├── incorrect_step_helmDeploy.yml │ ├── incorrect_step_helmPublish.yml │ ├── incorrect_step_mvnBuild.yml │ ├── incorrect_step_npmBuild.yml │ ├── incorrect_step_npmPublish.yml │ ├── incorrect_step_powershell.yml │ ├── incorrect_step_promoteBuild.yml │ ├── incorrect_step_publishBuildInfo.yml │ ├── pipeline_with_wrong_step_type.yml │ ├── pipeline_without_steps.yml │ ├── resources_without_type_config.yml │ └── without_pipelines_or_resources.yml ├── kustomization │ └── 3825.yml ├── lefthook │ └── bad-skip-output.yml ├── linutil-tab-data │ └── invalid-properties.json ├── linutil-tabs │ └── invalid-items.json ├── liquibase │ ├── columns_without_column.json │ ├── missing_author_from_changeset.json │ ├── missing_column_name.json │ └── missing_id_from_changeset.json ├── luaurc │ ├── invalid-alias.json │ ├── invalid-alias1.json │ ├── invalid-alias2.json │ ├── invalid-global.json │ ├── invalid-lint-option.json │ ├── invalid-lint.json │ └── unknown-config.json ├── metricshub-connector │ └── metricshub-connector.yaml ├── metricshub │ └── metricshub.yaml ├── minecraft-texture-mcmeta │ └── fusion-with-vanilla-properties.json ├── mkdocs-1.6 │ ├── extra_js.yml │ └── mkdocs.yml ├── mongodb-atlas-search-index-definition │ ├── customanalyzer-name-builtin.json │ ├── customanalyzer-name-lucene.json │ └── customanalyzer-name-mongodb.json ├── monika-config-schema │ ├── bad-notif-url.yml │ ├── bad-probe-extra.yml │ ├── bad-probe.yml │ ├── bad-query.yml │ ├── bad-request.yml │ └── bad-type.yml ├── ninjs-2.0 │ ├── 001_missing_uri.json │ └── 002_malformed_headline.json ├── package │ ├── exports-test.json │ ├── funding-invalid-prop.json │ ├── funding-invalid-type-array.json │ ├── funding-invalid-type.json │ ├── imports-no-char-test.json │ ├── pnpm-audit-ignore-cves-format.json │ └── pnpm-audit-ignore-ghsas-format.json ├── pantsbuild-2.14.0 │ ├── pants-isort-version-not-string.toml │ ├── pants-python-interpreter-constraints-not-array.toml │ └── pants-version-not-string.toml ├── pdm │ ├── global_but_not_project_keys.json │ ├── invalid_enum_cache_method.json │ ├── invalid_enum_index_type.json │ ├── invalid_enum_strategy_save.json │ ├── invalid_enum_strategy_update.json │ ├── pypi_key_no_object.json │ └── repository_key_no_object.json ├── pep-723 │ ├── 1.toml │ ├── 2.toml │ └── 3.toml ├── popxf-1.0 │ ├── bad_key_observable_central.json │ ├── bad_keys_observable_uncertainties.json │ ├── bad_observable_central_key.json │ ├── bad_observable_central_scale_array_FOP.json │ ├── bad_observable_central_value.json │ ├── bad_observable_uncertainties_scale_array_FOP.json │ ├── bad_value_inputs.json │ ├── bad_value_inputs_corr_nostd.json │ ├── bad_value_inputs_mean.json │ ├── bad_value_parameters.json │ ├── bad_value_scale_array_string.json │ ├── bad_value_scale_string.json │ ├── bad_value_schema.json │ ├── empty_data.json │ ├── extra_field.json │ ├── extra_subfield.json │ ├── missing_basis.json │ ├── missing_data.json │ ├── missing_eft.json │ ├── missing_expression.json │ ├── missing_field_inputs_dist.json │ ├── missing_metadata.json │ ├── missing_observable_expressions.json │ ├── missing_polynomial_central.json │ ├── missing_polynomial_names.json │ ├── missing_scale.json │ ├── missing_schema.json │ └── missing_tool_name.json ├── pre-commit-config │ ├── deprecated-config.json │ ├── invalid-meta-id.json │ ├── invalid-meta-language.json │ └── local-missing-entry.json ├── pre-commit-hooks │ └── missing-entry.json ├── prettierrc │ └── .prettierrc.yaml ├── prisma │ └── empty_json_must_always_fail.json ├── prometheus-alertmanager │ └── mix-3dots-and-labels.yml ├── pubspec │ ├── bad_asset_transformer.yaml │ ├── bad_executables.yaml │ ├── bad_name.yaml │ ├── bad_platforms.yaml │ ├── bad_publish_to.yaml │ ├── no_name.yaml │ └── screenshot_missing_description.yaml ├── pull-request-labeler-5 │ ├── bad-changed-files.yml │ ├── bad-toplevel.yml │ └── bad-type.yml ├── putout │ └── ignore-items.json ├── pyproject │ ├── black-invalid.toml │ ├── black-target.toml │ ├── cibuildwheel-bad-inherit.toml │ ├── cibuildwheel-bad-override.toml │ ├── cibuildwheel-unreco.toml │ ├── dependency-groups-1.toml │ ├── dependency-groups-2.toml │ ├── dependency-groups-3.toml │ ├── dynamic-version-specified.toml │ ├── extra-top-level.toml │ ├── mypy-emptymodule.toml │ ├── mypy-extra.toml │ ├── mypy-nomodule.toml │ ├── pdm-path-required.toml │ ├── pdm-script-method-exclusive.toml │ ├── pdm-source-no-name.toml │ ├── pep639-mismatch.toml │ ├── pep794-nonident.toml │ ├── pep794-nonprivate.toml │ ├── pep794-space.toml │ ├── poetry-bad-multiline.toml │ ├── poetry-plugin-dotenv-example-1.toml │ ├── poetry-source-1.toml │ ├── poetry-source-2.toml │ ├── poetry-source-3.toml │ ├── poetry-source-4.toml │ ├── repo-review-extra-field.toml │ ├── repo-review-invalid-code.toml │ ├── ruff-bad-line-length.toml │ ├── scikit-build-no-template.toml │ ├── scikit-build-unknown.toml │ ├── setuptools-invalid-find.toml │ ├── tox-invalid-legacy.toml │ ├── ty-invalid-severity.toml │ ├── uv-bad-index-url.toml │ └── version-unspecified.toml ├── qodana-1.0 │ └── dotnet-solution-and-project.yaml ├── rancher-fleet-0.5 │ └── unkown-fields.yaml ├── rancher-fleet-0.8 │ ├── false-type-do-not-deploy.yaml │ └── unkown-fields.yaml ├── rudder-techniques │ └── 1.yml ├── samt │ └── samt.yaml ├── sergen │ ├── baserow-isnolonger-object.json │ ├── empty-connection.json │ ├── empty-table.json │ ├── extends-no-json.json │ ├── unique-app-setting-files.json │ ├── unique-appliedupgrades.json │ ├── unique-include-foreign-fields.json │ ├── unique-remove-foreign-fields.json │ ├── wrong-capitalization-of-tablename.json │ ├── wrong-initialtype.json │ └── wrong-initialversion.json ├── sil-kit-participant-configuration │ ├── full-wrong-additional-root.silkit.json │ ├── full-wrong-additional-root.silkit.yaml │ └── not-object.silkit.yaml ├── sil-kit-registry-configuration │ ├── full-wrong-additional-root.silkit-registry.json │ ├── full-wrong-additional-root.silkit-registry.yaml │ ├── no-log-from-remotes.silkit-registry.yaml │ ├── no-remote-logging.silkit-registry.yaml │ └── not-object.sillkit.silkit-registry.yaml ├── sourcery_yaml_schema │ └── .sourcery-deprecated.yaml ├── specmatic │ ├── auth-bearer-env-wrong-type.json │ ├── auth-bearer-file-wrong-type.json │ ├── consumes-basepath-wrong-type.json │ ├── consumes-baseurl-wrong-type.json │ ├── consumes-host-wrong-type.json │ ├── consumes-object-additional-properties.json │ ├── consumes-port-wrong-type.json │ ├── consumes-specs-wrong-type.json │ ├── consumes-wrong-type.json │ ├── contract-additional-properties.json │ ├── contracts-wrong-type.json │ ├── environment-baseurl-value-wrong-type.json │ ├── environment-baseurls-wrong-type.json │ ├── environments-wrong-type.json │ ├── filesystem-additional-properties.json │ ├── filesystem-directory-wrong-type.json │ ├── git-additional-properties.json │ ├── git-branch-wrong-type.json │ ├── git-url-wrong-type.json │ ├── invalid-version.json │ ├── missing-contracts.json │ ├── missing-version.json │ ├── provides-host-wrong-type.json │ ├── provides-object-additional-properties.json │ ├── provides-port-wrong-type.json │ ├── provides-resiliency-invalid-enum.json │ ├── provides-specs-wrong-type.json │ ├── provides-wrong-type.json │ ├── version-wrong-type.json │ ├── wrong-stub-strict-mode-type.json │ └── wrong-test-strict-mode-type.json ├── staticwebapp.config │ ├── defaultheaders_must_fail.json │ ├── invalid_apiruntime_must_fail.json │ ├── invalid_trailingslash_must_fail.json │ ├── platformerroroverrides_must_always_fail.json │ └── serve_property_must_always_fail.json ├── stylelintrc │ └── objectRule.json ├── stylua │ └── call-parens.toml ├── treefmt │ └── unsupported_formatter_name.json ├── ubuntu-server-autoinstall │ ├── bad1.json │ └── bad2.json ├── unist │ ├── void-root.missing-type.json │ ├── void-root.with-data.non-object.json │ ├── void-root.with-position.forbidden-point-prop.json │ ├── void-root.with-position.forbidden-prop.json │ ├── void-root.with-position.missing-end-column.json │ ├── void-root.with-position.missing-end-line.json │ ├── void-root.with-position.missing-end.json │ ├── void-root.with-position.missing-start-column.json │ ├── void-root.with-position.missing-start-line.json │ └── void-root.with-position.missing-start.json ├── utam-page-object │ ├── invalid-element-type.utam.json │ ├── invalid-interface-with-elements.utam.json │ └── missing-root-selector.utam.json ├── venvironment-schema-v2.2.0 │ ├── invalid-version.yaml │ └── missing-version.yaml ├── venvironment-schema-v3.2.0 │ ├── invalid-version.yaml │ └── missing-version.yaml ├── venvironment-schema-v4.0.0 │ ├── invalid-version.yaml │ └── missing-version.yaml ├── venvironment-schema-v4.1.0 │ ├── invalid-version.yaml │ └── missing-version.yaml ├── venvironment-schema-v4.2.0 │ ├── invalid-version.yaml │ └── missing-version.yaml ├── venvplus-schema-v1.0.0 │ ├── invalid-version.yaml │ └── missing-version.yaml ├── vhwdebugger-binding-schema │ ├── empty.vhwdebugger-binding.yaml │ ├── float_version.vhwdebugger-binding.yaml │ ├── gdb_empty_client_path.vhwdebugger-binding.yaml │ ├── gdb_empty_symbol_path.vhwdebugger-binding.yaml │ ├── gdb_feature_unavailable.vhwdebugger-binding.yaml │ ├── gdb_invalid_run.vhwdebugger-binding.yaml │ ├── gdb_no_client_path.vhwdebugger-binding.yaml │ ├── gdb_no_gdb_settings.vhwdebugger-binding.yaml │ ├── gdb_no_run.vhwdebugger-binding.yaml │ ├── gdb_no_symbol_path.vhwdebugger-binding.yaml │ ├── invalid_bool.vhwdebugger-binding.yaml │ ├── invalid_debugger_name.vhwdebugger-binding.yaml │ ├── invalid_debugger_name2.vhwdebugger-binding.yaml │ ├── invalid_debugger_specific_settings.vhwdebugger-binding.yaml │ ├── invalid_default_debugger.vhwdebugger-binding.yaml │ ├── invalid_lauterbach_packlen.vhwdebugger-binding.yaml │ ├── invalid_port.vhwdebugger-binding.yaml │ ├── invalid_port2.vhwdebugger-binding.yaml │ ├── invalid_string.vhwdebugger-binding.yaml │ ├── invalid_type.vhwdebugger-binding.yaml │ ├── no_debugger.vhwdebugger-binding.yaml │ ├── no_debugger_list.vhwdebugger-binding.yaml │ ├── no_node.vhwdebugger-binding.yaml │ ├── no_object.vhwdebugger-binding.yaml │ ├── no_port.vhwdebugger-binding.yaml │ ├── no_type.vhwdebugger-binding.yaml │ ├── no_version.vhwdebugger-binding.yaml │ ├── unknown_setting_debugger.vhwdebugger-binding.yaml │ ├── unknown_setting_root.vhwdebugger-binding.yaml │ ├── unsupported_version.vhwdebugger-binding.yaml │ └── wrong_version_format.vhwdebugger-binding.yaml ├── vtesttree-schema-v1.0.0 │ ├── invalid-version.vtesttree.yaml │ ├── missing-version.vtesttree.yaml │ └── test-fixture-in-v1.vtesttree.yaml ├── vtesttree-schema-v2.0.0 │ └── test-group-in-v2.vtesttree.yaml ├── vtesttree-schema-v2.1.0 │ ├── multiple-completions.vtesttree.yaml │ ├── multiple-preparations.vtesttree.yaml │ └── variant-dependencies-in-v210.vtesttree.yaml ├── vtesttree-schema-v2.2.0 │ └── variant-dependencies-numeric.vtesttree.yaml ├── vtesttree-schema-v2.3.0 │ └── test-case_sequence_list.vtesttree.yaml ├── vtesttree-schema-v2.4.0 │ └── test-case-sequence-list.vtesttree.yaml ├── vtestunit-schema │ ├── invalid-test-unit-information.vtestunit.yaml │ ├── invalid-version.vtestunit.yaml │ ├── missing-key-addInfo.vtestunit.yaml │ ├── missing-version.vtestunit.yaml │ └── wrong-source-file.vtestunit.yaml ├── web-manifest-share-target │ ├── file_share_invalid_accept.json │ ├── file_share_target_has_no_name.json │ ├── share_target_has_no_action.json │ └── text_share_invalid_method.json ├── web-types │ ├── pattern.web-types.json │ └── pattern2.web-types.json ├── webextension │ └── open-irc-links_protocol-handler-objectified.json ├── winutil-applications │ └── invalid-properties.json ├── winutil-presets │ └── invalid-items.json ├── youtrack-app │ ├── empty-permissions-list.json │ ├── iconPath-incorrect.json │ ├── indexPath-incorrect.json │ └── required-field-not-provided.json └── zuul │ ├── jobs-workspace-scheme.yaml │ ├── jobs.yaml │ └── jobs2.yaml ├── packages.config ├── robots.txt ├── schema-validation.jsonc ├── schema-validation.schema.json ├── schemas └── json │ ├── BizTalkServerApplicationSchema.json │ ├── abc-inventory-module-data-1.0.0.json │ ├── abc-inventory-module-data-2.0.0.json │ ├── abc-inventory-module-data-3.0.0.json │ ├── abc-inventory-module-data-4.0.0.json │ ├── abc-inventory-module-data-5.1.0.json │ ├── abc-supply-plan-1.0.0.json │ ├── abc-supply-plan-10.0.0.json │ ├── abc-supply-plan-10.1.0.json │ ├── abc-supply-plan-11.0.0.json │ ├── abc-supply-plan-11.1.0.json │ ├── abc-supply-plan-11.2.0.json │ ├── abc-supply-plan-2.0.0.json │ ├── abc-supply-plan-3.0.0.json │ ├── abc-supply-plan-4.0.0.json │ ├── abc-supply-plan-5.0.0.json │ ├── abc-supply-plan-6.0.0.json │ ├── abc-supply-plan-7.0.0.json │ ├── abc-supply-plan-8.0.0.json │ ├── abc-supply-plan-9.0.0.json │ ├── accelerator.json │ ├── agripparc-1.2.json │ ├── agripparc-1.3.json │ ├── agripparc-1.4.json │ ├── aiconfig-1.0.json │ ├── aider-0.82.json │ ├── aio-connector-metadata-5.0-preview.json │ ├── aio-connector-metadata-6.0-preview.json │ ├── aio-connector-metadata-7.0-preview.json │ ├── aio-connector-metadata-8.0-preview.json │ ├── aio-connector-metadata-9.0-preview.json │ ├── aio-wasm-graph-config-1.0.0.json │ ├── aiproj-1.0.json │ ├── aiproj-1.1.json │ ├── aiproj-1.2.json │ ├── aiproj-1.3.json │ ├── aiproj-1.4.json │ ├── aiproj-1.5.json │ ├── aiproj-1.6.json │ ├── aiproj-1.7.json │ ├── aiproj-1.8.json │ ├── airlock-microgateway-3.0.json │ ├── airlock-microgateway-3.1.json │ ├── airlock-microgateway-3.2.json │ ├── aliases.json │ ├── all-contributors.json │ ├── amx-muse.json │ ├── any.json │ ├── anywork-ac-1.0.json │ ├── anywork-ac-1.1.json │ ├── apibuilder.json │ ├── apollo-router-2.8.1.json │ ├── app-config.json │ ├── apple-app-site-association.json │ ├── appsettings.json │ ├── appsscript.json │ ├── appveyor.json │ ├── architectfx.json │ ├── artifacthub-repo.json │ ├── asconfig-schema.json │ ├── asmdef.json │ ├── aspire-8.0.json │ ├── assetlinks.json │ ├── aurora-1.0.json │ ├── aurora-1.1.json │ ├── aurora-1.2.json │ ├── aurora-1.3.json │ ├── ava.json │ ├── avro-avsc.json │ ├── aws-cdk-appconfig-featureflags-1.0.0.json │ ├── azure-containerapp-template.json │ ├── azure-deviceupdate-import-manifest-4.0.json │ ├── azure-deviceupdate-import-manifest-5.0.json │ ├── azure-deviceupdate-manifest-definitions-4.0.json │ ├── azure-deviceupdate-manifest-definitions-5.0.json │ ├── azure-deviceupdate-update-manifest-4.json │ ├── azure-deviceupdate-update-manifest-5.json │ ├── azure-devops-extension-manifest-1.0.json │ ├── azure-iot-edge-deployment-1.0.json │ ├── azure-iot-edge-deployment-2.0.json │ ├── azure-iot-edge-deployment-template-1.0.json │ ├── azure-iot-edge-deployment-template-2.0.json │ ├── azure-iot-edge-deployment-template-3.0.json │ ├── azure-iot-edge-deployment-template-4.0.json │ ├── azure-iot-edgeagent-deployment-1.0.json │ ├── azure-iot-edgeagent-deployment-1.1.json │ ├── azure-iot-edgehub-deployment-1.0.json │ ├── azure-iot-edgehub-deployment-1.1.json │ ├── azure-iot-edgehub-deployment-1.2.json │ ├── babelrc.json │ ├── backportrc.json │ ├── bamboo-spec.json │ ├── band-manifest.json │ ├── base-04.json │ ├── base.json │ ├── behat.json │ ├── bettercodehub.json │ ├── bigconfig.json │ ├── bigquery-table.json │ ├── bitrise-step.json │ ├── bitrise.json │ ├── block.json │ ├── bootstraprc.json │ ├── bosh-cpi-config.json │ ├── bosh-deploy-config.json │ ├── bower.json │ ├── bowerrc.json │ ├── boyka-config.json │ ├── bozr.json │ ├── bpkg.json │ ├── browser.i18n.json │ ├── buf.gen.json │ ├── buf.json │ ├── buf.plugin.json │ ├── buf.work.json │ ├── bukkit-plugin.json │ ├── bun-lock.json │ ├── bundleconfig.json │ ├── bunfig.json │ ├── bungee-plugin.json │ ├── bxci.schema-1.0.1.json │ ├── bxci.schema-1.0.json │ ├── bxci.schema-2.0.0.json │ ├── bxci.schema-2.x.json │ ├── bxci.schema-3.x.json │ ├── cargo-make.json │ ├── cargo-mutants-config.json │ ├── cargo.json │ ├── case_schema.json │ ├── catalog-info.json │ ├── cdk.json │ ├── chart-lock.json │ ├── chart.json │ ├── cheatsheets.json │ ├── chisel-slices.json │ ├── chrome-extension-locales-messages.json │ ├── chrome-manifest.json │ ├── chutzpah.json │ ├── cibuildwheel.json │ ├── cinnamon-spice-metadata.json │ ├── cinnamon-spice-settings.json │ ├── cinnamon-spice.info.json │ ├── circleciconfig.json │ ├── cirrus.json │ ├── clang-format-18.x.json │ ├── clang-format-21.x.json │ ├── clang-format.json │ ├── clang-tidy.json │ ├── clangd.json │ ├── clasp.json │ ├── claude-code-settings.json │ ├── clib.json │ ├── cloud-run-v1.json │ ├── cloud-sdk-pipeline-config-schema.json │ ├── cloudbuild.json │ ├── cloudfoundry-application-manifest.json │ ├── cloudify.json │ ├── codeclimate.json │ ├── codecov.json │ ├── codeship-services.json │ ├── codeship-steps.json │ ├── coffeelint.json │ ├── commands.json │ ├── commitlintrc.json │ ├── compile-commands.json │ ├── compilerconfig.json │ ├── compilerdefaults.json │ ├── component-detection-manifest.json │ ├── component.json │ ├── container-structure-test.json │ ├── content-security-policy-report-2.json │ ├── contextive-glossary.json │ ├── convex.json │ ├── cosmos-config.json │ ├── creatomic.json │ ├── crowdin.json │ ├── cryproj.52.schema.json │ ├── cryproj.53.schema.json │ ├── cryproj.54.schema.json │ ├── cryproj.55.schema.json │ ├── cryproj.dev.schema.json │ ├── cryproj.json │ ├── csscomb.json │ ├── csslintrc.json │ ├── ctfd.json │ ├── dart-build.json │ ├── dart-test.json │ ├── databricks-asset-bundles.json │ ├── datalogic-scan2deploy-android.json │ ├── datalogic-scan2deploy-ce.json │ ├── debugsettings.json │ ├── dein.json │ ├── dependabot-2.0.json │ ├── dependabot.json │ ├── deployed.json │ ├── detekt-1.14.1.json │ ├── detekt-1.22.0.json │ ├── devinit.schema-1.0.json │ ├── devinit.schema-2.0.json │ ├── devinit.schema-3.0.json │ ├── devinit.schema-4.0.json │ ├── devinit.schema-5.0.json │ ├── devinit.schema-6.0.json │ ├── djlint.json │ ├── docfx.json │ ├── docker-bake.json │ ├── dockerd.json │ ├── dofigen.json │ ├── dotnet-releases-index.json │ ├── dotnet-tools.json │ ├── dotnetcli.host.json │ ├── drone.json │ ├── drupal-breakpoints.json │ ├── drupal-config.json │ ├── drupal-info.json │ ├── drupal-layouts.json │ ├── drupal-libraries.json │ ├── drupal-links-action.json │ ├── drupal-links-contextual.json │ ├── drupal-links-menu.json │ ├── drupal-links-task.json │ ├── drupal-migration.json │ ├── drupal-permissions.json │ ├── drupal-recipe.json │ ├── drupal-routing.json │ ├── drupal-services.json │ ├── drush.site.yml.json │ ├── dss-2.0.0.json │ ├── dtool-dataset-metadata-1.0.json │ ├── easyvcr-net.json │ ├── electron-builder.json │ ├── elgato-stream-deck-plugin.json │ ├── elm.json │ ├── embrace-config-schema-1.0.0.json │ ├── epr-manifest.json │ ├── es6importsorterrc.json │ ├── eslintrc.json │ ├── esmrc.json │ ├── esquio.json │ ├── evolving-resolutive-process-notation-1.0.json │ ├── expo-37.0.0.json │ ├── expo-38.0.0.json │ ├── expo-39.0.0.json │ ├── expo-40.0.0.json │ ├── expo-41.0.0.json │ ├── expo-42.0.0.json │ ├── expo-46.0.0.json │ ├── expo-50.0.0.json │ ├── expo-52.0.0.json │ ├── expo-53.0.0.json │ ├── fabric.mod.json │ ├── factorial-drupal-breakpoints-css-0.2.0.json │ ├── feed-1.json │ ├── feed.json │ ├── first-timers.json │ ├── fly.json │ ├── foundryvtt-base-package-manifest.json │ ├── foundryvtt-module-manifest.json │ ├── foundryvtt-system-manifest.json │ ├── foundryvtt-template.json │ ├── foundryvtt-world-manifest.json │ ├── foxx-manifest.json │ ├── function.json │ ├── gadget-yaml.json │ ├── gaspar-1.0.json │ ├── gaspar-3.0.json │ ├── gcp-blueprint-metadata.json │ ├── gematik-test-hcpis.json │ ├── gematik-test-hcps.json │ ├── gematik-test-insurances.json │ ├── gematik-test-patients.json │ ├── gematik-tiger.json │ ├── geojson.json │ ├── gitea-issue-config.json │ ├── gitea-issue-forms.json │ ├── github-action.json │ ├── github-discussion.json │ ├── github-funding.json │ ├── github-issue-config.json │ ├── github-issue-forms.json │ ├── github-release-config.json │ ├── github-workflow-template-properties.json │ ├── github-workflow.json │ ├── gitversion.json │ ├── glazewm.json │ ├── global.json │ ├── golangci-lint.json │ ├── gpc.json │ ├── grafana-dashboard-5.x.json │ ├── grpc-api-gateway.json │ ├── grunt-clean-task.json │ ├── grunt-copy-task.json │ ├── grunt-cssmin-task.json │ ├── grunt-jshint-task.json │ ├── grunt-task.json │ ├── grunt-watch-task.json │ ├── hammerkit.json │ ├── hatch.json │ ├── haxelib.json │ ├── hayagriva.json │ ├── helmfile.json │ ├── hemtt-0.6.2.json │ ├── host-meta.json │ ├── host.json │ ├── htmlhint.json │ ├── httpmockrc.json │ ├── hugo-theme.json │ ├── hugo.json │ ├── huskyrc.json │ ├── hws-config.json │ ├── ide.host.json │ ├── imageoptimizer.json │ ├── img-catapult-psp-1.0.0.json │ ├── imgbotconfig.json │ ├── importmap.json │ ├── install.json │ ├── jasmine.json │ ├── jasonette.json │ ├── jdt.json │ ├── jekyll.json │ ├── jest.json │ ├── jfrog-pipelines.json │ ├── jovo-language-model.json │ ├── jreleaser-1.10.0.json │ ├── jreleaser-1.11.0.json │ ├── jreleaser-1.12.0.json │ ├── jreleaser-1.13.0.json │ ├── jreleaser-1.13.1.json │ ├── jreleaser-1.14.0.json │ ├── jreleaser-1.15.0.json │ ├── jreleaser-1.16.0.json │ ├── jreleaser-1.17.0.json │ ├── jreleaser-1.18.0.json │ ├── jreleaser-1.19.0.json │ ├── jreleaser-1.20.0.json │ ├── jreleaser-1.21.0.json │ ├── jreleaser-1.6.0.json │ ├── jreleaser-1.7.0.json │ ├── jreleaser-1.8.0.json │ ├── jreleaser-1.9.0.json │ ├── jsbeautifyrc-nested.json │ ├── jsbeautifyrc.json │ ├── jsconfig.json │ ├── jscpd.json │ ├── jscsrc.json │ ├── jsdoc-1.0.0.json │ ├── jshintrc.json │ ├── jsinspectrc.json │ ├── json-api-1.0.json │ ├── json-patch.json │ ├── jsone.json │ ├── jsonld.json │ ├── kestra-0.18.0.json │ ├── kestra-0.18.1.json │ ├── kestra-0.18.2.json │ ├── kestra-0.18.3.json │ ├── kestra-0.19.0.json │ ├── kode-ci-build-1.0.0.json │ ├── kong_json_schema.json │ ├── ksp-avc.json │ ├── ksp-ckan.json │ ├── kubernetes-definitions.json │ ├── kustomization.json │ ├── label-commenter-config.json │ ├── language-configuration.json │ ├── launchsettings.json │ ├── lazydocker.json │ ├── lazygit.json │ ├── lefthook.json │ ├── lego.json │ ├── lerna.json │ ├── lgtm.json │ ├── libman.json │ ├── license-report-config.json │ ├── licenses.1.json │ ├── linkinator-config.json │ ├── lintstagedrc.schema.json │ ├── linutil-tab-data.json │ ├── linutil-tabs.json │ ├── liquibase-3.2.json │ ├── liquibase.json │ ├── local.settings.json │ ├── loki.json │ ├── loobin-1.0.json │ ├── lsdlschema-0.7.json │ ├── lsdlschema-1.0.json │ ├── lsdlschema-1.2.json │ ├── lsdlschema-2.0.json │ ├── lsdlschema-3.0.json │ ├── lsdlschema-3.1.json │ ├── lsdlschema-3.2.json │ ├── lsdlschema-3.3.json │ ├── lsdlschema-3.4.json │ ├── lsdlschema-3.5.json │ ├── lsdlschema-4.0.json │ ├── lsdlschema-4.1.json │ ├── lsdlschema.json │ ├── luaurc.json │ ├── mapehr.json │ ├── markdown-link-check.json │ ├── markdownlint.json │ ├── maturin.json │ ├── mboats-config-0.1.json │ ├── mboats-config-0.2.json │ ├── mdxlintrc.json │ ├── metaschema-draft-07-unofficial-strict.json │ ├── metricshub-connector.json │ ├── metricshub.json │ ├── micro-syntax.json │ ├── micro.json │ ├── mimetypes.json │ ├── minecraft-advancement.json │ ├── minecraft-biome.json │ ├── minecraft-configured-carver.json │ ├── minecraft-custom-main-menu-mod.json │ ├── minecraft-damage-type.json │ ├── minecraft-dimension-type.json │ ├── minecraft-dimension.json │ ├── minecraft-item-modifier.json │ ├── minecraft-lang.json │ ├── minecraft-loot-table.json │ ├── minecraft-pack-mcmeta.json │ ├── minecraft-particle.json │ ├── minecraft-predicate.json │ ├── minecraft-recipe.json │ ├── minecraft-tag.json │ ├── minecraft-template-pool.json │ ├── minecraft-texture-mcmeta.json │ ├── minecraft-trim-material.json │ ├── minecraft-trim-pattern.json │ ├── mkdocs-1.0.json │ ├── mkdocs-1.6.json │ ├── mocharc.json │ ├── modernizrrc.json │ ├── monade-stack-config.json │ ├── mongodb-atlas-search-index-definition.json │ ├── monika-config-schema.json │ ├── mprocs-0.6.4.json │ ├── mta.json │ ├── mtad.json │ ├── mtaext.json │ ├── mycode.json │ ├── neoload.json │ ├── nest-cli.json │ ├── netlify.json │ ├── nightwatch.json │ ├── ninjs-1.0.json │ ├── ninjs-1.1.json │ ├── ninjs-1.2.json │ ├── ninjs-1.3.json │ ├── ninjs-1.4.json │ ├── ninjs-2.0.json │ ├── nodehawkrc.json │ ├── nodemon.json │ ├── now.json │ ├── npm-badges.json │ ├── npm-link-up.json │ ├── npmpackagejsonlintrc.json │ ├── nswag.json │ ├── nuejs-site.json │ ├── nuget-project-3.3.0.json │ ├── nuget-project.json │ ├── nycrc.json │ ├── ocelot.json │ ├── ogen.json │ ├── okh.json │ ├── omletrc.json │ ├── omnisharp.json │ ├── one-changelog-schema-0.1.json │ ├── one-service-descriptor-schema-0.1.json │ ├── openfin.json │ ├── openutau-character.json │ ├── openutau-ustx.json │ ├── openweather.current.json │ ├── openweather.roadrisk.json │ ├── opspec-io-0.1.7.json │ ├── package.json │ ├── package.manifest-7.0.0.json │ ├── package.manifest-8.0.0.json │ ├── package.manifest.json │ ├── packer.json │ ├── pantsbuild-2.14.0.json │ ├── pantsbuild-2.15.0.json │ ├── pantsbuild-2.16.0.json │ ├── pantsbuild-2.17.0.json │ ├── pantsbuild-2.18.0.json │ ├── pantsbuild-2.19.0.json │ ├── pantsbuild-2.20.0.json │ ├── pantsbuild-2.21.0.json │ ├── pantsbuild-2.24.0.json │ ├── pantsbuild-2.26.0.json │ ├── paper-plugin.json │ ├── partial-black.json │ ├── partial-cibuildwheel.json │ ├── partial-eslint-plugins.json │ ├── partial-fusion-pack-metadata.json │ ├── partial-fusion-texture-metadata.json │ ├── partial-mypy.json │ ├── partial-pdm-dockerize.json │ ├── partial-pdm.json │ ├── partial-poe.json │ ├── partial-poetry.json │ ├── partial-pyright.json │ ├── partial-pytest.json │ ├── partial-repo-review.json │ ├── partial-scikit-build.json │ ├── partial-setuptools-scm.json │ ├── partial-setuptools.json │ ├── partial-taskipy.json │ ├── partial-tox.json │ ├── pattern.json │ ├── pdm.json │ ├── pep-723.json │ ├── petstore-v1.0.json │ ├── pgap_yaml_input_reader.json │ ├── phrase.json │ ├── phraseapp.json │ ├── plagiarize-0.0.json │ ├── plagiarize-me-0.0.json │ ├── plagiarize-me.json │ ├── plagiarize.json │ ├── pm2-ecosystem.json │ ├── pnpm-workspace.json │ ├── pocketmine-plugin.json │ ├── poetry.json │ ├── popxf-1.0.json │ ├── popxf-corr-1.0.json │ ├── postcssrc.json │ ├── powerpages-web-template-manifest.json │ ├── powerpages.config.json │ ├── pre-commit-config.json │ ├── pre-commit-hooks.json │ ├── prettierrc-1.8.2.json │ ├── prettierrc-2.8.8.json │ ├── prettierrc.json │ ├── prisma.json │ ├── problem-object-rfc9457.json │ ├── problem_package_generators.json │ ├── project-1.0.0-beta3.json │ ├── project-1.0.0-beta4.json │ ├── project-1.0.0-beta5.json │ ├── project-1.0.0-beta6.json │ ├── project-1.0.0-beta8.json │ ├── project-1.0.0-rc1.json │ ├── project-1.0.0-rc2.json │ ├── project.json │ ├── projektor.json │ ├── prometheus-alertmanager.json │ ├── prometheus.json │ ├── prometheus.rules.json │ ├── prometheus.rules.test.json │ ├── proxies.json │ ├── pterodactyl.json │ ├── publiccode.json │ ├── pubspec.json │ ├── pull-request-labeler-5.json │ ├── pull-request-labeler.json │ ├── pulumi.json │ ├── putout.json │ ├── pylock.json │ ├── pyproject.json │ ├── pyrseas-0.8.json │ ├── qfconfig.json │ ├── qodana-1.0.json │ ├── radiohound-v0.json │ ├── rancher-fleet-0.5.json │ ├── rancher-fleet-0.8.json │ ├── rc3-auth-0.0.3.json │ ├── rc3-collection-0.0.3.json │ ├── rc3-environment-0.0.3.json │ ├── rc3-folder-0.0.3.json │ ├── rc3-request-0.0.3.json │ ├── rc3-settings-0.0.3.json │ ├── rehyperc.json │ ├── remarkrc.json │ ├── renovate.json │ ├── replit.json │ ├── resjson.json │ ├── roomodes.json │ ├── rudder-techniques.json │ ├── ruff.json │ ├── rust-project.json │ ├── rust-toolchain.json │ ├── rustfmt.json │ ├── safebox-schema-v1.0.0.json │ ├── sake.json │ ├── samt.json │ ├── samtrc.json │ ├── sarif-1.0.0.json │ ├── sarif-2.0.0-csd.2.beta.2018-10-10.json │ ├── sarif-2.0.0-csd.2.beta.2019-01-09.json │ ├── sarif-2.0.0-csd.2.beta.2019-01-24.json │ ├── sarif-2.0.0.json │ ├── sarif-2.1.0-rtm.0.json │ ├── sarif-2.1.0-rtm.1.json │ ├── sarif-2.1.0-rtm.2.json │ ├── sarif-2.1.0-rtm.3.json │ ├── sarif-2.1.0-rtm.4.json │ ├── sarif-2.1.0-rtm.5.json │ ├── sarif-2.1.0-rtm.6.json │ ├── sarif-2.1.0.json │ ├── sarif-external-property-file-2.1.0-rtm.0.json │ ├── sarif-external-property-file-2.1.0-rtm.1.json │ ├── sarif-external-property-file-2.1.0-rtm.2.json │ ├── sarif-external-property-file-2.1.0-rtm.3.json │ ├── sarif-external-property-file-2.1.0-rtm.4.json │ ├── sarif-external-property-file-2.1.0-rtm.5.json │ ├── sarif-external-property-file-2.1.0.json │ ├── sarif-external-property-file.json │ ├── sarif.json │ ├── schema-catalog.json │ ├── schema-draft-v4.json │ ├── schema-org-action.json │ ├── schema-org-contact-point.json │ ├── schema-org-place.json │ ├── schema-org-thing.json │ ├── scikit-build.json │ ├── semantic-release.json │ ├── semgrep.json │ ├── sergen.json │ ├── servicehub.config.schema.json │ ├── servicehub.service.schema.json │ ├── settings.job.json │ ├── setuptools.json │ ├── sigrid-scope-file.schema.json │ ├── sil-kit-participant-configuration.json │ ├── sil-kit-registry-configuration.json │ ├── size-limit.json │ ├── skypilot-task.json │ ├── slack-app-manifest.json │ ├── snowflake-config.json │ ├── snowflake-connections.json │ ├── solidaritySchema.json │ ├── solution-filter.json │ ├── sourcehut-build-0.41.2.json │ ├── sourcehut-build-0.65.0.json │ ├── sourcemap-v3.json │ ├── sourcery_yaml_schema.json │ ├── specif-1.0.json │ ├── specif-1.1.json │ ├── specmatic.json │ ├── sponge-mixins.json │ ├── sprite.json │ ├── sqlc-2.0.json │ ├── stackblitzrc.json │ ├── stale.json │ ├── starlake.json │ ├── staticwebapp.config.json │ ├── streamlit-config.json │ ├── stylelintrc.json │ ├── stylintrc.json │ ├── stylua.json │ ├── sublime-syntax.json │ ├── swa-cli.config.json │ ├── swagger-2.0.json │ ├── taplo.json │ ├── task.json │ ├── taskfile.json │ ├── taurus.json │ ├── template.json │ ├── templatesources.json │ ├── testenvironments.json │ ├── theme-v1.json │ ├── ti8m-cdk-concrete-environment-config.json │ ├── ti8m-cdk-concrete-environments.json │ ├── ti8m-cdk-environment-definition.json │ ├── tizen_workspace.json │ ├── tldr.json │ ├── tmlanguage.json │ ├── tmuxinator.json │ ├── tombi.json │ ├── toolinfo.1.1.0.json │ ├── traefik-v2-file-provider.json │ ├── traefik-v2.json │ ├── traefik-v3-file-provider.json │ ├── traefik-v3.json │ ├── travis.json │ ├── treefmt.json │ ├── truescript.json │ ├── ts-force-config.json │ ├── tsconfig.json │ ├── tsd.json │ ├── tsdrc.json │ ├── tslint.json │ ├── tsoa.json │ ├── tunnelhub.json │ ├── ty.json │ ├── typewiz.json │ ├── typings.json │ ├── typingsrc.json │ ├── typo3.json │ ├── typst.json │ ├── ubuntu-server-autoinstall.json │ ├── unist.json │ ├── up.json │ ├── uplugin.json │ ├── uproject.json │ ├── utam-page-object-1.5.0.json │ ├── utam-page-object-2.0.3.json │ ├── utam-page-object-2.2.0.json │ ├── utam-page-object.json │ ├── utcm-monitor.json │ ├── uv.json │ ├── uxp-manifest-5.json │ ├── vault.json │ ├── vector.json │ ├── vega-lite.json │ ├── vega.json │ ├── venvironment-schema-v1.0.0.json │ ├── venvironment-schema-v1.1.0.json │ ├── venvironment-schema-v1.1.1.json │ ├── venvironment-schema-v2.0.0.json │ ├── venvironment-schema-v2.1.0.json │ ├── venvironment-schema-v2.2.0.json │ ├── venvironment-schema-v3.0.0.json │ ├── venvironment-schema-v3.1.0.json │ ├── venvironment-schema-v3.2.0.json │ ├── venvironment-schema-v4.0.0.json │ ├── venvironment-schema-v4.1.0.json │ ├── venvironment-schema-v4.2.0.json │ ├── venvplus-schema-v1.0.0.json │ ├── vhwdebugger-binding-schema.json │ ├── vim-addon-info.json │ ├── vs-2017.3.host.json │ ├── vs-nesting.json │ ├── vsconfig.json │ ├── vsext.json │ ├── vsix-manifestinjection.json │ ├── vsix-publish.json │ ├── vsls.json │ ├── vss-extension.json │ ├── vtcfg-v19.0.0.json │ ├── vtesttree-schema-v1.0.0.json │ ├── vtesttree-schema-v2.0.0.json │ ├── vtesttree-schema-v2.1.0.json │ ├── vtesttree-schema-v2.2.0.json │ ├── vtesttree-schema-v2.3.0.json │ ├── vtesttree-schema-v2.4.0.json │ ├── vtestunit-schema.json │ ├── warp-keysets.json │ ├── warp-themes.json │ ├── warp-workflows.json │ ├── web-manifest-app-info.json │ ├── web-manifest-combined.json │ ├── web-manifest-share-target.json │ ├── web-manifest.json │ ├── web-types.json │ ├── webextension.json │ ├── webjob-publish-settings.json │ ├── webjobs-list.json │ ├── winget-pkgs-installer-1.0.0.json │ ├── winget-pkgs-locale-1.0.0.json │ ├── winget-pkgs-singleton-0.1.json │ ├── winget-pkgs-singleton-1.0.0.json │ ├── winutil-applications.json │ ├── winutil-presets.json │ ├── workflows.json │ ├── xs-app.json │ ├── xunit-2.2.json │ ├── xunit-2.3.json │ ├── xunit.runner.schema.json │ ├── yamllint.json │ ├── youtrack-app.json │ ├── zarf.json │ └── zuul.json ├── test ├── abc-inventory-module-data-1.0.0 │ └── abc-inventory-module-data.json ├── abc-inventory-module-data-2.0.0 │ └── abc-inventory-module-data.json ├── abc-inventory-module-data-3.0.0 │ └── abc-inventory-module-data.json ├── abc-inventory-module-data-4.0.0 │ └── abc-inventory-module-data.json ├── abc-inventory-module-data-5.1.0 │ └── abc-inventory-module-data.json ├── abc-supply-plan-1.0.0 │ └── abc-supply-plan.json ├── abc-supply-plan-10.0.0 │ └── abc-supply-plan.json ├── abc-supply-plan-10.1.0 │ └── abc-supply-plan.json ├── abc-supply-plan-11.0.0 │ └── abc-supply-plan.json ├── abc-supply-plan-11.1.0 │ └── abc-supply-plan.json ├── abc-supply-plan-11.2.0 │ └── abc-supply-plan.json ├── abc-supply-plan-2.0.0 │ └── abc-supply-plan.json ├── abc-supply-plan-3.0.0 │ └── abc-supply-plan.json ├── abc-supply-plan-4.0.0 │ └── abc-supply-plan.json ├── abc-supply-plan-5.0.0 │ └── abc-supply-plan.json ├── abc-supply-plan-6.0.0 │ └── abc-supply-plan.json ├── abc-supply-plan-7.0.0 │ └── abc-supply-plan.json ├── abc-supply-plan-8.0.0 │ └── abc-supply-plan.json ├── abc-supply-plan-9.0.0 │ └── abc-supply-plan.json ├── accelerator │ ├── accelerator-full-valid.yaml │ └── accelerator-short-valid.yaml ├── agripparc-1.2 │ ├── complete-js-agripparc.json │ ├── complete-ts-agripparc.json │ └── empty-agripparc.json ├── agripparc-1.3 │ ├── complete-js-agripparc.json │ ├── complete-ts-agripparc.json │ └── empty-agripparc.json ├── agripparc-1.4 │ ├── complete-js-agripparc.json │ ├── complete-ts-agripparc.json │ └── empty-agripparc.json ├── aiconfig-1.0 │ ├── function-call.aiconfig.json │ ├── llama-guard.aiconfig.json │ └── travel.aiconfig.json ├── aiproj-1.0 │ └── php-sample.json ├── aiproj-1.1 │ └── php-sample.json ├── aiproj-1.2 │ └── java-sample.json ├── aiproj-1.3 │ └── python-sample.json ├── aiproj-1.4 │ └── pygrep-sample.json ├── aiproj-1.5 │ └── pygrep-sample-with-sca.json ├── aiproj-1.6 │ └── java-sample-with-sca.json ├── aiproj-1.7 │ └── java-sample-with-branch-name.json ├── aiproj-1.8 │ └── java-sample-with-dsl-rules-path.json ├── airlock-microgateway-3.0 │ └── config.json ├── airlock-microgateway-3.1 │ └── config.json ├── airlock-microgateway-3.2 │ └── config.json ├── all-contributors │ ├── commit-type.json │ ├── complete.json │ ├── custom-contribution-type.json │ └── minimal.json ├── amx-muse │ ├── complete.json │ └── minimal.json ├── any │ └── any.json ├── anywork-ac-1.0 │ └── swagger-codegen.awc.json ├── anywork-ac-1.1 │ └── swagger-codegen.awc.json ├── apibuilder │ └── apibuilder-api.json ├── app-config │ └── app-config.yaml ├── apple-app-site-association │ ├── apple-app-site-association-new-format.json │ └── apple-app-site-association_getting-started.json ├── appsettings │ ├── elmahio-octopus.json │ ├── elmahio-var.json │ ├── elmahio.json │ ├── nlog.json │ ├── serilog-1.json │ ├── serilog-2.json │ ├── serilog-3.json │ └── weboptimizer.json ├── appsscript │ └── appsscript.json ├── appveyor │ ├── appveyor-matrix-config.json │ ├── appveyor2.yml │ ├── appvyor.yml │ └── reference.json ├── architectfx │ └── architectfx.yaml ├── artifacthub-repo │ ├── full.json │ ├── ignore.json │ ├── owners.json │ └── repositoryID.json ├── asconfig-schema │ ├── complicated_asconfig.json │ ├── cyclical_asconfig.json │ ├── entry-points_asconfig.json │ ├── extends_asconfig.json │ ├── respect-inheritence_asconfig.json │ ├── src_asconfig.json │ ├── targer_asconfig.json │ └── use-consts_asconfig.json ├── asmdef │ ├── test01.asmdef.json │ ├── test02.asmdef.json │ └── test03.asmdef.json ├── aspire-8.0 │ ├── AWS.json │ ├── AspireEventHub.json │ ├── AspireTestProject.json │ ├── AzureContainerApps.json │ ├── AzureFunctionsEndToEnd.json │ ├── AzureSearch.json │ ├── AzureSearchEndToEnd.json │ ├── AzureStorageEndToEnd.2.json │ ├── AzureStorageEndToEnd.json │ ├── BicepSample.json │ ├── BrowserTelemetry.json │ ├── CdkSample.json │ ├── CosmosEndToEnd.2.json │ ├── CosmosEndToEnd.json │ ├── CustomResources.2.json │ ├── CustomResources.json │ ├── DatabaseMigration.2.json │ ├── DatabaseMigration.json │ ├── Elasticsearch.json │ ├── EventHubs.json │ ├── HealthChecksSandbox.json │ ├── KafkaBasic.json │ ├── Keycloak.json │ ├── MilvusPlayground.json │ ├── Mongo.2.json │ ├── MySqlDb.json │ ├── Nats.2.json │ ├── Nats.3.json │ ├── OpenAIEndToEnd.2.json │ ├── OpenAIEndToEnd.json │ ├── OracleEndToEnd.2.json │ ├── OracleEndToEnd.json │ ├── Orleans.2.json │ ├── ParameterEndToEnd.2.json │ ├── ParameterEndToEnd.json │ ├── PostgresEndToEnd.2.json │ ├── PostgresEndToEnd.json │ ├── ProxylessEndToEnd.2.json │ ├── ProxylessEndToEnd.json │ ├── Python.json │ ├── Qdrant.2.json │ ├── Qdrant.json │ ├── Redis.json │ ├── Seq.2.json │ ├── ServiceBus.json │ ├── SignalR.2.json │ ├── SqlServerEndToEnd.2.json │ ├── SqlServerEndToEnd.json │ ├── Stress.2.json │ ├── Stress.json │ ├── TestProject.2.json │ ├── TestShop.2.json │ ├── TestShop.3.json │ ├── TestShop.json │ ├── WaitForSandbox.json │ ├── WebPubSub.json │ ├── WithDockerfile.2.json │ ├── bicep.json │ ├── cdk.json │ ├── dapr.json │ ├── mongo.json │ ├── mysql.json │ ├── nats.json │ ├── orleans.json │ ├── seq.json │ ├── signalr.json │ ├── testproject.json │ └── withdockerfile.json ├── assetlinks │ └── assetlinks.json ├── aurora-1.0 │ ├── author.aurora.yaml │ ├── book.aurora.yaml │ ├── country.aurora.yaml │ └── lang.aurora.yaml ├── aurora-1.1 │ ├── author.aurora.yaml │ ├── book.aurora.yaml │ ├── country.aurora.yaml │ └── lang.aurora.yaml ├── aurora-1.2 │ ├── author.aurora.yaml │ ├── book.aurora.yaml │ ├── country.aurora.yaml │ └── lang.aurora.yaml ├── aurora-1.3 │ ├── author.aurora.yaml │ ├── book.aurora.yaml │ ├── country.aurora.yaml │ └── lang.aurora.yaml ├── ava │ └── ava.config.json ├── avro-avsc │ └── sample.avsc.json ├── aws-cdk-appconfig-featureflags-1.0.0 │ └── aws-example.json ├── azure-containerapp-template │ ├── full.containerapp-template.json │ └── mini.containerapp-template.json ├── azure-deviceupdate-import-manifest-4.0 │ ├── inlinesteps-importmanifest.json │ ├── mixedsteps-importmanifest.json │ └── referencesteps-importmanifest.json ├── azure-deviceupdate-import-manifest-5.0 │ └── relatedFiles-importManifest.json ├── azure-deviceupdate-update-manifest-4 │ ├── full-updatemanifest.json │ └── mini-updatemanifest.json ├── azure-deviceupdate-update-manifest-5 │ ├── full-updatemanifest.json │ └── mini-updatemanifest.json ├── azure-devops-extension-manifest-1.0 │ └── azure-devops-extension-manifest-sample.json ├── azure-iot-edge-deployment-1.0 │ └── deployment.json ├── azure-iot-edge-deployment-2.0 │ └── deployment.json ├── azure-iot-edge-deployment-template-1.0 │ └── deployment.template.json ├── azure-iot-edge-deployment-template-2.0 │ ├── connectivity_deployment.template.json │ ├── deployment.template.json │ ├── dm_module_to_module_deployment.json │ ├── edgehub_restart_deployment.template.json │ ├── long_haul_deployment.template.json │ ├── long_haul_deployment_constrained.template.json │ ├── module_to_functions_deployment.template.json │ ├── module_to_module_deployment.template.json │ ├── quickstart_deployment.template.json │ ├── runtime_only_deployment.template.json │ └── stress_deployment.template.json ├── azure-iot-edge-deployment-template-3.0 │ └── deployment.template.json ├── azure-iot-edge-deployment-template-4.0 │ ├── deployment.template.json │ ├── nestededge_bottomLayerBaseDeployment_connectivity_mqtt.template.json │ ├── nestededge_bottomLayerBaseDeployment_long_haul_amqp.template.json │ ├── nestededge_bottomLayerBaseDeployment_long_haul_mqtt.template.json │ ├── nestededge_isa95_smoke_test_BaseDeployment.json │ ├── nestededge_middleLayerBaseDeployment_amqp.json │ ├── nestededge_middleLayerBaseDeployment_mqtt.json │ ├── nestededge_topLayerBaseDeployment_amqp.json │ └── nestededge_topLayerBaseDeployment_mqtt.json ├── azure-iot-edgeagent-deployment-1.0 │ └── deployment.json ├── azure-iot-edgeagent-deployment-1.1 │ └── deployment.json ├── azure-iot-edgehub-deployment-1.0 │ └── deployment.json ├── azure-iot-edgehub-deployment-1.1 │ └── deployment.json ├── azure-iot-edgehub-deployment-1.2 │ └── deployment.json ├── babelrc │ ├── exampe-4.json │ ├── example-1.json │ ├── example-2.json │ └── example-3.json ├── bamboo-spec │ ├── bamboo-repositories-2.yml │ ├── bamboo-repositories-3.yml │ ├── bamboo-repositories.yml │ ├── bamboo-spec-conditional-build-triggers.yml │ ├── bamboo-spec-cron-long.yml │ ├── bamboo-spec-cron-short.yml │ ├── bamboo-spec-deployment.json │ ├── bamboo-spec-environment-permissions.json │ ├── bamboo-spec-plan-permissions.json │ ├── bamboo-spec-plan.json │ ├── bamboo-spec-tag.yml │ ├── bamboo-spec.yml │ └── bamboo-test-labels.yml ├── band-manifest │ ├── getting-started.json │ └── stockticker.json ├── bettercodehub │ ├── gaphor.json │ ├── mqttnet.json │ ├── programl.json │ └── pybamm.json ├── bigconfig │ └── bigconfig.yaml ├── bigquery-table │ └── sample.bigquery.json ├── bitrise-step │ ├── bitrise-step-test.json │ └── bitrise-step-test2.json ├── bitrise │ ├── bitrise-test.json │ └── bitrise-test2.json ├── bootstraprc │ ├── bootstraprc-test.json │ ├── bootstraprc-test2.json │ └── bootstraprc-test3.json ├── bosh-cpi-config │ ├── complex.yaml │ └── minimal.yaml ├── bosh-deploy-config │ ├── flags-all-only.yaml │ ├── flags-and-exclude.yaml │ └── flags-and-include.yaml ├── bower │ ├── bower-test.json │ ├── bower-test2.json │ ├── bower-test3.json │ └── bower-test4.json ├── bowerrc │ ├── bowerrc-test.json │ └── bowerrc-test2.json ├── boyka-config │ ├── boyka-config-android.json │ ├── boyka-config-api.json │ ├── boyka-config-ios.json │ ├── boyka-config-web-experimental-options.json │ └── boyka-config-web.json ├── bpkg │ └── bpkg.json ├── browser.i18n │ └── messages.json ├── buf.gen │ ├── buf-examples.gen.yaml │ ├── buf.gen.v1.protoc_path.yaml │ ├── buf.gen.v2.protoc_path.yaml │ ├── buf.gen.yaml │ ├── buf.managed.yaml │ ├── name.buf.gen.yaml │ ├── remote.buf.gen.yaml │ └── v2.buf.gen.yaml ├── buf.plugin │ ├── buf-cargo.plugin.yaml │ ├── buf-cmake.plugin.yaml │ ├── buf-go.plugin.yaml │ ├── buf-maven.plugin.yaml │ ├── buf-npm.plugin.yaml │ ├── buf-nuget.plugin.yaml │ ├── buf-python.plugin.yaml │ └── buf-swift.plugin.yaml ├── buf.work │ └── buf.work.yaml ├── buf │ ├── buf.protovalidate.yaml │ ├── buf.test2.yaml │ ├── buf.test3.yaml │ ├── buf.test4.yaml │ ├── buf.v2.yaml │ └── buf.yaml ├── bukkit-plugin │ └── bukkit-plugin-test.json ├── bun-lock │ └── bun.lock.json ├── bundleconfig │ └── example.json ├── bunfig │ └── bunfig.toml ├── bungee-plugin │ └── bungee-plugin-test.json ├── bxci.schema-1.0.1 │ ├── bxci-no-config.yml │ └── bxci-no-jenkins.yml ├── bxci.schema-1.0 │ └── bxci.yml ├── bxci.schema-2.0.0 │ └── bxci.yml ├── bxci.schema-2.x │ ├── bxci-cache.yml │ ├── bxci-checkmarx.yml │ ├── bxci-disable-commit-threshold.yml │ ├── bxci-output-docker.yml │ ├── bxci-parallel-stages.yml │ ├── bxci-vulnerability-scan.yml │ └── bxci.yml ├── bxci.schema-3.x │ └── bxci.yml ├── cargo-make │ └── cargo-make.json ├── cargo-mutants-config │ └── mutants.toml ├── cargo │ ├── config.toml │ ├── package-inheritance.toml │ ├── playdate-metadata-assets-list.toml │ ├── playdate-metadata-assets-opts.toml │ ├── playdate-metadata-assets-table.toml │ ├── playdate-metadata-info-max.toml │ ├── playdate-metadata-info-min.toml │ └── workspace-inheritance.toml ├── case_schema │ └── base.yml ├── catalog-info │ ├── acme-corp.json │ ├── all-apis.json │ ├── all-components.json │ ├── all-domains.json │ ├── all-resources.json │ ├── all-systems.json │ ├── api-with-$json.json │ ├── api-with-$text.json │ ├── api-with-$yaml.json │ ├── artist-engagement-portal-system.json │ ├── artist-lookup-component.json │ ├── artists-db-resource.json │ ├── artists-domain.json │ ├── audio-playback-system.json │ ├── backstage-group.json │ ├── boxoffice-group.json │ ├── entity-with-$json.json │ ├── entity-with-$text.json │ ├── entity-with-$yaml.json │ ├── hello-world-api.json │ ├── infrastructure-group.json │ ├── org-1.json │ ├── org.json │ ├── petstore-api.json │ ├── petstore-component.json │ ├── playback-domain.json │ ├── playback-lib-component.json │ ├── playback-order-component.json │ ├── podcast-api-component.json │ ├── podcast-system.json │ ├── queue-proxy-component.json │ ├── searcher-component.json │ ├── shuffle-api-component.json │ ├── spotify-api.json │ ├── streetlights-api.json │ ├── swapi-graphql.json │ ├── team-a-group-1.json │ ├── team-a-group-2.json │ ├── team-a-group-3.json │ ├── team-a-group-4.json │ ├── team-a-group.json │ ├── wayback-archive-api.json │ ├── wayback-archive-component.json │ ├── wayback-archive-ingestion-component.json │ ├── wayback-archive-storage-component.json │ ├── wayback-search-api.json │ ├── wayback-search-component.json │ └── www-artist-component.json ├── cdk │ ├── app.json │ └── extensions.json ├── chart-lock │ └── chart.lock.json ├── chart │ ├── full.json │ └── minimal.json ├── cheatsheets │ └── conf.yml ├── chisel-slices │ ├── base-files.yaml │ ├── base-passwd.yaml │ └── ca-certificates.yaml ├── chrome-extension-locales-messages │ └── messages.json ├── chrome-manifest │ ├── css-reloader.json │ ├── externally_connectable.json │ ├── inroll.json │ ├── local-time-in.json │ ├── thickbook.json │ ├── v3.json │ └── webdev-checklist.json ├── chutzpah │ ├── compilesettings.json │ └── default.json ├── cibuildwheel │ ├── cibuildwheel-default.toml │ └── cibuildwheel-overrides.toml ├── cinnamon-spice.info │ ├── valid-all-properties.json │ ├── valid-author-only.json │ └── valid-minimum-properties.json ├── circleciconfig │ ├── 3054.yml │ ├── 570.yaml │ ├── chromeless.json │ ├── conditional-job.json │ ├── contexts.json │ ├── ecr.json │ ├── executors.json │ ├── inline-orb.json │ ├── job-executors.json │ ├── logical-matches.json │ ├── mac-executor.json │ ├── machine-executor.yaml │ ├── matrix-simple.json │ ├── matrix.json │ ├── orbs.json │ ├── parallelism.json │ ├── resource-classes-and-images.yaml │ ├── version-2.0.json │ ├── version-2.1.json │ ├── version-2.json │ ├── workflow-job-override.yaml │ ├── workflow-job-requires.yaml │ └── workflows.json ├── cirrus │ ├── credentials.yaml │ └── node.json ├── clang-format-18.x │ ├── Chromium.clang-format.yml │ ├── GNU.clang-format.yml │ ├── Google.clang-format.yml │ ├── LLVM.clang-format.yml │ ├── Microsoft.clang-format.yml │ ├── Mozilla.clang-format.yml │ └── WebKit.clang-format.yml ├── clang-format-21.x │ ├── Chromium.clang-format.yml │ ├── GNU.clang-format.yml │ ├── Google.clang-format.yml │ ├── LLVM.clang-format.yml │ ├── Microsoft.clang-format.yml │ ├── Mozilla.clang-format.yml │ └── WebKit.clang-format.yml ├── clang-tidy │ ├── clang-tidy-grpc.yaml │ └── dump-clang-tidy.yaml ├── clangd │ ├── clangd-17.yml │ ├── clangd-2.yml │ ├── clangd-3.yml │ └── clangd.yml ├── clasp │ └── example.json ├── claude-code-settings │ ├── basic-config.json │ ├── complete-config.json │ ├── edge-cases.json │ ├── empty-config.json │ ├── env-variables.json │ ├── hooks-complete.json │ ├── mcp-servers.json │ ├── model-opus.json │ ├── modern-complete-config.json │ ├── notifications-disabled.json │ ├── notifications.json │ ├── permissions-advanced.json │ ├── permissions-basic.json │ ├── permissions-mcp.json │ ├── theme-variations.json │ └── with-schema.json ├── clib │ ├── clib-executable.json │ └── clib-source.json ├── cloud-run-v1 │ └── correct1.yaml ├── cloud-sdk-pipeline-config-schema │ ├── empty.json │ └── prodDeployment.json ├── cloudbuild │ ├── test-1.json │ ├── test-1.yaml │ └── test-2.json ├── cloudfoundry-application-manifest │ ├── test-1.yaml │ ├── test-2.yaml │ └── test-3.yaml ├── cloudify │ ├── ansible-clearwater-blueprint.json │ ├── ansible-compute-blueprint.json │ ├── ansible-hosts-input-blueprint.json │ ├── ansible-local-blueprint.json │ ├── ansible-openstack-lamp.json │ ├── ansible-openvpn-blueprint.json │ ├── ansible-playbook-compute-blueprint.json │ ├── ansible-playbook-openstack-lamp.json │ ├── ansible-relationships-blueprint.json │ ├── azure-aks.json │ ├── azure-app-sample-blueprint.json │ ├── azure-fortigate-blueprint.json │ ├── azure-grid-compute.json │ ├── azure-linux-nodecellar.json │ ├── azure-local-blueprint.json │ ├── azure-local-data-disks.json │ ├── azure-network-blueprint.json │ ├── azure-vm.json │ ├── azure-windows-iis-loadbalanced.json │ ├── cloudify-test.json │ ├── docker-ansible-container-using-docker-ansible-playbook.json │ ├── docker-ansible-container.json │ ├── docker-any-container.json │ ├── docker-install-docker.json │ ├── docker-mc-docker.json │ ├── docker-terraform-container-using-docker-terraform-module.json │ ├── helm-install-chart-using-interfaces.json │ ├── helm-install-chart-with-sa-and-kubeconfig-file-content.json │ ├── k8s-file-test-persistent-volume.json │ ├── k8s-file-test.json │ ├── k8s-files-test-multiple-resources.json │ ├── k8s-storage-class.json │ ├── k8s-test-deployment.json │ ├── k8s-test-stateful-set.json │ ├── openstack-blueprint.json │ ├── openstack.json │ ├── terraform-blueprint.json │ ├── terraform-wordpress-blueprint.json │ ├── utikities-ssh-key.json │ ├── utilities-cloudinit-aws.json │ ├── utilities-cloudinit-simple.json │ ├── utilities-config-simple.json │ ├── utilities-custom-workflow-example.json │ ├── utilities-deployment-proxy-custom-workflow.json │ ├── utilities-deployment-proxy.json │ ├── utilities-deployment-without-workflow.json │ ├── utilities-file-blueprint.json │ ├── utilities-file-openstack-blueprint.json │ ├── utilities-ftp-upload_ftp.json │ ├── utilities-hook-workflow-check-failure.json │ ├── utilities-node-instance-proxy.json │ ├── utilities-rest.json │ ├── utilities-scalelist.json │ ├── utilities-secrets-ead-secret-blueprint.json │ ├── utilities-suspend.json │ └── utilities-terminal-cisco.json ├── codeclimate │ ├── jekyll.json │ └── official-sample.json ├── codecov │ ├── codecov-example-1.json │ ├── codecov-example-2.json │ ├── codecov-example-3.json │ ├── codecov-example-4.json │ ├── codecov-example-5.json │ └── jellyfin-vue.yml ├── codeship-services │ └── codeship-services.json ├── codeship-steps │ └── codeship-steps.json ├── coffeelint │ ├── coffeelint-test.json │ └── issue-4523.json ├── commitlintrc │ ├── commitlintrc-test.json │ ├── commitlintrc-test2.json │ ├── commitlintrc-test3.json │ ├── commitlintrc-test4.json │ └── commitlintrc-test5.json ├── compile-commands │ └── compile_commands.json ├── compilerconfig │ └── compilerconfig.json ├── compilerdefaults │ └── compilerdefaults.json ├── component-detection-manifest │ └── cgmanifest.json ├── component │ └── component-test.json ├── container-structure-test │ ├── metadataTest.json │ └── test_1.json ├── content-security-policy-report-2 │ └── sample.json ├── contextive-glossary │ ├── contextive-glossary-imports-and-contexts.yml │ ├── contextive-glossary-imports.yml │ └── contextive-glossary.yml ├── convex │ └── convex.json ├── crowdin │ ├── bitwarden-mobile.json │ ├── bitwarden.json │ ├── github-docs.json │ └── joomla-cms.json ├── cryproj │ ├── cryproj-52-test.json │ ├── cryproj-53-test.json │ ├── cryproj-54-test.json │ ├── cryproj-55-test.json │ ├── cryproj-dev-test.json │ └── cryproj-test.json ├── csscomb │ └── csscomb.json ├── csslintrc │ └── WebAnalyzer.json ├── ctfd │ └── minimal.yaml ├── dart-build │ └── sample.json ├── dart-test │ └── from-pkg-test.json ├── databricks-asset-bundles │ └── databricks.yml ├── datalogic-scan2deploy-android │ └── sample.json ├── datalogic-scan2deploy-ce │ ├── sample-eapfast-and-dxu-file.json │ ├── sample-wep-and-dxu-file.json │ └── sample-wpa2-and-firmware-update.json ├── debugsettings │ ├── commandName.json │ ├── executablePath.json │ └── none.json ├── dein │ └── dein.json ├── dependabot-2.0 │ ├── allow.json │ ├── assignees.json │ ├── commit-message.json │ ├── directories.json │ ├── enable-beta-ecosystems-disabled.json │ ├── enable-beta-ecosystems-enabled.json │ ├── example.json │ ├── groups.dependency-type.json │ ├── groups.exclude-patterns.json │ ├── groups.patterns.json │ ├── groups.update-types.json │ ├── groups.yaml │ ├── ignore.json │ ├── issue-3777.yaml │ ├── labels.json │ ├── milestone.json │ ├── minimal.json │ ├── multi-ecosystem-groups.basic.yaml │ ├── multi-ecosystem-groups.commit-message-variations.yaml │ ├── multi-ecosystem-groups.full-featured.yaml │ ├── multi-ecosystem-groups.schedule-variations.yaml │ ├── open-pull-requests-limit.json │ ├── pull-request-branch-name.json │ ├── rebase-strategy.json │ ├── registries-top-level.json │ ├── schedule.interval-cron.json │ ├── schedule.interval.json │ ├── schedule.time.json │ ├── schedule.timezone.json │ ├── target-branch.json │ ├── vendor.json │ └── versioning-strategy.json ├── dependabot │ ├── onlyRequired.json │ └── withMatches.json ├── deployed │ └── deployed-test.json ├── detekt-1.14.1 │ └── default-detekt-config.json ├── detekt-1.22.0 │ ├── default-detekt-config.json │ └── generated-detekt-config.json ├── devinit.schema-1.0 │ └── sample.devinit.json ├── devinit.schema-2.0 │ └── sample.devinit.json ├── devinit.schema-3.0 │ └── sample.devinit.json ├── devinit.schema-4.0 │ └── sample.devinit.json ├── devinit.schema-5.0 │ └── sample.devinit.json ├── devinit.schema-6.0 │ └── sample.devinit.json ├── djlint │ └── .djlintrc.json ├── docfx │ ├── aspnetcore.json │ ├── docfx-seed.json │ └── dotnet-docs.json ├── docker-bake │ ├── basic.json │ ├── complex.json │ └── with-function.json ├── dockerd │ └── config.json ├── dofigen │ ├── springboot-maven.base.permissive.yml │ ├── springboot-maven.override.permissive.yml │ └── test.dofigen.yaml ├── dotnet-releases-index │ └── latest.json ├── dotnet-tools │ └── dotnet-tools.json ├── dotnetcli.host │ └── starterweb.json ├── drone │ ├── environment_boolean_value.yml │ ├── kubernetes.json │ ├── kubernetes_volumes.yaml │ ├── secret.json │ ├── secret_vault.json │ ├── template.json │ ├── volumes.json │ └── workspace.json ├── drupal-breakpoints │ └── drupal-breakpoints.yml ├── drupal-config │ └── drupal-config.yml ├── drupal-info │ ├── drupal-info-module.yml │ └── drupal-info-theme.yml ├── drupal-layouts │ └── drupal-layouts.yml ├── drupal-libraries │ ├── drupal-libraries-2.yml │ └── drupal-libraries.yml ├── drupal-links-action │ └── drupal-links-action.yml ├── drupal-links-contextual │ └── drupal-links-contextual.yml ├── drupal-links-menu │ └── drupal-links-menu.yml ├── drupal-links-task │ └── drupal-links-task.yml ├── drupal-migration │ └── drupal-migration.yml ├── drupal-permissions │ └── drupal-permissions.yml ├── drupal-recipe │ └── drupal-recipe.yml ├── drupal-routing │ └── drupal-routing.yml ├── drupal-services │ └── drupal-services.yml ├── dtool-dataset-metadata-1.0 │ └── dtool-dataset-metadata-1.0.json ├── easyvcr-net │ └── cassette.json ├── elgato-stream-deck-plugin │ ├── barraider-sample-plugin.json │ ├── dim-stream-deck-plugin.json │ ├── home-assistant-plugin.json │ ├── logitech-litra-plugin.json │ ├── stream-deck-phillips-hue-plugin.json │ └── voice-meeter-plugin.json ├── elm │ └── elm.json ├── embrace-config-schema-1.0.0 │ └── embrace-config.json ├── epr-manifest │ └── official-example.json ├── es6importsorterrc │ └── es6importsorterrc-test.json ├── eslintrc │ ├── WebAnalyzer.json │ ├── ecmaVersion13.json │ ├── ecmaVersion2022.json │ ├── nestedOverrides.json │ ├── typescript-eslint.json │ ├── withOverrides.json │ └── withReportUnusedDisableDirectives.json ├── esmrc │ ├── .esmrc.json │ └── .esmrc_.json ├── esquio │ └── esquio.json ├── evolving-resolutive-process-notation-1.0 │ ├── homeblog.erpn.json │ ├── homeblog.erpn.toml │ └── homeblog.erpn.yaml ├── expo-40.0.0 │ └── hotdog-app.json ├── expo-42.0.0 │ └── hotdog-app.json ├── expo-46.0.0 │ └── hotdog-app.json ├── expo-52.0.0 │ ├── with-new-arch-app.json │ └── with-router-tv-app-.json ├── expo-53.0.0 │ └── hotdog-app.json ├── factorial-drupal-breakpoints-css-0.2.0 │ ├── mandatory.json │ └── optional.json ├── feed-1 │ ├── microblog.json │ ├── podcast.json │ └── simple.json ├── feed │ ├── microblog.json │ ├── podcast.json │ └── simple.json ├── first-timers │ ├── first-timers-bot.json │ └── jekyll.json ├── fly │ └── fly.json ├── foundryvtt-module-manifest │ ├── pf2e-abomination-vaults_module.json │ └── remote-highlight-ui_module.json ├── foundryvtt-system-manifest │ ├── CoC7_system.json │ └── dnd5e_system.json ├── foundryvtt-world-manifest │ └── foundryvtt-demo-world_world.json ├── function │ ├── BlobTrigger.json │ ├── EventHubTrigger.json │ ├── ExternalFileTrigger.json │ ├── ExternalTable.json │ ├── FaceLocator.json │ ├── GenericWebHook.json │ ├── GitHubCommenter.json │ ├── GitHubWebHook.json │ ├── HttpGET(CRUD).json │ ├── HttpPOST(CRUD).json │ ├── HttpPUT(CRUD).json │ ├── HttpTrigger.json │ ├── ImageResizer.json │ ├── Kusto.json │ ├── ManualTrigger.json │ ├── MySql.json │ ├── QueueTrigger.json │ ├── SasToken.json │ ├── ScheduledMail.json │ ├── SendGrid.json │ ├── ServiceBusQueueTrigger.json │ ├── ServiceBusTopicTrigger.json │ ├── Sql.json │ ├── TimerTrigger.json │ └── function.json ├── gadget-yaml │ └── good-example.yaml ├── gaspar-1.0 │ └── gaspar-1.0.json ├── gaspar-3.0 │ └── gaspar-3.0.json ├── gcp-blueprint-metadata │ ├── core-metadata.json │ └── display-metadata.json ├── gematik-test-hcpis │ └── hcpi.yaml ├── gematik-test-hcps │ └── hcp.yaml ├── gematik-test-insurances │ └── insurance.yaml ├── gematik-test-patients │ └── patient.yaml ├── gematik-tiger │ └── tiger.yaml ├── gitea-issue-config │ ├── example2.yaml │ └── official-example.yml ├── gitea-issue-forms │ ├── example2.yaml │ └── official-example.yml ├── github-action │ ├── composite-run-steps.json │ ├── docker.json │ └── javascript.json ├── github-discussion │ ├── test.yaml │ └── test2.yaml ├── github-funding │ ├── buy_me_a_coffee.json │ ├── community_bridge.json │ ├── custom-array-max-length.json │ ├── custom-array-min-length.json │ ├── custom-array-uri-with-scheme.json │ ├── custom-array-uri-without-scheme.json │ ├── custom-string-uri-with-scheme.json │ ├── custom-string-uri-without-scheme.json │ ├── github-array-max-length.json │ ├── github-array-min-length.json │ ├── github-string.json │ ├── issuehunt.json │ ├── ko_fi.json │ ├── liberapay.json │ ├── open_collective.json │ ├── patreon.json │ ├── polar.json │ ├── thanks_dev.json │ ├── tidelift-package-name-maven.json │ ├── tidelift-package-name-npm.json │ ├── tidelift-package-name-nuget.json │ ├── tidelift-package-name-packagist.json │ ├── tidelift-package-name-pypi.json │ └── tidelift-package-name-rubygems.json ├── github-issue-config │ ├── just-contact-links.json │ ├── no-contact-links.json │ └── official-example.json ├── github-issue-forms │ ├── labels-comma-separated-string.yml │ ├── labels-single-string.yml │ ├── official-example.json │ ├── official-example_2.yml │ └── third-party-example.json ├── github-release-config │ ├── official-example-short.yml │ └── official-example.yml ├── github-workflow-template-properties │ ├── blank.json │ └── c-cpp.json ├── github-workflow │ ├── 1162.yaml │ ├── 1567.yaml │ ├── 2579-1.yaml │ ├── 2579-2.yaml │ ├── 918.yaml │ ├── 919.yaml │ ├── call-reusable-workflow-inherit-secrets.yaml │ ├── call-reusable-workflow-local-file.yaml │ ├── call-reusable-workflow.yaml │ ├── concurrency.yaml │ ├── conditions.yaml │ ├── containers.yaml │ ├── continue-on-error.yaml │ ├── defaults.yaml │ ├── env-from-json.yaml │ ├── env-with-simple-expression.yaml │ ├── environments.yaml │ ├── event-trigger.yaml │ ├── fail-fast.yaml │ ├── issue-3208.yaml │ ├── issue_2463_file_1.yaml │ ├── issue_2463_file_2.yaml │ ├── matrix_from_json.yaml │ ├── matrix_include.yaml │ ├── matrix_include_expression.yaml │ ├── npm-publish.yaml │ ├── on-event_name-null.yaml │ ├── permissions-none.yaml │ ├── permissions-object.yaml │ ├── permissions-string.yaml │ ├── reusable-workflow.yaml │ ├── runs-on-interpolated.yaml │ ├── runs-on.yaml │ ├── with-from-json.yaml │ ├── workflow_call_input_issue_2501.yaml │ └── workflow_dispatch-inputs.yaml ├── global │ ├── prerelease-version.json │ ├── simple-version.json │ └── valid-rollfoward.json ├── gpc │ ├── from-reference-server.json │ └── from-spec.json ├── grpc-api-gateway │ └── gateway.yaml ├── grunt-clean-task │ └── with-options.json ├── grunt-copy-task │ ├── file-pattern.json │ └── with-options.json ├── grunt-cssmin-task │ ├── with-options.json │ └── without-options.json ├── grunt-jshint-task │ ├── with-jshint-options.json │ └── without-jshint-options.json ├── grunt-task │ └── using files.json ├── grunt-watch-task │ └── watch.test.json ├── hammerkit │ └── .hammerkit.json ├── hatch │ ├── collector-env.toml │ ├── metadata-hooks.toml │ ├── minimal.toml │ ├── oroborous.toml │ ├── version-path.toml │ ├── version-source.toml │ ├── version-vcs-raw-options.toml │ ├── version-vcs.toml │ └── wheel-bypass-selection.toml ├── helmfile │ ├── helmfile-list-of-strings.json │ └── helmfile-test.json ├── hemtt-0.6.2 │ ├── hemtt-test.json │ └── hemtt-test.toml ├── host-meta │ └── official-example.json ├── host │ ├── host.v1.json │ └── host.v2.json ├── htmlhint │ └── example.json ├── httpmockrc │ └── httpmockrc-test.json ├── hugo-theme │ ├── multiple-authors.toml │ └── single-author.toml ├── hugo │ ├── 4526.toml │ ├── caches.json │ ├── example-1.toml │ ├── example-2.json │ ├── example-3.toml │ ├── example-4.yaml │ ├── example-5.yaml │ └── minify.json ├── huskyrc │ └── huskyrc-test.json ├── hws-config │ └── hws-config.yaml ├── imageoptimizer │ └── default.json ├── img-catapult-psp-1.0.0 │ ├── contents-min.yaml │ └── contents.yaml ├── imgbotconfig │ └── .imgbotconfig.json ├── importmap │ └── importmap.json ├── jasmine │ └── jasmine.json ├── jdt │ └── transform.json ├── jekyll │ ├── _config.yaml │ ├── arbitrary_permalink.yaml │ ├── issue-3702.yaml │ └── permalink.yaml ├── jest │ └── jest.json ├── jfrog-pipelines │ ├── pipelines.yml │ └── resources.yml ├── jovo-language-model │ └── en-US.json ├── jreleaser-1.10.0 │ └── jreleaser.yml ├── jreleaser-1.11.0 │ └── jreleaser.yml ├── jreleaser-1.6.0 │ └── jreleaser.yml ├── jreleaser-1.7.0 │ └── jreleaser.yml ├── jsconfig │ ├── jsconfig-emit-dts.json │ ├── jsconfig-extends-multiple.json │ ├── jsconfig-extends-single.json │ ├── jsconfig-strictBuiltinIteratorReturn.json │ ├── jsconfig-typescript5.0.json │ ├── jsconfig-typescript5.4.json │ ├── jsconfig-typescript5.8.json │ └── jsconfig.json ├── jscpd │ └── jscpd.json ├── jscsrc │ └── jscsrc-test.json ├── jshintrc │ ├── jshintrc-test.json │ └── usused-vars.json ├── jsinspectrc │ └── jsinspectrc-test.json ├── json-patch │ ├── IETF sample 1.json │ └── IETF sample 2.json ├── jsone │ ├── reverse-sort.json │ └── sort.json ├── jsonld │ ├── w3c-aliasing.json │ ├── w3c-indexing.json │ ├── w3c-multiple-contexts.json │ ├── w3c-nested-graphs.json │ └── w3c-sample.json ├── kestra-0.18.0 │ └── hello_world.yaml ├── kestra-0.18.1 │ └── hello_world.yaml ├── kestra-0.18.2 │ └── hello_world.yaml ├── kestra-0.18.3 │ └── hello_world.yaml ├── kestra-0.19.0 │ └── hello_world.yaml ├── kode-ci-build-1.0.0 │ ├── app-release.yaml │ ├── build-condition-test.yaml │ ├── ci-build.yaml │ ├── gitops-deploy.yaml │ ├── macos-build.yaml │ └── schedule-report.yaml ├── kong_json_schema │ └── kong.yml ├── kustomization │ ├── 2994.yml │ ├── 3825.yml │ ├── buildMetadata.json │ ├── configMapGenerator.json │ ├── helloworld.json │ ├── helmCharts.json │ ├── helmCharts2.yaml │ ├── images.json │ ├── labels.json │ ├── metadata.json │ ├── openapi.json │ ├── patchesJson6902.json │ ├── replacements.json │ ├── secretGenerator.json │ ├── validators.json │ ├── wordpress-new-patches.json │ └── wordpress.json ├── label-commenter-config │ ├── actions-label-commenter.json │ ├── placeholder-api.json │ ├── stellarium.json │ └── yourls.json ├── language-configuration │ └── language-configuration.json ├── launchsettings │ ├── default.json │ └── iisSettings.json ├── lazydocker │ └── default.yaml ├── lefthook │ ├── issue-4150.yml │ ├── issue-632.yml │ ├── lefthook-1.yml │ ├── lefthook-2.yml │ ├── lefthook-commitlint.yml │ ├── lefthook-complete.yml │ ├── lefthook-remotes.yml │ └── lefthook-verbose.yml ├── lego │ ├── lego-object-format.json │ └── lego.json ├── lgtm │ ├── fprime.json │ ├── godot.json │ ├── pyxis.json │ ├── scikit-learn.json │ ├── tesseract.json │ └── weblate.json ├── libman │ ├── v3Basic.json │ ├── v3DefaultDestinationWithOverride.json │ ├── v3WithFileMappings.json │ ├── withDefaultDestination.json │ ├── withDefaultProvider.json │ ├── withoutDefaultDestination.json │ └── withoutDefaultProvider.json ├── license-report-config │ ├── basic-license-report-config.json │ └── full-license-report-config.json ├── linkinator-config │ ├── basic.linkinator.config.json │ └── skip-array-config.json ├── linutil-tab-data │ └── one-tab.json ├── linutil-tabs │ └── top-level-directories.json ├── liquibase-3.2 │ └── rollbackVariants.json ├── liquibase │ ├── addAutoIncrement.json │ ├── addColumn.json │ ├── addDefaultValue.json │ ├── addForeignKeyConstraint.json │ ├── addLookupTable.json │ ├── addNotNullConstraint.json │ ├── addPrimaryKey.json │ ├── addUniqueConstraint.json │ ├── alterSequence.json │ ├── createIndex.json │ ├── createProcedure.json │ ├── createSequence.json │ ├── createTable.json │ ├── createView .json │ ├── customChange.json │ ├── delete.json │ ├── dropAllForeignKeyConstraints.json │ ├── dropColumn.json │ ├── dropDefaultValue.json │ ├── dropForeignKeyConstraint.json │ ├── dropIndex.json │ ├── dropNotNullConstraint.json │ ├── dropPrimaryKey.json │ ├── dropProcedure.json │ ├── dropSequence.json │ ├── dropTable.json │ ├── dropUniqueConstraint.json │ ├── dropView.json │ ├── empty.json │ ├── executeCommand.2.json │ ├── executeCommand.json │ ├── insert.json │ ├── liquibase_test.json │ ├── loadData.json │ ├── loadUpdateData.json │ ├── mergeColumns.json │ ├── modifyDataType.json │ ├── modifySql.json │ ├── output.json │ ├── preConditions.2.json │ ├── preConditions.json │ ├── property.json │ ├── renameColumn.json │ ├── renameSequence.json │ ├── renameTable.json │ ├── renameView.json │ ├── setColumnRemarks.json │ ├── setTableRemarks.json │ ├── sql.json │ ├── sqlFile.json │ ├── stop.json │ ├── tagDatabase.json │ ├── update.2.json │ └── update.json ├── loki │ └── loki.yaml ├── loobin-1.0 │ └── loobin-test.json ├── luaurc │ └── luaurc.json ├── mapehr │ ├── blood_pressure.map.yaml │ ├── bmi.map.yaml │ ├── comment.map.yaml │ ├── device_name.map.yaml │ ├── entity_address.map.yaml │ ├── hemoglobin_in_blood.map.yaml │ ├── medication.map.yaml │ ├── medication_order.map.yaml │ ├── organization_simple_name.map.yaml │ ├── party_relationship.map.yaml │ ├── person_simple_name.map.yaml │ ├── person_structured_name.map.yaml │ ├── problem_diagnosis.map.yaml │ ├── units.map.yaml │ └── vital_signs.map.yaml ├── markdown-link-check │ └── markdown-link-check.json ├── mboats-config-0.1 │ └── mboats-test.json ├── mboats-config-0.2 │ └── mboats-test.json ├── mdxlintrc │ ├── bullet.json │ ├── closeAtx.json │ ├── emphasis.json │ ├── fence.json │ ├── fences.json │ ├── full-settings.json │ ├── incrementListMarker.json │ ├── listItemIndent.json │ ├── plugin-list.json │ ├── plugin-object.json │ ├── printWidth.json │ ├── quote.json │ ├── quoteSmart.json │ ├── resourceLink.json │ ├── rule.json │ ├── ruleRepetition.json │ ├── ruleSpaces.json │ ├── setext.json │ ├── strong.json │ ├── tightDefinitions.json │ └── tightSelfClosing.json ├── metricshub-connector │ └── metricshub-connector.yaml ├── metricshub │ └── metricshub.yaml ├── micro │ └── expect-no-errors-for-correct-property-values.json ├── mimetypes │ └── examples.json ├── minecraft-advancement │ ├── arbalistic.json │ ├── elytra.json │ └── recipes-test.json ├── minecraft-biome │ └── dreadlands.json ├── minecraft-configured-carver │ └── cave-carver.json ├── minecraft-custom-main-menu-mod │ ├── default.json │ └── enigmatica2expert.json ├── minecraft-damage-type │ └── default.json ├── minecraft-dimension-type │ └── overworld_caves.json ├── minecraft-dimension │ └── thedrealands.json ├── minecraft-item-modifier │ └── edit-durability.json ├── minecraft-lang │ └── default.json ├── minecraft-loot-table │ └── bastion-bridge.json ├── minecraft-pack-mcmeta │ ├── default.json │ └── fusion-properties.json ├── minecraft-particle │ └── default.json ├── minecraft-predicate │ └── is-sneaking.json ├── minecraft-recipe │ └── anvil.json ├── minecraft-tag │ └── default.json ├── minecraft-template-pool │ └── template.json ├── minecraft-texture-mcmeta │ ├── default.json │ ├── fusion-connecting-texture.json │ └── fusion-scrolling-texture.json ├── minecraft-trim-material │ └── default.json ├── minecraft-trim-pattern │ └── default.json ├── mkdocs-1.0 │ ├── alter.yml │ ├── custom-theme-test.yml │ └── mkdocs-test.yml ├── mkdocs-1.6 │ ├── mkdocs-test.yml │ └── validation.yml ├── mocharc │ └── mocharc.test.json ├── modernizrrc │ └── modernizrrc-test.json ├── monade-stack-config │ └── example.yaml ├── mongodb-atlas-search-index-definition │ └── mongodb-index.json ├── monika-config-schema │ ├── monika.json │ └── monika.yml ├── mprocs-0.6.4 │ ├── 0001.json │ ├── 0002.yml │ ├── 0003.yml │ ├── 0004.yml │ ├── 0005.yml │ └── 0006.yml ├── mta │ └── mta-test.json ├── mycode │ └── example.json ├── nest-cli │ ├── .nest.json │ ├── nest-cli-generateOptions.json │ └── nest-cli.json ├── netlify │ └── config.yml.json ├── nightwatch │ ├── chrome.json │ ├── default.json │ ├── firefox.json │ ├── generated.json │ ├── selenium.json │ └── webdriver.json ├── ninjs-1.1 │ └── ninjs-1.1-geometry-test.json ├── ninjs-1.2 │ └── ninjs-1.2-infosource-test.json ├── ninjs-1.3 │ ├── 001_ninjs_example.json │ ├── 002_schema.json │ ├── 003_schema_only.json │ ├── 004_headlines.json │ ├── 005_altids.json │ ├── 006_genre.json │ ├── 007_trust_indicator.json │ └── 008_regex_bug.json ├── ninjs-1.4 │ ├── 001_ninjs_example.json │ ├── 002_schema.json │ ├── 003_schema_only.json │ ├── 004_headlines.json │ ├── 005_altids.json │ ├── 006_genre.json │ ├── 007_trust_indicator.json │ ├── 008_regex_bug.json │ └── 009_rights.json ├── ninjs-2.0 │ ├── 001_ninjs_example.json │ ├── 002_schema.json │ ├── 003_schema_only.json │ ├── 004_headlines.json │ ├── 005_altids.json │ ├── 006_genre.json │ ├── 007_trust_indicator.json │ ├── 009_rights.json │ └── 010_places.json ├── now │ └── example.json ├── npm-badges │ └── badges.json ├── npmpackagejsonlintrc │ └── npmpackagejsonlintrc-test.json ├── nuejs-site │ └── simple-blog-site.yaml ├── nuget-project │ └── fullsample.json ├── nycrc │ └── nycrc.json ├── ocelot │ └── ocelot.json ├── omletrc │ ├── monorepo.json │ └── standalone-project.json ├── one-changelog-schema-0.1 │ ├── example.yml │ └── minimal.yml ├── one-service-descriptor-schema-0.1 │ └── service-descriptor.yml ├── openutau-character │ └── openutau-character.yaml ├── openutau-ustx │ └── bulaomeng.ustx.yaml ├── openweather.current │ └── example.json ├── openweather.roadrisk │ ├── example-simple.json │ └── example.json ├── package.manifest │ ├── contentapp.json │ ├── minimal.json │ ├── multiple-editors.json │ ├── ninja-turtle.json │ └── youtube.json ├── package │ ├── devEngines.json │ ├── exports-test.json │ ├── exports-test2.json │ ├── exports-test3.json │ ├── exports-test4.json │ ├── exports-test5.json │ ├── exports-test6.json │ ├── exports-test7.json │ ├── exports-test8.json │ ├── funding-array.json │ ├── funding-uri.json │ ├── funding-way-no-type.json │ ├── funding-way.json │ ├── imports-test.json │ ├── imports-test2.json │ ├── imports-test3.json │ ├── imports-test4.json │ ├── imports-test5.json │ ├── installed-package-v5.json │ ├── installed-package-v6.json │ ├── issue-2957.json │ ├── jspm.json │ ├── package-test.json │ ├── package-test2.json │ ├── package-test3.json │ ├── package-test4.json │ ├── package-test5.json │ ├── package-test6.json │ ├── package-test7.json │ ├── package-test8.json │ ├── pnpm-fields.json │ ├── private-string-test1.json │ ├── private-string-test2.json │ └── private.json ├── packer │ ├── example-vagrant.json │ ├── example-virtualbox-iso.json │ └── packer.json ├── pantsbuild-2.14.0 │ └── pants.toml ├── paper-plugin │ ├── commands.yaml │ ├── example-1.yaml │ └── permissions.yaml ├── pdm │ └── pdm.json ├── pep-723 │ ├── 1.toml │ ├── 2.toml │ └── 3.toml ├── petstore-v1.0 │ └── petstore.json ├── phrase │ └── .phrase.yml ├── plagiarize-me │ └── plagiarize-me.json ├── plagiarize │ └── plagiarize.json ├── pm2-ecosystem │ ├── ecosystem.json │ └── ecosystem2.json ├── pnpm-workspace │ └── pnpm-workspace.yaml ├── pocketmine-plugin │ └── pocketmine-plugin.test.json ├── popxf-1.0 │ ├── B0mumu.json │ ├── Bsmumu.json │ ├── Note_B0mumu.json │ ├── Note_BR_B0_mumu.json │ ├── Note_BR_Bs_mumu.json │ ├── Note_BR_Bs_mumu_B0_mumu.json │ ├── Note_Bsmumu.json │ ├── Note_Gam_Wmunum.json │ ├── Note_R_W_lilj.json │ ├── Note_Wlnu.json │ └── Wlnu.json ├── popxf-corr-1.0 │ ├── Note_corr.json │ └── corr.json ├── postcssrc │ ├── full.json │ ├── map.json │ ├── parser.json │ ├── plugins.json │ ├── stringifier.json │ └── syntax.json ├── powerpages-web-template-manifest │ ├── functionalManifest.json │ ├── layoutManifest.json │ ├── manifestWithParams.json │ └── manifestWithTables.json ├── powerpages.config │ └── powerpages.config.json ├── pre-commit-config │ └── pre-commit-config-test.json ├── pre-commit-hooks │ └── pre-commit-hooks.json ├── prettierrc │ ├── .prettierrc.yml │ └── prettierrc.json ├── prisma │ ├── exhaustive_example.json │ ├── minimal_example.json │ └── standard_example.json ├── problem-object-rfc9457 │ └── problem-object-rfc9457.json ├── project │ ├── EF-project.json │ ├── project-test.json │ ├── project-test2.json │ └── project-test3.json ├── prometheus-alertmanager │ ├── alertmanager-empty.yaml │ ├── alertmanager-official-sample.yaml │ ├── alertmanager-sample-generated.yaml │ └── group-all.yaml ├── prometheus.rules.test │ └── rules.test.yaml ├── prometheus.rules │ └── rules.json ├── prometheus │ └── prometheus.json ├── proxies │ ├── BasicProxy.json │ ├── MultipleProxiesWithMethods.json │ ├── RequestResponseOverrides.json │ └── ResponseBodyAsArray.json ├── pterodactyl │ └── egg-mc.json ├── publiccode │ ├── extended.json │ └── minimum.json ├── pubspec │ ├── asset_transformer.yaml │ ├── executables.yaml │ ├── platforms.yaml │ ├── pubspec.yaml │ ├── screenshots.yaml │ ├── shaders.yaml │ └── some_flutter_example.yaml ├── pull-request-labeler-5 │ └── examples.yml ├── pull-request-labeler │ ├── dockstarter.json │ ├── freecodecamp.json │ └── tidb.json ├── pulumi │ └── Pulumi.yaml ├── putout │ └── match.json ├── pyproject │ ├── 01-setuptools.toml │ ├── 01-setuptools_scm.toml │ ├── 02-setuptools.toml │ ├── 03-setuptools.toml │ ├── 04-setuptools.toml │ ├── 05-setuptools.toml │ ├── 06-setuptools.toml │ ├── 07-setuptools.toml │ ├── 08-setuptools.toml │ ├── 09-setuptools.toml │ ├── 3021.toml │ ├── 3616.toml │ ├── 3821.toml │ ├── black-examp1.toml │ ├── black-examp2.toml │ ├── cibuildwheel-default.toml │ ├── cibuildwheel-inherit.toml │ ├── cibuildwheel-overrides.toml │ ├── dependency-groups-1.toml │ ├── dependency-groups-2.toml │ ├── dependency-groups-3.toml │ ├── dynamic.toml │ ├── hatch.toml │ ├── local-version-pep440.toml │ ├── mypy-01.toml │ ├── mypy-02.toml │ ├── pdm_tool.toml │ ├── pdm_tool_dockerize.toml │ ├── pdm_tool_dockerize_list.toml │ ├── pep639.toml │ ├── pep794.toml │ ├── poetry-author-no-email.toml │ ├── poetry-capital-in-author-email.toml │ ├── poetry-complete.toml │ ├── poetry-dependencies-no-python.toml │ ├── poetry-git-urls.toml │ ├── poetry-inline-table.toml │ ├── poetry-non-package.toml │ ├── poetry-plugin-dotenv-example-1.toml │ ├── poetry-plugin-dotenv-example-2.toml │ ├── poetry-readme-files.toml │ ├── poetry-sample-project.toml │ ├── pyproject.json │ ├── repo-review-table.toml │ ├── repo-review.toml │ ├── ruff-sample-project.toml │ ├── scikit-build-defaults.toml │ ├── simple.toml │ ├── tox-legacy.toml │ ├── tox-minimal.toml │ ├── ty-sample-project.toml │ └── uv-sample-project.toml ├── qfconfig │ └── qfconfig-test.json ├── qodana-1.0 │ ├── cpp.yaml │ ├── dotnet-project.yaml │ ├── dotnet-solution.yaml │ ├── example.json │ └── properties.yaml ├── radiohound-v0 │ ├── deprecated.rh.json │ └── reference-v0.rh.json ├── rancher-fleet-0.5 │ ├── fleet-official-example.yaml │ └── yaml-overlays.yaml ├── rancher-fleet-0.8 │ ├── fleet-official-example.yaml │ ├── helm-overlays-with-do-not-deploy.yaml │ └── yaml-overlays.yaml ├── rc3-auth-0.0.3 │ └── rc3-auth-0.0.3.json ├── rc3-collection-0.0.3 │ └── rc3-collection-0.0.3.json ├── rc3-environment-0.0.3 │ └── rc3-environment-0.0.3.json ├── rc3-folder-0.0.3 │ └── rc3-folder-0.0.3.json ├── rc3-request-0.0.3 │ └── rc3-request-0.0.3.json ├── rc3-settings-0.0.3 │ └── rc3-settings-0.0.3.json ├── rehyperc │ ├── allowDangerousHtml.json │ ├── allowParseErrors.json │ ├── bogusComments.json │ ├── closeEmptyElements.json │ ├── closeSelfClosing.json │ ├── collapseEmptyAttributes.json │ ├── emitParseErrors.json │ ├── fragment.json │ ├── full-settings.json │ ├── omitOptionalTags.json │ ├── plugin-list.json │ ├── plugin-object.json │ ├── preferUnquoted.json │ ├── quote.json │ ├── quoteSmart.json │ ├── space.json │ ├── tightAttributes.json │ ├── tightCommaSeparatedLists.json │ ├── tightDoctype.json │ ├── upperDoctype.json │ ├── verbose.json │ └── voids.json ├── remarkrc │ ├── bullet.json │ ├── closeAtx.json │ ├── emphasis.json │ ├── fence.json │ ├── fences.json │ ├── full-settings.json │ ├── incrementListMarker.json │ ├── listItemIndent.json │ ├── plugin-list.json │ ├── plugin-object.json │ ├── quote.json │ ├── resourceLink.json │ ├── rule.json │ ├── ruleRepetition.json │ ├── ruleSpaces.json │ ├── setext.json │ ├── strong.json │ └── tightDefinitions.json ├── replit │ └── replit.json ├── resjson │ └── from-msdn.json ├── roomodes │ └── roomodes.test.json ├── rudder-techniques │ ├── 1.yml │ ├── 10.yml │ ├── 11.yml │ ├── 12.yml │ ├── 13.yml │ ├── 14.yml │ ├── 2.yml │ ├── 3.yml │ ├── 4.yml │ ├── 5.yml │ ├── 6.yml │ ├── 7.yml │ ├── 8.yml │ └── 9.yml ├── rust-project │ └── rust-project.json ├── rust-toolchain │ ├── channel_only01.json │ ├── channel_only02.json │ ├── components-any-3782.toml │ ├── components_and_targets.json │ ├── custom_toolchain01.json │ ├── custom_toolchain02.json │ └── rust-toolchain.json ├── rustfmt │ └── rustfmt.json ├── safebox-schema-v1.0.0 │ ├── safebox-full-valid.yaml │ └── safebox-short-valid.yaml ├── sake │ ├── complete-example.sake.yml │ └── incomplete-example.sake.yml ├── samt │ └── samt.yaml ├── samtrc │ └── .samtrc.yaml ├── sarif │ ├── BinSkim.AllRules.sarif.json │ └── minimal.sarif.json ├── schema-catalog │ ├── minimal.json │ └── multiple.json ├── schema-org-action │ ├── example-action.json │ ├── example1.json │ └── example2.json ├── schema-org-contact-point │ ├── billing.json │ ├── customer-service.json │ ├── techsupport.json │ └── tollfree.json ├── schema-org-place │ ├── example-place.json │ ├── example1.json │ ├── example2.json │ ├── example3.json │ └── example4.json ├── schema-org-thing │ ├── example-thing.json │ ├── thing1.json │ └── thing2.json ├── semantic-release │ ├── example1.json │ └── example2.yaml ├── sergen │ ├── correct-capitalization-of-tablename.json │ ├── extends-file.json │ ├── extends-version-6-6-0.json │ └── extends-version-9-0-0.json ├── settings.job │ ├── siteextension.json │ └── webjob.json ├── sigrid-scope-file.schema │ └── sigrid.yaml ├── sil-kit-participant-configuration │ ├── empty.silkit.yaml │ ├── full.silkit.json │ ├── full.silkit.yaml │ └── logging.silkit.yaml ├── sil-kit-registry-configuration │ ├── empty.silkit-registry.yaml │ ├── full.silkit-registry.json │ ├── logging.silkit-registry.yml │ ├── silkit-registry.json │ ├── silkit-registry.yaml │ └── silkit-registry.yml ├── size-limit │ ├── .size-limit.json │ └── .size-limit2.json ├── skypilot-task │ └── skypilot-task.json ├── slack-app-manifest │ ├── example.yml │ ├── minimal.yml │ └── slack-default-example.yml ├── solidaritySchema │ └── solidarity.example.json ├── solution-filter │ └── test1.json ├── sourcehut-build-0.65.0 │ └── .build.json ├── sourcemap-v3 │ ├── node-coffee.json │ ├── node-less.json │ ├── with-section.json │ └── without-section.json ├── sourcery_yaml_schema │ ├── .sourcery-docs.yaml │ └── .sourcery-init.yaml ├── specif-1.0 │ └── 09_Very-Simple-Model-FMC-with-Requirements.specif.json ├── specif-1.1 │ ├── 03_Requirement-with-Properties.specif.json │ └── 09_Very-Simple-Model-FMC-with-Requirements.specif.json ├── specmatic │ └── specmatic.json ├── sponge-mixins │ ├── test1.json │ └── test2.json ├── sprite │ └── example.json ├── sqlc-2.0 │ ├── example.sqlc.yaml │ ├── global_overrides.sqlc.yaml │ ├── override.sqlc.yaml │ ├── plugins.sqlc.yaml │ ├── python.sqlc.yaml │ └── rules.sqlc.yaml ├── stackblitzrc │ └── example.json ├── stale │ ├── go-ethereum.json │ ├── jellyfin.json │ ├── openai-gym.json │ ├── react.json │ ├── stale.json │ └── tensorflow.json ├── starlake │ ├── application-1.json │ ├── application.sl.yml │ ├── ddl2yml.sl.yml │ ├── domain.json │ ├── env.json │ ├── extract-1.json │ ├── extract-2.json │ ├── load-1.json │ ├── load-2.json │ ├── refs.json │ ├── table.json │ ├── transform-1.json │ ├── transform-2.json │ ├── transform.sl.yml │ ├── types.json │ └── types.sl.yml ├── staticwebapp.config │ └── staticwebapp.config.json ├── stylelintrc │ ├── objectRule.json │ ├── stylelintrc-test-processors.json │ └── stylelintrc-test.json ├── stylua │ ├── blank.toml │ └── default.toml ├── sublime-syntax │ └── Manpage.sublime-syntax.yaml ├── swa-cli.config │ └── swa-cli.config.json ├── swagger-2.0 │ ├── petstore-expanded.json │ ├── petstore-simple.json │ ├── petstore-with-external-docs.json │ └── petstore.json ├── taplo │ └── config.toml ├── task │ └── example.json ├── taurus │ ├── settings.json │ ├── test-1.json │ └── test-2.json ├── template │ ├── generatorstest.json │ ├── multiple-short-names.json │ ├── mvcbasic.json │ └── starterweb.json ├── templatesources │ └── SideWaffle_templatesources.json ├── testenvironments │ └── example.json ├── tldr │ └── tldr.json ├── tmlanguage │ └── tmlanguage.json ├── tmuxinator │ ├── detach.yml │ ├── nameless_window.yml │ ├── noname.yml │ ├── noroot.yml │ ├── nowindows.yml │ ├── pane_titles.yml │ ├── sample.deprecations.yml │ ├── sample.yml │ ├── sample_alias.yml │ ├── sample_emoji_as_name.yml │ ├── sample_literals_as_window_name.yml │ ├── sample_number_as_name.yml │ ├── sample_wemux.yml │ ├── sample_with_project_config.yml │ └── yaml.yaml ├── traefik-v2-file-provider │ └── example.json ├── traefik-v2 │ └── example.json ├── traefik-v3-file-provider │ └── example.json ├── traefik-v3 │ └── example.json ├── travis │ ├── addon-browserstack.json │ ├── addon-coverity-scan.json │ ├── addon-homebrew.json │ ├── addon-snaps.json │ ├── addon-sonarcloud.json │ ├── addon-sourceclear.json │ ├── addon-ssh-known-hosts-multiple.json │ ├── addon-ssh-known-hosts-single.json │ ├── cache-mixed.json │ ├── deployment-heroku.json │ ├── language-elm.json │ ├── language-julia.json │ ├── language-node.json │ ├── language-php.json │ ├── language-python.json │ ├── language-ruby.json │ ├── miscellaneous.json │ ├── notification-array-object.json │ ├── notification-object.json │ ├── notification-secure-list.json │ ├── notification-secure.json │ ├── notification-single-line.json │ ├── php-language-server.json │ └── ps-nvm.json ├── treefmt │ └── treefmt.json ├── truescript │ └── truescript.json ├── ts-force-config │ ├── complex.json │ └── simple.json ├── tsconfig │ ├── hejlsberg.json │ ├── tsconfig-extends-multiple.json │ ├── tsconfig-extends-single.json │ ├── tsconfig-lib.json │ ├── tsconfig-newline.json │ ├── tsconfig-nodenext.json │ ├── tsconfig-strictBuiltinIteratorReturn.json │ ├── tsconfig-test.json │ ├── tsconfig-test2.json │ ├── tsconfig-typescript5.0.json │ ├── tsconfig-typescript5.4.json │ ├── tsconfig-typescript5.7.json │ ├── tsconfig-typescript5.8.json │ └── tsconfig.json ├── tsd │ └── example.json ├── tsdrc │ └── tsdrc-test.json ├── tslint │ ├── tslint-test.json │ ├── tslint-test10.json │ ├── tslint-test11.json │ ├── tslint-test12.json │ ├── tslint-test13.json │ ├── tslint-test14.json │ ├── tslint-test15.json │ ├── tslint-test16.json │ ├── tslint-test17.json │ ├── tslint-test18.json │ ├── tslint-test19.json │ ├── tslint-test2.json │ ├── tslint-test20.json │ ├── tslint-test21.json │ ├── tslint-test22.json │ ├── tslint-test23.json │ ├── tslint-test24.json │ ├── tslint-test25.json │ ├── tslint-test26.json │ ├── tslint-test3.json │ ├── tslint-test4.json │ ├── tslint-test5.json │ ├── tslint-test6.json │ ├── tslint-test7.json │ ├── tslint-test8.json │ └── tslint-test9.json ├── tsoa │ ├── basic.tsoa.json │ └── test.tsoa.json ├── tunnelhub │ └── tunnelhub.yml ├── typings │ ├── typings-test.json │ ├── typings-test2.json │ ├── typings-test3.json │ ├── typings-test4.json │ ├── typings-test5.json │ ├── typings-test6.json │ └── typings-test7.json ├── typingsrc │ └── typingsrc-test.json ├── typo3 │ └── typo3.yml ├── ubuntu-server-autoinstall │ └── valid1.json ├── unist │ ├── root-full.json │ ├── root-full.with-data.json │ ├── root-full.with-position.json │ ├── root-full.with-value.json │ ├── void-root.json │ ├── void-root.with-additional-prop.json │ ├── void-root.with-children.json │ ├── void-root.with-data.json │ ├── void-root.with-position.json │ └── void-root.with-value.json ├── uplugin │ ├── code-plugin.json │ └── plugin-with-content.json ├── uproject │ ├── engine-relative-path.json │ ├── engine-source.uproject.json │ └── test-uproject.json ├── utam-page-object │ └── valid-page-object.utam.json ├── utcm-monitor │ └── utcm-monitor.json ├── uxp-manifest-5 │ ├── maximal.json │ └── minimal.json ├── vault │ └── vault.json ├── vector │ ├── vector.json │ ├── vector.toml │ └── vector.yaml ├── venvironment-schema-v2.2.0 │ ├── can-and-canfd.yaml │ ├── empty.yaml │ ├── unicode-1.yaml │ ├── unicode-2.yaml │ ├── vcdls.yaml │ └── xcp.yaml ├── venvironment-schema-v3.2.0 │ ├── can-and-canfd.yaml │ ├── empty.yaml │ ├── unicode-1.yaml │ ├── unicode-2.yaml │ ├── vcdls.yaml │ └── xcp.yaml ├── venvironment-schema-v4.0.0 │ ├── can-and-canfd.yaml │ ├── empty.yaml │ ├── unicode-1.yaml │ ├── unicode-2.yaml │ ├── vcdls.yaml │ └── xcp.yaml ├── venvironment-schema-v4.1.0 │ ├── can-and-canfd.yaml │ ├── empty.yaml │ ├── unicode-1.yaml │ ├── unicode-2.yaml │ ├── vcdls.yaml │ └── xcp.yaml ├── venvironment-schema-v4.2.0 │ ├── can-and-canfd.yaml │ ├── empty.yaml │ ├── unicode-1.yaml │ ├── unicode-2.yaml │ ├── vcdls.yaml │ └── xcp.yaml ├── venvplus-schema-v1.0.0 │ ├── empty.yaml │ └── offline-config.yaml ├── vhwdebugger-binding-schema │ ├── success.1.0.vhwdebugger-binding.yaml │ └── success.1.1.vhwdebugger-binding.yaml ├── vim-addon-info │ ├── basic-example.json │ └── with-dependencies.json ├── vs-2017.3.host │ └── example.json ├── vs-nesting │ └── default.json ├── vsconfig │ └── default.json ├── vsext │ └── default.json ├── vsix-manifestinjection │ └── protocol-handler.json ├── vsix-publish │ └── example.json ├── vtcfg-v19.0.0 │ ├── empty.yaml │ └── full_config.yaml ├── vtesttree-schema-v1.0.0 │ ├── empty-parameters.vtesttree.yaml │ ├── empty-test-group-elements.vtesttree.yaml │ ├── empty-test-group.vtesttree.yaml │ ├── empty-tree.vtesttree.yaml │ ├── empty.vtesttree.yaml │ ├── full-tree.vtesttree.yaml │ ├── mixed-parameters.vtesttree.yaml │ ├── nested-groups.vtesttree.yaml │ ├── simple-test-case.vtesttree.yaml │ └── test-sequence-params.vtesttree.yaml ├── vtesttree-schema-v2.0.0 │ ├── empty-parameters-v2.vtesttree.yaml │ ├── empty-test-fixture-elements-v2.vtesttree.yaml │ ├── empty-test-fixture-v2.vtesttree.yaml │ ├── empty-tree-v2.vtesttree.yaml │ ├── empty-v2.vtesttree.yaml │ ├── full-tree-v2.vtesttree.yaml │ ├── mixed-parameters-v2.vtesttree.yaml │ ├── nested-fixtures-v2.vtesttree.yaml │ ├── simple-test-case-v2.vtesttree.yaml │ └── test-sequence-params-v2.vtesttree.yaml ├── vtesttree-schema-v2.1.0 │ ├── completions.vtesttree.yaml │ ├── dotnet-tests.vtesttree.yaml │ ├── mixed-prep-comp.vtesttree.yaml │ ├── preparations.vtesttree.yaml │ └── python-tests.vtesttree.yaml ├── vtesttree-schema-v2.2.0 │ └── variant-dependencies.vtesttree.yaml ├── vtesttree-schema-v2.3.0 │ ├── test-case-list.vtesttree.yaml │ └── test-sequence-list.vtesttree.yaml ├── vtesttree-schema-v2.4.0 │ ├── test-case-list.vtesttree.yaml │ └── test-sequence-list.vtesttree.yaml ├── vtestunit-schema │ ├── full-blown.vtestunit.yaml │ ├── include.vtestunit.yaml │ ├── test-impl.vtestunit.yaml │ ├── test-inf.vtestunit.yaml │ └── version.vtestunit.yaml ├── web-manifest-share-target │ ├── file_share_accept_extension.json │ ├── file_share_multiple_file_multiple_accept.json │ ├── file_share_single_file_single_accept.json │ ├── text_share_correct_method_and_enctype.json │ └── text_share_no_method_or_enctype.json ├── web-manifest │ ├── Full content.json │ ├── W3C Example 1.json │ └── W3C Example 2.json ├── web-types │ ├── angular.web-types.json │ ├── css.web-types.json │ ├── vue-old.web-types.json │ ├── vue.web-types.json │ └── web-types.json ├── webextension │ ├── mdn-example-annotate-page.json │ ├── mdn-example-apply-css.json │ ├── mdn-example-beastify.json │ ├── mdn-example-bookmark-it.json │ ├── mdn-example-borderify.json │ ├── mdn-example-chill-out.json │ ├── mdn-example-commands.json │ ├── mdn-exmaple-content-script-register.json │ ├── mdn-exmaple-context-menu-copy-link-with-types.json │ ├── mdn-exmaple-contextual-identities.json │ ├── mdn-exmaple-cookie-bg-picker.json │ ├── mdn-exmaple-devtools-panels.json │ ├── mdn-exmaple-discogs-search.json │ ├── mdn-exmaple-dynamic-theme.json │ ├── mdn-exmaple-emoji-substitution.json │ ├── mdn-exmaple-eslint-example.json │ ├── mdn-exmaple-export-helpers.json │ ├── mdn-exmaple-favourite-colour.json │ ├── mdn-exmaple-find-across-tabs.json │ ├── mdn-exmaple-firefox-code-search.json │ ├── mdn-exmaple-forget-it.json │ ├── mdn-exmaple-google-userinfo.json │ ├── mdn-exmaple-history-deleter.json │ ├── mdn-exmaple-http-response.json │ ├── mdn-exmaple-imagify.json │ ├── mdn-exmaple-latest-download.json │ ├── mdn-exmaple-list-cookies.json │ ├── mdn-exmaple-menu-accesskey-visible.json │ ├── mdn-exmaple-menu-demo.json │ ├── mdn-exmaple-menu-labelled-open.json │ ├── mdn-exmaple-menu-remove-element.json │ ├── mdn-exmaple-menu-search.json │ ├── mdn-exmaple-mocha-client-tests.json │ ├── mdn-exmaple-native-messaging.json │ ├── mdn-exmaple-navigation-stats.json │ ├── mdn-exmaple-notify-link-clicks-i18n.json │ ├── mdn-exmaple-open-irc-links.json │ ├── mdn-exmaple-open-my-page-button.json │ ├── mdn-exmaple-page-to-extension-messaging.json │ ├── mdn-exmaple-permissions.json │ ├── mdn-exmaple-private-browsing-theme.json │ ├── mdn-exmaple-proxy-blocker.json │ ├── mdn-exmaple-quicknote.json │ ├── mdn-exmaple-root-cert-stats.json │ ├── mdn-exmaple-runtime-examples.json │ ├── mdn-exmaple-selection-to-clipboard.json │ ├── mdn-exmaple-session-state.json │ ├── mdn-exmaple-store-collected-images.json │ ├── mdn-exmaple-stored-credentials.json │ ├── mdn-exmaple-tabs-tabs-tabs.json │ ├── mdn-exmaple-theme-integrated-sidebar.json │ ├── mdn-exmaple-theme-switcher.json │ ├── mdn-exmaple-themes.json │ ├── mdn-exmaple-top-sites.json │ ├── mdn-exmaple-user-agent-rewriter.json │ ├── mdn-exmaple-user-script-register.json │ ├── mdn-exmaple-webpack-modules.json │ ├── mdn-exmaple-window-manipulator.json │ ├── webcompat-reporter.json │ └── webdevchecklist.json ├── webjob-publish-settings │ ├── continuous.json │ ├── on-demand.json │ └── scheduled.json ├── webjobs-list │ ├── empty-array.json │ └── non-empty-array.json ├── winget-pkgs-installer-1.0.0 │ └── Microsoft.WindowsTerminal.installer.json ├── winget-pkgs-locale-1.0.0 │ └── Microsoft.WindowsTerminal.locale.fr-FR.json ├── winget-pkgs-singleton-1.0.0 │ └── Microsoft.WindowsTerminal.json ├── winutil-applications │ └── one-application.json ├── winutil-presets │ └── one-preset-category.json ├── xs-app │ └── xs-app.json ├── yamllint │ ├── apisix-dashboard.json │ ├── buildx.json │ ├── coreruleset.json │ ├── jacket.json │ ├── tektoncd-catalog.json │ └── weblate.json ├── youtrack-app │ └── youtrack-app.json ├── zarf │ ├── zarf-init-config.yaml │ └── zarf-package-config.yaml └── zuul │ └── jobs.yaml └── vwd.webinfo /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/auto-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.github/workflows/auto-update.yml -------------------------------------------------------------------------------- /.github/workflows/github-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.github/workflows/github-pages.yml -------------------------------------------------------------------------------- /.github/workflows/label-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.github/workflows/label-prs.yml -------------------------------------------------------------------------------- /.github/workflows/stale-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.github/workflows/stale-prs.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | json.schemastore.org 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | JSON Schema Store 2 | Copyright 2015-Current Mads Kristensen and Contributors 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/README.md -------------------------------------------------------------------------------- /SchemaStore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/SchemaStore.sln -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/cli.js -------------------------------------------------------------------------------- /config/.spectral-draft04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/config/.spectral-draft04.yaml -------------------------------------------------------------------------------- /config/.spectral-draft06.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/config/.spectral-draft06.yaml -------------------------------------------------------------------------------- /config/.spectral-draft07.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/config/.spectral-draft07.yaml -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/eslint.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-xregistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/scripts/build-xregistry.js -------------------------------------------------------------------------------- /scripts/build_xregistry_site.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/scripts/build_xregistry_site.sh -------------------------------------------------------------------------------- /scripts/dirty_repository_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/scripts/dirty_repository_check.sh -------------------------------------------------------------------------------- /src/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/Web.config -------------------------------------------------------------------------------- /src/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/_Layout.cshtml -------------------------------------------------------------------------------- /src/api/json/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/api/json/catalog.json -------------------------------------------------------------------------------- /src/bin/StaticWebHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/bin/StaticWebHelper.dll -------------------------------------------------------------------------------- /src/bin/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/bin/System.Web.Helpers.dll -------------------------------------------------------------------------------- /src/bin/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/bin/System.Web.Helpers.xml -------------------------------------------------------------------------------- /src/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /src/bin/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/bin/System.Web.Razor.xml -------------------------------------------------------------------------------- /src/bin/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/bin/System.Web.WebPages.dll -------------------------------------------------------------------------------- /src/bin/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/bin/System.Web.WebPages.xml -------------------------------------------------------------------------------- /src/bin/WebMarkupMin.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/bin/WebMarkupMin.Core.dll -------------------------------------------------------------------------------- /src/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/css/site.css -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/img/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/api.png -------------------------------------------------------------------------------- /src/img/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/autocomplete.png -------------------------------------------------------------------------------- /src/img/css-autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/css-autocomplete.png -------------------------------------------------------------------------------- /src/img/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/favicon/browserconfig.xml -------------------------------------------------------------------------------- /src/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /src/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /src/img/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /src/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/favicon/favicon.ico -------------------------------------------------------------------------------- /src/img/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /src/img/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /src/img/favicon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/favicon/mstile-310x150.png -------------------------------------------------------------------------------- /src/img/favicon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/favicon/mstile-310x310.png -------------------------------------------------------------------------------- /src/img/favicon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/favicon/mstile-70x70.png -------------------------------------------------------------------------------- /src/img/forkme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/forkme.png -------------------------------------------------------------------------------- /src/img/json-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/json-icon.png -------------------------------------------------------------------------------- /src/img/json-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/json-logo.png -------------------------------------------------------------------------------- /src/img/octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/octocat.png -------------------------------------------------------------------------------- /src/img/sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/sponsor.png -------------------------------------------------------------------------------- /src/img/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/test.png -------------------------------------------------------------------------------- /src/img/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/tooltip.png -------------------------------------------------------------------------------- /src/img/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/img/xml.png -------------------------------------------------------------------------------- /src/index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Response.RedirectPermanent("~/json/"); 3 | } 4 | -------------------------------------------------------------------------------- /src/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/js/site.js -------------------------------------------------------------------------------- /src/json.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/json.cshtml -------------------------------------------------------------------------------- /src/negative_test/all-contributors/empty.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/negative_test/ava/additional_properties_fails.json: -------------------------------------------------------------------------------- 1 | { 2 | "anInvalidProp": false 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/ava/invalid_timeout_fails.json: -------------------------------------------------------------------------------- 1 | { 2 | "timeout": "100h" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/dependabot-2.0/updates-missing.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/dependabot-2.0/version-missing.json: -------------------------------------------------------------------------------- 1 | { 2 | "updates": [] 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/djlint/invalid-profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "profile": false 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-action/empty_json_must_always_fail.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/buy_me_a_coffee-bad-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "buy_me_a_coffee": null 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/buy_me_a_coffee-empty-string.json: -------------------------------------------------------------------------------- 1 | { 2 | "buy_me_a_coffee": "" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/community_bridge-bad-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "community_bridge": null 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/community_bridge-empty-string.json: -------------------------------------------------------------------------------- 1 | { 2 | "community_bridge": "" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/custom-array-bad-format.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom": ["not a uri"] 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/custom-array-bad-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom": [null] 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/custom-array-too-short.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom": [] 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/custom-bad-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom": null 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/custom-string-bad-format.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom": "not a uri" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/custom-string-empty-string.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom": "" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/github-array-empty-array.json: -------------------------------------------------------------------------------- 1 | { 2 | "github": [] 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/github-bad-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "github": null 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/github-string-empty-string.json: -------------------------------------------------------------------------------- 1 | { 2 | "github": "" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/issuehunt-bad-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "issuehunt": null 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/issuehunt-empty-string.json: -------------------------------------------------------------------------------- 1 | { 2 | "issuehunt": "" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/ko_fi-bad-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "ko_fi": null 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/ko_fi-empty-string.json: -------------------------------------------------------------------------------- 1 | { 2 | "ko_fi": "" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/liberapay-bad-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "liberapay": null 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/liberapay-empty-string.json: -------------------------------------------------------------------------------- 1 | { 2 | "liberapay": "" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/open_collective-bad-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "open_collective": null 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/open_collective-empty-string.json: -------------------------------------------------------------------------------- 1 | { 2 | "open_collective": "" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/patreon-bad-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "patreon": null 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/patreon-empty-string.json: -------------------------------------------------------------------------------- 1 | { 2 | "patreon": "" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/polar-bad-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "polar": null 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/polar-empty-string.json: -------------------------------------------------------------------------------- 1 | { 2 | "polar": "" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/thanks_dev-bad-pattern.json: -------------------------------------------------------------------------------- 1 | { 2 | "thanks_dev": "unknown/prefix/USERNAME" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/thanks_dev-bad-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "thanks_dev": null 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/tidelift-bad-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "tidelift": null 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/github-funding/tidelift-unknown-platform-name.json: -------------------------------------------------------------------------------- 1 | { 2 | "tidelift": "unknown/USERNAME" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/importmap/unknown_property.json: -------------------------------------------------------------------------------- 1 | { 2 | "unknown_property": "this is forbidden" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/jasmine/wrong-value.json: -------------------------------------------------------------------------------- 1 | { 2 | "spec_files": "**/*.spec.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/linutil-tabs/invalid-items.json: -------------------------------------------------------------------------------- 1 | { 2 | "directories": [""] 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/package/funding-invalid-type-array.json: -------------------------------------------------------------------------------- 1 | { 2 | "funding": ["https://example.com/bar-baz", null] 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/package/funding-invalid-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "funding": 1 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/pep-723/1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/negative_test/pep-723/1.toml -------------------------------------------------------------------------------- /src/negative_test/pep-723/2.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/negative_test/pep-723/2.toml -------------------------------------------------------------------------------- /src/negative_test/pep-723/3.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/negative_test/pep-723/3.toml -------------------------------------------------------------------------------- /src/negative_test/prisma/empty_json_must_always_fail.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/negative_test/putout/ignore-items.json: -------------------------------------------------------------------------------- 1 | { 2 | "ignore": [1, 2] 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/samt/samt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/negative_test/samt/samt.yaml -------------------------------------------------------------------------------- /src/negative_test/sergen/empty-connection.json: -------------------------------------------------------------------------------- 1 | { 2 | "Connections": [{}] 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/sergen/extends-no-json.json: -------------------------------------------------------------------------------- 1 | { 2 | "Extends": "Base" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/specmatic/missing-contracts.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/specmatic/missing-version.json: -------------------------------------------------------------------------------- 1 | { 2 | "contracts": [] 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/staticwebapp.config/defaultheaders_must_fail.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultHeaders": {} 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/staticwebapp.config/invalid_trailingslash_must_fail.json: -------------------------------------------------------------------------------- 1 | { 2 | "trailingSlash": "invalid" 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/unist/void-root.missing-type.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/negative_test/winutil-presets/invalid-items.json: -------------------------------------------------------------------------------- 1 | { 2 | "Minimal": [""] 3 | } 4 | -------------------------------------------------------------------------------- /src/negative_test/youtrack-app/required-field-not-provided.json: -------------------------------------------------------------------------------- 1 | { "title": "no name" } 2 | -------------------------------------------------------------------------------- /src/negative_test/zuul/jobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/negative_test/zuul/jobs.yaml -------------------------------------------------------------------------------- /src/negative_test/zuul/jobs2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/negative_test/zuul/jobs2.yaml -------------------------------------------------------------------------------- /src/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/packages.config -------------------------------------------------------------------------------- /src/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | crawl-delay: 2 3 | -------------------------------------------------------------------------------- /src/schema-validation.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schema-validation.jsonc -------------------------------------------------------------------------------- /src/schema-validation.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schema-validation.schema.json -------------------------------------------------------------------------------- /src/schemas/json/accelerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/accelerator.json -------------------------------------------------------------------------------- /src/schemas/json/aiconfig-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aiconfig-1.0.json -------------------------------------------------------------------------------- /src/schemas/json/aider-0.82.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aider-0.82.json -------------------------------------------------------------------------------- /src/schemas/json/aiproj-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aiproj-1.0.json -------------------------------------------------------------------------------- /src/schemas/json/aiproj-1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aiproj-1.1.json -------------------------------------------------------------------------------- /src/schemas/json/aiproj-1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aiproj-1.2.json -------------------------------------------------------------------------------- /src/schemas/json/aiproj-1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aiproj-1.3.json -------------------------------------------------------------------------------- /src/schemas/json/aiproj-1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aiproj-1.4.json -------------------------------------------------------------------------------- /src/schemas/json/aiproj-1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aiproj-1.5.json -------------------------------------------------------------------------------- /src/schemas/json/aiproj-1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aiproj-1.6.json -------------------------------------------------------------------------------- /src/schemas/json/aiproj-1.7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aiproj-1.7.json -------------------------------------------------------------------------------- /src/schemas/json/aiproj-1.8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aiproj-1.8.json -------------------------------------------------------------------------------- /src/schemas/json/aliases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aliases.json -------------------------------------------------------------------------------- /src/schemas/json/amx-muse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/amx-muse.json -------------------------------------------------------------------------------- /src/schemas/json/any.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/any.json -------------------------------------------------------------------------------- /src/schemas/json/apibuilder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/apibuilder.json -------------------------------------------------------------------------------- /src/schemas/json/app-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/app-config.json -------------------------------------------------------------------------------- /src/schemas/json/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/appsettings.json -------------------------------------------------------------------------------- /src/schemas/json/appsscript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/appsscript.json -------------------------------------------------------------------------------- /src/schemas/json/appveyor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/appveyor.json -------------------------------------------------------------------------------- /src/schemas/json/architectfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/architectfx.json -------------------------------------------------------------------------------- /src/schemas/json/asmdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/asmdef.json -------------------------------------------------------------------------------- /src/schemas/json/aspire-8.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aspire-8.0.json -------------------------------------------------------------------------------- /src/schemas/json/assetlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/assetlinks.json -------------------------------------------------------------------------------- /src/schemas/json/aurora-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aurora-1.0.json -------------------------------------------------------------------------------- /src/schemas/json/aurora-1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aurora-1.1.json -------------------------------------------------------------------------------- /src/schemas/json/aurora-1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aurora-1.2.json -------------------------------------------------------------------------------- /src/schemas/json/aurora-1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/aurora-1.3.json -------------------------------------------------------------------------------- /src/schemas/json/ava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ava.json -------------------------------------------------------------------------------- /src/schemas/json/avro-avsc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/avro-avsc.json -------------------------------------------------------------------------------- /src/schemas/json/babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/babelrc.json -------------------------------------------------------------------------------- /src/schemas/json/backportrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/backportrc.json -------------------------------------------------------------------------------- /src/schemas/json/bamboo-spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/bamboo-spec.json -------------------------------------------------------------------------------- /src/schemas/json/base-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/base-04.json -------------------------------------------------------------------------------- /src/schemas/json/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/base.json -------------------------------------------------------------------------------- /src/schemas/json/behat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/behat.json -------------------------------------------------------------------------------- /src/schemas/json/bigconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/bigconfig.json -------------------------------------------------------------------------------- /src/schemas/json/bitrise-step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/bitrise-step.json -------------------------------------------------------------------------------- /src/schemas/json/bitrise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/bitrise.json -------------------------------------------------------------------------------- /src/schemas/json/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/block.json -------------------------------------------------------------------------------- /src/schemas/json/bootstraprc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/bootstraprc.json -------------------------------------------------------------------------------- /src/schemas/json/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/bower.json -------------------------------------------------------------------------------- /src/schemas/json/bowerrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/bowerrc.json -------------------------------------------------------------------------------- /src/schemas/json/boyka-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/boyka-config.json -------------------------------------------------------------------------------- /src/schemas/json/bozr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/bozr.json -------------------------------------------------------------------------------- /src/schemas/json/bpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/bpkg.json -------------------------------------------------------------------------------- /src/schemas/json/browser.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/browser.i18n.json -------------------------------------------------------------------------------- /src/schemas/json/buf.gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/buf.gen.json -------------------------------------------------------------------------------- /src/schemas/json/buf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/buf.json -------------------------------------------------------------------------------- /src/schemas/json/buf.plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/buf.plugin.json -------------------------------------------------------------------------------- /src/schemas/json/buf.work.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/buf.work.json -------------------------------------------------------------------------------- /src/schemas/json/bun-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/bun-lock.json -------------------------------------------------------------------------------- /src/schemas/json/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/bundleconfig.json -------------------------------------------------------------------------------- /src/schemas/json/bunfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/bunfig.json -------------------------------------------------------------------------------- /src/schemas/json/cargo-make.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/cargo-make.json -------------------------------------------------------------------------------- /src/schemas/json/cargo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/cargo.json -------------------------------------------------------------------------------- /src/schemas/json/case_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/case_schema.json -------------------------------------------------------------------------------- /src/schemas/json/catalog-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/catalog-info.json -------------------------------------------------------------------------------- /src/schemas/json/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/cdk.json -------------------------------------------------------------------------------- /src/schemas/json/chart-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/chart-lock.json -------------------------------------------------------------------------------- /src/schemas/json/chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/chart.json -------------------------------------------------------------------------------- /src/schemas/json/cheatsheets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/cheatsheets.json -------------------------------------------------------------------------------- /src/schemas/json/chutzpah.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/chutzpah.json -------------------------------------------------------------------------------- /src/schemas/json/cibuildwheel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/cibuildwheel.json -------------------------------------------------------------------------------- /src/schemas/json/cirrus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/cirrus.json -------------------------------------------------------------------------------- /src/schemas/json/clang-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/clang-format.json -------------------------------------------------------------------------------- /src/schemas/json/clang-tidy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/clang-tidy.json -------------------------------------------------------------------------------- /src/schemas/json/clangd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/clangd.json -------------------------------------------------------------------------------- /src/schemas/json/clasp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/clasp.json -------------------------------------------------------------------------------- /src/schemas/json/clib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/clib.json -------------------------------------------------------------------------------- /src/schemas/json/cloud-run-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/cloud-run-v1.json -------------------------------------------------------------------------------- /src/schemas/json/cloudbuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/cloudbuild.json -------------------------------------------------------------------------------- /src/schemas/json/cloudify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/cloudify.json -------------------------------------------------------------------------------- /src/schemas/json/codeclimate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/codeclimate.json -------------------------------------------------------------------------------- /src/schemas/json/codecov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/codecov.json -------------------------------------------------------------------------------- /src/schemas/json/coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/coffeelint.json -------------------------------------------------------------------------------- /src/schemas/json/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/commands.json -------------------------------------------------------------------------------- /src/schemas/json/commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/commitlintrc.json -------------------------------------------------------------------------------- /src/schemas/json/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/component.json -------------------------------------------------------------------------------- /src/schemas/json/convex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/convex.json -------------------------------------------------------------------------------- /src/schemas/json/creatomic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/creatomic.json -------------------------------------------------------------------------------- /src/schemas/json/crowdin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/crowdin.json -------------------------------------------------------------------------------- /src/schemas/json/cryproj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/cryproj.json -------------------------------------------------------------------------------- /src/schemas/json/csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/csscomb.json -------------------------------------------------------------------------------- /src/schemas/json/csslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/csslintrc.json -------------------------------------------------------------------------------- /src/schemas/json/ctfd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ctfd.json -------------------------------------------------------------------------------- /src/schemas/json/dart-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/dart-build.json -------------------------------------------------------------------------------- /src/schemas/json/dart-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/dart-test.json -------------------------------------------------------------------------------- /src/schemas/json/dein.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/dein.json -------------------------------------------------------------------------------- /src/schemas/json/dependabot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/dependabot.json -------------------------------------------------------------------------------- /src/schemas/json/deployed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/deployed.json -------------------------------------------------------------------------------- /src/schemas/json/djlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/djlint.json -------------------------------------------------------------------------------- /src/schemas/json/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/docfx.json -------------------------------------------------------------------------------- /src/schemas/json/docker-bake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/docker-bake.json -------------------------------------------------------------------------------- /src/schemas/json/dockerd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/dockerd.json -------------------------------------------------------------------------------- /src/schemas/json/dofigen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/dofigen.json -------------------------------------------------------------------------------- /src/schemas/json/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/dotnet-tools.json -------------------------------------------------------------------------------- /src/schemas/json/drone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/drone.json -------------------------------------------------------------------------------- /src/schemas/json/drupal-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/drupal-info.json -------------------------------------------------------------------------------- /src/schemas/json/dss-2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/dss-2.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/easyvcr-net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/easyvcr-net.json -------------------------------------------------------------------------------- /src/schemas/json/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/elm.json -------------------------------------------------------------------------------- /src/schemas/json/epr-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/epr-manifest.json -------------------------------------------------------------------------------- /src/schemas/json/eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/eslintrc.json -------------------------------------------------------------------------------- /src/schemas/json/esmrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/esmrc.json -------------------------------------------------------------------------------- /src/schemas/json/esquio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/esquio.json -------------------------------------------------------------------------------- /src/schemas/json/expo-37.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/expo-37.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/expo-38.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/expo-38.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/expo-39.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/expo-39.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/expo-40.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/expo-40.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/expo-41.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/expo-41.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/expo-42.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/expo-42.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/expo-46.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/expo-46.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/expo-50.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/expo-50.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/expo-52.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/expo-52.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/expo-53.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/expo-53.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/fabric.mod.json -------------------------------------------------------------------------------- /src/schemas/json/feed-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/feed-1.json -------------------------------------------------------------------------------- /src/schemas/json/feed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/feed.json -------------------------------------------------------------------------------- /src/schemas/json/first-timers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/first-timers.json -------------------------------------------------------------------------------- /src/schemas/json/fly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/fly.json -------------------------------------------------------------------------------- /src/schemas/json/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/function.json -------------------------------------------------------------------------------- /src/schemas/json/gadget-yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/gadget-yaml.json -------------------------------------------------------------------------------- /src/schemas/json/gaspar-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/gaspar-1.0.json -------------------------------------------------------------------------------- /src/schemas/json/gaspar-3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/gaspar-3.0.json -------------------------------------------------------------------------------- /src/schemas/json/geojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/geojson.json -------------------------------------------------------------------------------- /src/schemas/json/gitversion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/gitversion.json -------------------------------------------------------------------------------- /src/schemas/json/glazewm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/glazewm.json -------------------------------------------------------------------------------- /src/schemas/json/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/global.json -------------------------------------------------------------------------------- /src/schemas/json/gpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/gpc.json -------------------------------------------------------------------------------- /src/schemas/json/grunt-task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/grunt-task.json -------------------------------------------------------------------------------- /src/schemas/json/hammerkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/hammerkit.json -------------------------------------------------------------------------------- /src/schemas/json/hatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/hatch.json -------------------------------------------------------------------------------- /src/schemas/json/haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/haxelib.json -------------------------------------------------------------------------------- /src/schemas/json/hayagriva.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/hayagriva.json -------------------------------------------------------------------------------- /src/schemas/json/helmfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/helmfile.json -------------------------------------------------------------------------------- /src/schemas/json/hemtt-0.6.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/hemtt-0.6.2.json -------------------------------------------------------------------------------- /src/schemas/json/host-meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/host-meta.json -------------------------------------------------------------------------------- /src/schemas/json/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/host.json -------------------------------------------------------------------------------- /src/schemas/json/htmlhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/htmlhint.json -------------------------------------------------------------------------------- /src/schemas/json/httpmockrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/httpmockrc.json -------------------------------------------------------------------------------- /src/schemas/json/hugo-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/hugo-theme.json -------------------------------------------------------------------------------- /src/schemas/json/hugo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/hugo.json -------------------------------------------------------------------------------- /src/schemas/json/huskyrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/huskyrc.json -------------------------------------------------------------------------------- /src/schemas/json/hws-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/hws-config.json -------------------------------------------------------------------------------- /src/schemas/json/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ide.host.json -------------------------------------------------------------------------------- /src/schemas/json/imgbotconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/imgbotconfig.json -------------------------------------------------------------------------------- /src/schemas/json/importmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/importmap.json -------------------------------------------------------------------------------- /src/schemas/json/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/install.json -------------------------------------------------------------------------------- /src/schemas/json/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jasmine.json -------------------------------------------------------------------------------- /src/schemas/json/jasonette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jasonette.json -------------------------------------------------------------------------------- /src/schemas/json/jdt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jdt.json -------------------------------------------------------------------------------- /src/schemas/json/jekyll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jekyll.json -------------------------------------------------------------------------------- /src/schemas/json/jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jest.json -------------------------------------------------------------------------------- /src/schemas/json/jsbeautifyrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jsbeautifyrc.json -------------------------------------------------------------------------------- /src/schemas/json/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jsconfig.json -------------------------------------------------------------------------------- /src/schemas/json/jscpd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jscpd.json -------------------------------------------------------------------------------- /src/schemas/json/jscsrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jscsrc.json -------------------------------------------------------------------------------- /src/schemas/json/jsdoc-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jsdoc-1.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/jshintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jshintrc.json -------------------------------------------------------------------------------- /src/schemas/json/jsinspectrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jsinspectrc.json -------------------------------------------------------------------------------- /src/schemas/json/json-api-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/json-api-1.0.json -------------------------------------------------------------------------------- /src/schemas/json/json-patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/json-patch.json -------------------------------------------------------------------------------- /src/schemas/json/jsone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jsone.json -------------------------------------------------------------------------------- /src/schemas/json/jsonld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/jsonld.json -------------------------------------------------------------------------------- /src/schemas/json/ksp-avc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ksp-avc.json -------------------------------------------------------------------------------- /src/schemas/json/ksp-ckan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ksp-ckan.json -------------------------------------------------------------------------------- /src/schemas/json/lazydocker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/lazydocker.json -------------------------------------------------------------------------------- /src/schemas/json/lazygit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/lazygit.json -------------------------------------------------------------------------------- /src/schemas/json/lefthook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/lefthook.json -------------------------------------------------------------------------------- /src/schemas/json/lego.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/lego.json -------------------------------------------------------------------------------- /src/schemas/json/lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/lerna.json -------------------------------------------------------------------------------- /src/schemas/json/lgtm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/lgtm.json -------------------------------------------------------------------------------- /src/schemas/json/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/libman.json -------------------------------------------------------------------------------- /src/schemas/json/licenses.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/licenses.1.json -------------------------------------------------------------------------------- /src/schemas/json/linutil-tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/linutil-tabs.json -------------------------------------------------------------------------------- /src/schemas/json/liquibase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/liquibase.json -------------------------------------------------------------------------------- /src/schemas/json/loki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/loki.json -------------------------------------------------------------------------------- /src/schemas/json/loobin-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/loobin-1.0.json -------------------------------------------------------------------------------- /src/schemas/json/lsdlschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/lsdlschema.json -------------------------------------------------------------------------------- /src/schemas/json/luaurc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/luaurc.json -------------------------------------------------------------------------------- /src/schemas/json/mapehr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/mapehr.json -------------------------------------------------------------------------------- /src/schemas/json/markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/markdownlint.json -------------------------------------------------------------------------------- /src/schemas/json/maturin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/maturin.json -------------------------------------------------------------------------------- /src/schemas/json/mdxlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/mdxlintrc.json -------------------------------------------------------------------------------- /src/schemas/json/metricshub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/metricshub.json -------------------------------------------------------------------------------- /src/schemas/json/micro-syntax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/micro-syntax.json -------------------------------------------------------------------------------- /src/schemas/json/micro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/micro.json -------------------------------------------------------------------------------- /src/schemas/json/mimetypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/mimetypes.json -------------------------------------------------------------------------------- /src/schemas/json/mkdocs-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/mkdocs-1.0.json -------------------------------------------------------------------------------- /src/schemas/json/mkdocs-1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/mkdocs-1.6.json -------------------------------------------------------------------------------- /src/schemas/json/mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/mocharc.json -------------------------------------------------------------------------------- /src/schemas/json/modernizrrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/modernizrrc.json -------------------------------------------------------------------------------- /src/schemas/json/mprocs-0.6.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/mprocs-0.6.4.json -------------------------------------------------------------------------------- /src/schemas/json/mta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/mta.json -------------------------------------------------------------------------------- /src/schemas/json/mtad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/mtad.json -------------------------------------------------------------------------------- /src/schemas/json/mtaext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/mtaext.json -------------------------------------------------------------------------------- /src/schemas/json/mycode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/mycode.json -------------------------------------------------------------------------------- /src/schemas/json/neoload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/neoload.json -------------------------------------------------------------------------------- /src/schemas/json/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/nest-cli.json -------------------------------------------------------------------------------- /src/schemas/json/netlify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/netlify.json -------------------------------------------------------------------------------- /src/schemas/json/nightwatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/nightwatch.json -------------------------------------------------------------------------------- /src/schemas/json/ninjs-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ninjs-1.0.json -------------------------------------------------------------------------------- /src/schemas/json/ninjs-1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ninjs-1.1.json -------------------------------------------------------------------------------- /src/schemas/json/ninjs-1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ninjs-1.2.json -------------------------------------------------------------------------------- /src/schemas/json/ninjs-1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ninjs-1.3.json -------------------------------------------------------------------------------- /src/schemas/json/ninjs-1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ninjs-1.4.json -------------------------------------------------------------------------------- /src/schemas/json/ninjs-2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ninjs-2.0.json -------------------------------------------------------------------------------- /src/schemas/json/nodehawkrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/nodehawkrc.json -------------------------------------------------------------------------------- /src/schemas/json/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/nodemon.json -------------------------------------------------------------------------------- /src/schemas/json/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/now.json -------------------------------------------------------------------------------- /src/schemas/json/npm-badges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/npm-badges.json -------------------------------------------------------------------------------- /src/schemas/json/npm-link-up.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/npm-link-up.json -------------------------------------------------------------------------------- /src/schemas/json/nswag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/nswag.json -------------------------------------------------------------------------------- /src/schemas/json/nuejs-site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/nuejs-site.json -------------------------------------------------------------------------------- /src/schemas/json/nycrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/nycrc.json -------------------------------------------------------------------------------- /src/schemas/json/ocelot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ocelot.json -------------------------------------------------------------------------------- /src/schemas/json/ogen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ogen.json -------------------------------------------------------------------------------- /src/schemas/json/okh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/okh.json -------------------------------------------------------------------------------- /src/schemas/json/omletrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/omletrc.json -------------------------------------------------------------------------------- /src/schemas/json/omnisharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/omnisharp.json -------------------------------------------------------------------------------- /src/schemas/json/openfin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/openfin.json -------------------------------------------------------------------------------- /src/schemas/json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/package.json -------------------------------------------------------------------------------- /src/schemas/json/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/packer.json -------------------------------------------------------------------------------- /src/schemas/json/paper-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/paper-plugin.json -------------------------------------------------------------------------------- /src/schemas/json/partial-mypy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/partial-mypy.json -------------------------------------------------------------------------------- /src/schemas/json/partial-pdm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/partial-pdm.json -------------------------------------------------------------------------------- /src/schemas/json/partial-poe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/partial-poe.json -------------------------------------------------------------------------------- /src/schemas/json/partial-tox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/partial-tox.json -------------------------------------------------------------------------------- /src/schemas/json/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/pattern.json -------------------------------------------------------------------------------- /src/schemas/json/pdm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/pdm.json -------------------------------------------------------------------------------- /src/schemas/json/pep-723.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/pep-723.json -------------------------------------------------------------------------------- /src/schemas/json/phrase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/phrase.json -------------------------------------------------------------------------------- /src/schemas/json/phraseapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/phraseapp.json -------------------------------------------------------------------------------- /src/schemas/json/plagiarize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/plagiarize.json -------------------------------------------------------------------------------- /src/schemas/json/poetry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/poetry.json -------------------------------------------------------------------------------- /src/schemas/json/popxf-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/popxf-1.0.json -------------------------------------------------------------------------------- /src/schemas/json/postcssrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/postcssrc.json -------------------------------------------------------------------------------- /src/schemas/json/prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/prettierrc.json -------------------------------------------------------------------------------- /src/schemas/json/prisma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/prisma.json -------------------------------------------------------------------------------- /src/schemas/json/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/project.json -------------------------------------------------------------------------------- /src/schemas/json/projektor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/projektor.json -------------------------------------------------------------------------------- /src/schemas/json/prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/prometheus.json -------------------------------------------------------------------------------- /src/schemas/json/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/proxies.json -------------------------------------------------------------------------------- /src/schemas/json/pterodactyl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/pterodactyl.json -------------------------------------------------------------------------------- /src/schemas/json/publiccode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/publiccode.json -------------------------------------------------------------------------------- /src/schemas/json/pubspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/pubspec.json -------------------------------------------------------------------------------- /src/schemas/json/pulumi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/pulumi.json -------------------------------------------------------------------------------- /src/schemas/json/putout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/putout.json -------------------------------------------------------------------------------- /src/schemas/json/pylock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/pylock.json -------------------------------------------------------------------------------- /src/schemas/json/pyproject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/pyproject.json -------------------------------------------------------------------------------- /src/schemas/json/pyrseas-0.8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/pyrseas-0.8.json -------------------------------------------------------------------------------- /src/schemas/json/qfconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/qfconfig.json -------------------------------------------------------------------------------- /src/schemas/json/qodana-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/qodana-1.0.json -------------------------------------------------------------------------------- /src/schemas/json/rehyperc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/rehyperc.json -------------------------------------------------------------------------------- /src/schemas/json/remarkrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/remarkrc.json -------------------------------------------------------------------------------- /src/schemas/json/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/renovate.json -------------------------------------------------------------------------------- /src/schemas/json/replit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/replit.json -------------------------------------------------------------------------------- /src/schemas/json/resjson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/resjson.json -------------------------------------------------------------------------------- /src/schemas/json/roomodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/roomodes.json -------------------------------------------------------------------------------- /src/schemas/json/ruff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ruff.json -------------------------------------------------------------------------------- /src/schemas/json/rust-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/rust-project.json -------------------------------------------------------------------------------- /src/schemas/json/rustfmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/rustfmt.json -------------------------------------------------------------------------------- /src/schemas/json/sake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/sake.json -------------------------------------------------------------------------------- /src/schemas/json/samt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/samt.json -------------------------------------------------------------------------------- /src/schemas/json/samtrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/samtrc.json -------------------------------------------------------------------------------- /src/schemas/json/sarif-1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/sarif-1.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/sarif-2.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/sarif-2.0.0.json -------------------------------------------------------------------------------- /src/schemas/json/sarif-2.1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/sarif-2.1.0.json -------------------------------------------------------------------------------- /src/schemas/json/sarif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/sarif.json -------------------------------------------------------------------------------- /src/schemas/json/scikit-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/scikit-build.json -------------------------------------------------------------------------------- /src/schemas/json/semgrep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/semgrep.json -------------------------------------------------------------------------------- /src/schemas/json/sergen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/sergen.json -------------------------------------------------------------------------------- /src/schemas/json/settings.job.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/settings.job.json -------------------------------------------------------------------------------- /src/schemas/json/setuptools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/setuptools.json -------------------------------------------------------------------------------- /src/schemas/json/size-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/size-limit.json -------------------------------------------------------------------------------- /src/schemas/json/sourcemap-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/sourcemap-v3.json -------------------------------------------------------------------------------- /src/schemas/json/specif-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/specif-1.0.json -------------------------------------------------------------------------------- /src/schemas/json/specif-1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/specif-1.1.json -------------------------------------------------------------------------------- /src/schemas/json/specmatic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/specmatic.json -------------------------------------------------------------------------------- /src/schemas/json/sprite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/sprite.json -------------------------------------------------------------------------------- /src/schemas/json/sqlc-2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/sqlc-2.0.json -------------------------------------------------------------------------------- /src/schemas/json/stackblitzrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/stackblitzrc.json -------------------------------------------------------------------------------- /src/schemas/json/stale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/stale.json -------------------------------------------------------------------------------- /src/schemas/json/starlake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/starlake.json -------------------------------------------------------------------------------- /src/schemas/json/stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/stylelintrc.json -------------------------------------------------------------------------------- /src/schemas/json/stylintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/stylintrc.json -------------------------------------------------------------------------------- /src/schemas/json/stylua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/stylua.json -------------------------------------------------------------------------------- /src/schemas/json/swagger-2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/swagger-2.0.json -------------------------------------------------------------------------------- /src/schemas/json/taplo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/taplo.json -------------------------------------------------------------------------------- /src/schemas/json/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/task.json -------------------------------------------------------------------------------- /src/schemas/json/taskfile.json: -------------------------------------------------------------------------------- 1 | { 2 | "$ref": "https://taskfile.dev/schema.json" 3 | } 4 | -------------------------------------------------------------------------------- /src/schemas/json/taurus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/taurus.json -------------------------------------------------------------------------------- /src/schemas/json/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/template.json -------------------------------------------------------------------------------- /src/schemas/json/theme-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/theme-v1.json -------------------------------------------------------------------------------- /src/schemas/json/tldr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/tldr.json -------------------------------------------------------------------------------- /src/schemas/json/tmlanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/tmlanguage.json -------------------------------------------------------------------------------- /src/schemas/json/tmuxinator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/tmuxinator.json -------------------------------------------------------------------------------- /src/schemas/json/tombi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/tombi.json -------------------------------------------------------------------------------- /src/schemas/json/traefik-v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/traefik-v2.json -------------------------------------------------------------------------------- /src/schemas/json/traefik-v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/traefik-v3.json -------------------------------------------------------------------------------- /src/schemas/json/travis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/travis.json -------------------------------------------------------------------------------- /src/schemas/json/treefmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/treefmt.json -------------------------------------------------------------------------------- /src/schemas/json/truescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/truescript.json -------------------------------------------------------------------------------- /src/schemas/json/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/tsconfig.json -------------------------------------------------------------------------------- /src/schemas/json/tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/tsd.json -------------------------------------------------------------------------------- /src/schemas/json/tsdrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/tsdrc.json -------------------------------------------------------------------------------- /src/schemas/json/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/tslint.json -------------------------------------------------------------------------------- /src/schemas/json/tsoa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/tsoa.json -------------------------------------------------------------------------------- /src/schemas/json/tunnelhub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/tunnelhub.json -------------------------------------------------------------------------------- /src/schemas/json/ty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/ty.json -------------------------------------------------------------------------------- /src/schemas/json/typewiz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/typewiz.json -------------------------------------------------------------------------------- /src/schemas/json/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/typings.json -------------------------------------------------------------------------------- /src/schemas/json/typingsrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/typingsrc.json -------------------------------------------------------------------------------- /src/schemas/json/typo3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/typo3.json -------------------------------------------------------------------------------- /src/schemas/json/typst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/typst.json -------------------------------------------------------------------------------- /src/schemas/json/unist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/unist.json -------------------------------------------------------------------------------- /src/schemas/json/up.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/up.json -------------------------------------------------------------------------------- /src/schemas/json/uplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/uplugin.json -------------------------------------------------------------------------------- /src/schemas/json/uproject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/uproject.json -------------------------------------------------------------------------------- /src/schemas/json/utcm-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/utcm-monitor.json -------------------------------------------------------------------------------- /src/schemas/json/uv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/uv.json -------------------------------------------------------------------------------- /src/schemas/json/vault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/vault.json -------------------------------------------------------------------------------- /src/schemas/json/vector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/vector.json -------------------------------------------------------------------------------- /src/schemas/json/vega-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/vega-lite.json -------------------------------------------------------------------------------- /src/schemas/json/vega.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/vega.json -------------------------------------------------------------------------------- /src/schemas/json/vs-nesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/vs-nesting.json -------------------------------------------------------------------------------- /src/schemas/json/vsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/vsconfig.json -------------------------------------------------------------------------------- /src/schemas/json/vsext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/vsext.json -------------------------------------------------------------------------------- /src/schemas/json/vsix-publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/vsix-publish.json -------------------------------------------------------------------------------- /src/schemas/json/vsls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/vsls.json -------------------------------------------------------------------------------- /src/schemas/json/warp-keysets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/warp-keysets.json -------------------------------------------------------------------------------- /src/schemas/json/warp-themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/warp-themes.json -------------------------------------------------------------------------------- /src/schemas/json/web-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/web-manifest.json -------------------------------------------------------------------------------- /src/schemas/json/web-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/web-types.json -------------------------------------------------------------------------------- /src/schemas/json/webextension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/webextension.json -------------------------------------------------------------------------------- /src/schemas/json/webjobs-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/webjobs-list.json -------------------------------------------------------------------------------- /src/schemas/json/workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/workflows.json -------------------------------------------------------------------------------- /src/schemas/json/xs-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/xs-app.json -------------------------------------------------------------------------------- /src/schemas/json/xunit-2.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/xunit-2.2.json -------------------------------------------------------------------------------- /src/schemas/json/xunit-2.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/xunit-2.3.json -------------------------------------------------------------------------------- /src/schemas/json/yamllint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/yamllint.json -------------------------------------------------------------------------------- /src/schemas/json/youtrack-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/youtrack-app.json -------------------------------------------------------------------------------- /src/schemas/json/zarf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/zarf.json -------------------------------------------------------------------------------- /src/schemas/json/zuul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/schemas/json/zuul.json -------------------------------------------------------------------------------- /src/test/agripparc-1.2/empty-agripparc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/test/agripparc-1.3/empty-agripparc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/test/agripparc-1.4/empty-agripparc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/test/amx-muse/complete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/amx-muse/complete.json -------------------------------------------------------------------------------- /src/test/amx-muse/minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/amx-muse/minimal.json -------------------------------------------------------------------------------- /src/test/any/any.json: -------------------------------------------------------------------------------- 1 | { 2 | "hello": "world" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/appsettings/elmahio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/appsettings/elmahio.json -------------------------------------------------------------------------------- /src/test/appsettings/nlog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/appsettings/nlog.json -------------------------------------------------------------------------------- /src/test/appveyor/appveyor2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/appveyor/appveyor2.yml -------------------------------------------------------------------------------- /src/test/appveyor/appvyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/appveyor/appvyor.yml -------------------------------------------------------------------------------- /src/test/appveyor/reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/appveyor/reference.json -------------------------------------------------------------------------------- /src/test/asconfig-schema/entry-points_asconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "entries": ["assembly/globals.ts"] 3 | } 4 | -------------------------------------------------------------------------------- /src/test/asmdef/test01.asmdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/asmdef/test01.asmdef.json -------------------------------------------------------------------------------- /src/test/asmdef/test02.asmdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/asmdef/test02.asmdef.json -------------------------------------------------------------------------------- /src/test/asmdef/test03.asmdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/asmdef/test03.asmdef.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/AWS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/AWS.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/CdkSample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/CdkSample.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/EventHubs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/EventHubs.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/Keycloak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/Keycloak.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/Mongo.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/Mongo.2.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/MySqlDb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/MySqlDb.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/Nats.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/Nats.2.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/Nats.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/Nats.3.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/Orleans.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/Orleans.2.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/Python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/Python.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/Qdrant.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/Qdrant.2.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/Qdrant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/Qdrant.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/Redis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/Redis.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/Seq.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/Seq.2.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/SignalR.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/SignalR.2.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/Stress.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/Stress.2.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/Stress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/Stress.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/TestShop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/TestShop.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/WebPubSub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/WebPubSub.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/bicep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/bicep.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/cdk.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/dapr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/dapr.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/mongo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/mongo.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/mysql.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/nats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/nats.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/orleans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/orleans.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/seq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/seq.json -------------------------------------------------------------------------------- /src/test/aspire-8.0/signalr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/aspire-8.0/signalr.json -------------------------------------------------------------------------------- /src/test/ava/ava.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/ava/ava.config.json -------------------------------------------------------------------------------- /src/test/babelrc/exampe-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/babelrc/exampe-4.json -------------------------------------------------------------------------------- /src/test/babelrc/example-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/babelrc/example-1.json -------------------------------------------------------------------------------- /src/test/babelrc/example-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/babelrc/example-2.json -------------------------------------------------------------------------------- /src/test/babelrc/example-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/babelrc/example-3.json -------------------------------------------------------------------------------- /src/test/bettercodehub/gaphor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/bettercodehub/gaphor.json -------------------------------------------------------------------------------- /src/test/bettercodehub/pybamm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/bettercodehub/pybamm.json -------------------------------------------------------------------------------- /src/test/bigconfig/bigconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/bigconfig/bigconfig.yaml -------------------------------------------------------------------------------- /src/test/bitrise/bitrise-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/bitrise/bitrise-test.json -------------------------------------------------------------------------------- /src/test/bower/bower-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/bower/bower-test.json -------------------------------------------------------------------------------- /src/test/bower/bower-test2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/bower/bower-test2.json -------------------------------------------------------------------------------- /src/test/bower/bower-test3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/bower/bower-test3.json -------------------------------------------------------------------------------- /src/test/bower/bower-test4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/bower/bower-test4.json -------------------------------------------------------------------------------- /src/test/bowerrc/bowerrc-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/bowerrc/bowerrc-test.json -------------------------------------------------------------------------------- /src/test/bpkg/bpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/bpkg/bpkg.json -------------------------------------------------------------------------------- /src/test/buf.gen/buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/buf.gen/buf.gen.yaml -------------------------------------------------------------------------------- /src/test/buf.gen/v2.buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/buf.gen/v2.buf.gen.yaml -------------------------------------------------------------------------------- /src/test/buf.work/buf.work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/buf.work/buf.work.yaml -------------------------------------------------------------------------------- /src/test/buf/buf.test2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/buf/buf.test2.yaml -------------------------------------------------------------------------------- /src/test/buf/buf.test3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/buf/buf.test3.yaml -------------------------------------------------------------------------------- /src/test/buf/buf.test4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/buf/buf.test4.yaml -------------------------------------------------------------------------------- /src/test/buf/buf.v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/buf/buf.v2.yaml -------------------------------------------------------------------------------- /src/test/buf/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/buf/buf.yaml -------------------------------------------------------------------------------- /src/test/bun-lock/bun.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/bun-lock/bun.lock.json -------------------------------------------------------------------------------- /src/test/bunfig/bunfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/bunfig/bunfig.toml -------------------------------------------------------------------------------- /src/test/cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/cargo/config.toml -------------------------------------------------------------------------------- /src/test/case_schema/base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/case_schema/base.yml -------------------------------------------------------------------------------- /src/test/catalog-info/org-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/catalog-info/org-1.json -------------------------------------------------------------------------------- /src/test/catalog-info/org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/catalog-info/org.json -------------------------------------------------------------------------------- /src/test/cdk/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "app": "npx ts-node --prefer-ts-exts bin/infra.ts" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/cdk/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/cdk/extensions.json -------------------------------------------------------------------------------- /src/test/chart/full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/chart/full.json -------------------------------------------------------------------------------- /src/test/chart/minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/chart/minimal.json -------------------------------------------------------------------------------- /src/test/cheatsheets/conf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/cheatsheets/conf.yml -------------------------------------------------------------------------------- /src/test/chrome-manifest/v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/chrome-manifest/v3.json -------------------------------------------------------------------------------- /src/test/chutzpah/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/chutzpah/default.json -------------------------------------------------------------------------------- /src/test/circleciconfig/3054.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/circleciconfig/3054.yml -------------------------------------------------------------------------------- /src/test/circleciconfig/570.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/circleciconfig/570.yaml -------------------------------------------------------------------------------- /src/test/circleciconfig/ecr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/circleciconfig/ecr.json -------------------------------------------------------------------------------- /src/test/circleciconfig/version-2.0.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2 3 | } 4 | -------------------------------------------------------------------------------- /src/test/circleciconfig/version-2.1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2.1 3 | } 4 | -------------------------------------------------------------------------------- /src/test/circleciconfig/version-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2 3 | } 4 | -------------------------------------------------------------------------------- /src/test/cirrus/credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/cirrus/credentials.yaml -------------------------------------------------------------------------------- /src/test/cirrus/node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/cirrus/node.json -------------------------------------------------------------------------------- /src/test/clangd/clangd-17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/clangd/clangd-17.yml -------------------------------------------------------------------------------- /src/test/clangd/clangd-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/clangd/clangd-2.yml -------------------------------------------------------------------------------- /src/test/clangd/clangd-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/clangd/clangd-3.yml -------------------------------------------------------------------------------- /src/test/clangd/clangd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/clangd/clangd.yml -------------------------------------------------------------------------------- /src/test/clasp/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/clasp/example.json -------------------------------------------------------------------------------- /src/test/claude-code-settings/empty-config.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/test/claude-code-settings/theme-variations.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/test/clib/clib-source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/clib/clib-source.json -------------------------------------------------------------------------------- /src/test/cloudbuild/test-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/cloudbuild/test-1.json -------------------------------------------------------------------------------- /src/test/cloudbuild/test-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/cloudbuild/test-1.yaml -------------------------------------------------------------------------------- /src/test/cloudbuild/test-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/cloudbuild/test-2.json -------------------------------------------------------------------------------- /src/test/cloudify/azure-aks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/cloudify/azure-aks.json -------------------------------------------------------------------------------- /src/test/cloudify/azure-vm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/cloudify/azure-vm.json -------------------------------------------------------------------------------- /src/test/cloudify/openstack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/cloudify/openstack.json -------------------------------------------------------------------------------- /src/test/codeclimate/jekyll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/codeclimate/jekyll.json -------------------------------------------------------------------------------- /src/test/commitlintrc/commitlintrc-test.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } 4 | -------------------------------------------------------------------------------- /src/test/commitlintrc/commitlintrc-test3.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultIgnores": false 3 | } 4 | -------------------------------------------------------------------------------- /src/test/commitlintrc/commitlintrc-test4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parserPreset": "conventional-changelog-atom" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/convex/convex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/convex/convex.json -------------------------------------------------------------------------------- /src/test/crowdin/bitwarden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/crowdin/bitwarden.json -------------------------------------------------------------------------------- /src/test/crowdin/joomla-cms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/crowdin/joomla-cms.json -------------------------------------------------------------------------------- /src/test/csscomb/csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/csscomb/csscomb.json -------------------------------------------------------------------------------- /src/test/ctfd/minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/ctfd/minimal.yaml -------------------------------------------------------------------------------- /src/test/dart-build/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/dart-build/sample.json -------------------------------------------------------------------------------- /src/test/debugsettings/none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/debugsettings/none.json -------------------------------------------------------------------------------- /src/test/dein/dein.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/dein/dein.json -------------------------------------------------------------------------------- /src/test/djlint/.djlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/djlint/.djlintrc.json -------------------------------------------------------------------------------- /src/test/docfx/aspnetcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/docfx/aspnetcore.json -------------------------------------------------------------------------------- /src/test/docfx/docfx-seed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/docfx/docfx-seed.json -------------------------------------------------------------------------------- /src/test/docfx/dotnet-docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/docfx/dotnet-docs.json -------------------------------------------------------------------------------- /src/test/docker-bake/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/docker-bake/basic.json -------------------------------------------------------------------------------- /src/test/dockerd/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/dockerd/config.json -------------------------------------------------------------------------------- /src/test/drone/kubernetes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/drone/kubernetes.json -------------------------------------------------------------------------------- /src/test/drone/secret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/drone/secret.json -------------------------------------------------------------------------------- /src/test/drone/secret_vault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/drone/secret_vault.json -------------------------------------------------------------------------------- /src/test/drone/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/drone/template.json -------------------------------------------------------------------------------- /src/test/drone/volumes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/drone/volumes.json -------------------------------------------------------------------------------- /src/test/drone/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/drone/workspace.json -------------------------------------------------------------------------------- /src/test/elm/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/elm/elm.json -------------------------------------------------------------------------------- /src/test/esmrc/.esmrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/esmrc/.esmrc.json -------------------------------------------------------------------------------- /src/test/esmrc/.esmrc_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/esmrc/.esmrc_.json -------------------------------------------------------------------------------- /src/test/esquio/esquio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/esquio/esquio.json -------------------------------------------------------------------------------- /src/test/feed-1/microblog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/feed-1/microblog.json -------------------------------------------------------------------------------- /src/test/feed-1/podcast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/feed-1/podcast.json -------------------------------------------------------------------------------- /src/test/feed-1/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/feed-1/simple.json -------------------------------------------------------------------------------- /src/test/feed/microblog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/feed/microblog.json -------------------------------------------------------------------------------- /src/test/feed/podcast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/feed/podcast.json -------------------------------------------------------------------------------- /src/test/feed/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/feed/simple.json -------------------------------------------------------------------------------- /src/test/fly/fly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/fly/fly.json -------------------------------------------------------------------------------- /src/test/function/Kusto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/function/Kusto.json -------------------------------------------------------------------------------- /src/test/function/MySql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/function/MySql.json -------------------------------------------------------------------------------- /src/test/function/SasToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/function/SasToken.json -------------------------------------------------------------------------------- /src/test/function/SendGrid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/function/SendGrid.json -------------------------------------------------------------------------------- /src/test/function/Sql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/function/Sql.json -------------------------------------------------------------------------------- /src/test/function/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/function/function.json -------------------------------------------------------------------------------- /src/test/github-funding/buy_me_a_coffee.json: -------------------------------------------------------------------------------- 1 | { 2 | "buy_me_a_coffee": "USERNAME" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/community_bridge.json: -------------------------------------------------------------------------------- 1 | { 2 | "community_bridge": "PROJECT-NAME" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/custom-array-min-length.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom": ["https://example.com"] 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/custom-array-uri-with-scheme.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom": ["https://example.com"] 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/custom-array-uri-without-scheme.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom": ["example.com"] 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/custom-string-uri-with-scheme.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom": "https://example.com" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/custom-string-uri-without-scheme.json: -------------------------------------------------------------------------------- 1 | { 2 | "custom": "example.com" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/github-array-min-length.json: -------------------------------------------------------------------------------- 1 | { 2 | "github": ["user1"] 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/github-string.json: -------------------------------------------------------------------------------- 1 | { 2 | "github": "user1" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/issuehunt.json: -------------------------------------------------------------------------------- 1 | { 2 | "issuehunt": "USERNAME" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/ko_fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "ko_fi": "USERNAME" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/liberapay.json: -------------------------------------------------------------------------------- 1 | { 2 | "liberapay": "USERNAME" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/open_collective.json: -------------------------------------------------------------------------------- 1 | { 2 | "open_collective": "USERNAME" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/patreon.json: -------------------------------------------------------------------------------- 1 | { 2 | "patreon": "USERNAME" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/polar.json: -------------------------------------------------------------------------------- 1 | { 2 | "polar": "USERNAME" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/thanks_dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "thanks_dev": "u/gh/USERNAME" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/tidelift-package-name-maven.json: -------------------------------------------------------------------------------- 1 | { 2 | "tidelift": "maven/package-name" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/tidelift-package-name-npm.json: -------------------------------------------------------------------------------- 1 | { 2 | "tidelift": "npm/package-name" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/tidelift-package-name-nuget.json: -------------------------------------------------------------------------------- 1 | { 2 | "tidelift": "nuget/package-name" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/tidelift-package-name-pypi.json: -------------------------------------------------------------------------------- 1 | { 2 | "tidelift": "pypi/package-name" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-funding/tidelift-package-name-rubygems.json: -------------------------------------------------------------------------------- 1 | { 2 | "tidelift": "rubygems/package-name" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/github-issue-config/no-contact-links.json: -------------------------------------------------------------------------------- 1 | { 2 | "blank_issues_enabled": false 3 | } 4 | -------------------------------------------------------------------------------- /src/test/gpc/from-spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/gpc/from-spec.json -------------------------------------------------------------------------------- /src/test/hatch/minimal.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/hatch/minimal.toml -------------------------------------------------------------------------------- /src/test/hatch/oroborous.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/hatch/oroborous.toml -------------------------------------------------------------------------------- /src/test/hatch/version-path.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/hatch/version-path.toml -------------------------------------------------------------------------------- /src/test/hatch/version-vcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/hatch/version-vcs.toml -------------------------------------------------------------------------------- /src/test/host/host.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/host/host.v1.json -------------------------------------------------------------------------------- /src/test/host/host.v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/host/host.v2.json -------------------------------------------------------------------------------- /src/test/htmlhint/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/htmlhint/example.json -------------------------------------------------------------------------------- /src/test/hugo/4526.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/hugo/4526.toml -------------------------------------------------------------------------------- /src/test/hugo/caches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/hugo/caches.json -------------------------------------------------------------------------------- /src/test/hugo/example-1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/hugo/example-1.toml -------------------------------------------------------------------------------- /src/test/hugo/example-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/hugo/example-2.json -------------------------------------------------------------------------------- /src/test/hugo/example-3.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/hugo/example-3.toml -------------------------------------------------------------------------------- /src/test/hugo/example-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/hugo/example-4.yaml -------------------------------------------------------------------------------- /src/test/hugo/example-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/hugo/example-5.yaml -------------------------------------------------------------------------------- /src/test/hugo/minify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/hugo/minify.json -------------------------------------------------------------------------------- /src/test/jasmine/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/jasmine/jasmine.json -------------------------------------------------------------------------------- /src/test/jdt/transform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/jdt/transform.json -------------------------------------------------------------------------------- /src/test/jekyll/_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/jekyll/_config.yaml -------------------------------------------------------------------------------- /src/test/jekyll/issue-3702.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/jekyll/issue-3702.yaml -------------------------------------------------------------------------------- /src/test/jekyll/permalink.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/jekyll/permalink.yaml -------------------------------------------------------------------------------- /src/test/jest/jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/jest/jest.json -------------------------------------------------------------------------------- /src/test/jsconfig/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/jsconfig/jsconfig.json -------------------------------------------------------------------------------- /src/test/jscpd/jscpd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/jscpd/jscpd.json -------------------------------------------------------------------------------- /src/test/jscsrc/jscsrc-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/jscsrc/jscsrc-test.json -------------------------------------------------------------------------------- /src/test/jsone/reverse-sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/jsone/reverse-sort.json -------------------------------------------------------------------------------- /src/test/jsone/sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/jsone/sort.json -------------------------------------------------------------------------------- /src/test/jsonld/w3c-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/jsonld/w3c-sample.json -------------------------------------------------------------------------------- /src/test/kustomization/2994.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/kustomization/2994.yml -------------------------------------------------------------------------------- /src/test/kustomization/3825.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/kustomization/3825.yml -------------------------------------------------------------------------------- /src/test/lazydocker/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/lazydocker/default.yaml -------------------------------------------------------------------------------- /src/test/lefthook/issue-4150.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/lefthook/issue-4150.yml -------------------------------------------------------------------------------- /src/test/lefthook/issue-632.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/lefthook/issue-632.yml -------------------------------------------------------------------------------- /src/test/lefthook/lefthook-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/lefthook/lefthook-1.yml -------------------------------------------------------------------------------- /src/test/lefthook/lefthook-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/lefthook/lefthook-2.yml -------------------------------------------------------------------------------- /src/test/lego/lego.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/lego/lego.json -------------------------------------------------------------------------------- /src/test/lgtm/fprime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/lgtm/fprime.json -------------------------------------------------------------------------------- /src/test/lgtm/godot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/lgtm/godot.json -------------------------------------------------------------------------------- /src/test/lgtm/pyxis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/lgtm/pyxis.json -------------------------------------------------------------------------------- /src/test/lgtm/scikit-learn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/lgtm/scikit-learn.json -------------------------------------------------------------------------------- /src/test/lgtm/tesseract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/lgtm/tesseract.json -------------------------------------------------------------------------------- /src/test/lgtm/weblate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/lgtm/weblate.json -------------------------------------------------------------------------------- /src/test/libman/v3Basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/libman/v3Basic.json -------------------------------------------------------------------------------- /src/test/liquibase/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/liquibase/delete.json -------------------------------------------------------------------------------- /src/test/liquibase/dropView.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/liquibase/dropView.json -------------------------------------------------------------------------------- /src/test/liquibase/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/liquibase/empty.json -------------------------------------------------------------------------------- /src/test/liquibase/insert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/liquibase/insert.json -------------------------------------------------------------------------------- /src/test/liquibase/loadData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/liquibase/loadData.json -------------------------------------------------------------------------------- /src/test/liquibase/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/liquibase/output.json -------------------------------------------------------------------------------- /src/test/liquibase/property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/liquibase/property.json -------------------------------------------------------------------------------- /src/test/liquibase/sql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/liquibase/sql.json -------------------------------------------------------------------------------- /src/test/liquibase/sqlFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/liquibase/sqlFile.json -------------------------------------------------------------------------------- /src/test/liquibase/stop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/liquibase/stop.json -------------------------------------------------------------------------------- /src/test/liquibase/update.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/liquibase/update.2.json -------------------------------------------------------------------------------- /src/test/liquibase/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/liquibase/update.json -------------------------------------------------------------------------------- /src/test/loki/loki.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/loki/loki.yaml -------------------------------------------------------------------------------- /src/test/luaurc/luaurc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/luaurc/luaurc.json -------------------------------------------------------------------------------- /src/test/mapehr/bmi.map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mapehr/bmi.map.yaml -------------------------------------------------------------------------------- /src/test/mapehr/comment.map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mapehr/comment.map.yaml -------------------------------------------------------------------------------- /src/test/mapehr/units.map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mapehr/units.map.yaml -------------------------------------------------------------------------------- /src/test/mdxlintrc/bullet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mdxlintrc/bullet.json -------------------------------------------------------------------------------- /src/test/mdxlintrc/closeAtx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mdxlintrc/closeAtx.json -------------------------------------------------------------------------------- /src/test/mdxlintrc/emphasis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mdxlintrc/emphasis.json -------------------------------------------------------------------------------- /src/test/mdxlintrc/fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mdxlintrc/fence.json -------------------------------------------------------------------------------- /src/test/mdxlintrc/fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mdxlintrc/fences.json -------------------------------------------------------------------------------- /src/test/mdxlintrc/quote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mdxlintrc/quote.json -------------------------------------------------------------------------------- /src/test/mdxlintrc/rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mdxlintrc/rule.json -------------------------------------------------------------------------------- /src/test/mdxlintrc/setext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mdxlintrc/setext.json -------------------------------------------------------------------------------- /src/test/mdxlintrc/strong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mdxlintrc/strong.json -------------------------------------------------------------------------------- /src/test/mimetypes/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mimetypes/examples.json -------------------------------------------------------------------------------- /src/test/mkdocs-1.0/alter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mkdocs-1.0/alter.yml -------------------------------------------------------------------------------- /src/test/mprocs-0.6.4/0001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mprocs-0.6.4/0001.json -------------------------------------------------------------------------------- /src/test/mprocs-0.6.4/0002.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mprocs-0.6.4/0002.yml -------------------------------------------------------------------------------- /src/test/mprocs-0.6.4/0003.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mprocs-0.6.4/0003.yml -------------------------------------------------------------------------------- /src/test/mprocs-0.6.4/0004.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mprocs-0.6.4/0004.yml -------------------------------------------------------------------------------- /src/test/mprocs-0.6.4/0005.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mprocs-0.6.4/0005.yml -------------------------------------------------------------------------------- /src/test/mprocs-0.6.4/0006.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mprocs-0.6.4/0006.yml -------------------------------------------------------------------------------- /src/test/mta/mta-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mta/mta-test.json -------------------------------------------------------------------------------- /src/test/mycode/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/mycode/example.json -------------------------------------------------------------------------------- /src/test/nest-cli/.nest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/nest-cli/.nest.json -------------------------------------------------------------------------------- /src/test/nest-cli/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/nest-cli/nest-cli.json -------------------------------------------------------------------------------- /src/test/netlify/config.yml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/netlify/config.yml.json -------------------------------------------------------------------------------- /src/test/nightwatch/chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/nightwatch/chrome.json -------------------------------------------------------------------------------- /src/test/nightwatch/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/nightwatch/default.json -------------------------------------------------------------------------------- /src/test/nightwatch/firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/nightwatch/firefox.json -------------------------------------------------------------------------------- /src/test/now/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/now/example.json -------------------------------------------------------------------------------- /src/test/npm-badges/badges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/npm-badges/badges.json -------------------------------------------------------------------------------- /src/test/nycrc/nycrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/nycrc/nycrc.json -------------------------------------------------------------------------------- /src/test/ocelot/ocelot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/ocelot/ocelot.json -------------------------------------------------------------------------------- /src/test/omletrc/monorepo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/omletrc/monorepo.json -------------------------------------------------------------------------------- /src/test/package/devEngines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/package/devEngines.json -------------------------------------------------------------------------------- /src/test/package/funding-uri.json: -------------------------------------------------------------------------------- 1 | { 2 | "funding": "https://example.com/bar-baz" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/package/issue-2957.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@/foo" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/package/jspm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/package/jspm.json -------------------------------------------------------------------------------- /src/test/package/private-string-test1.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": "true" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/package/private-string-test2.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": "false" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/package/private.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true 3 | } 4 | -------------------------------------------------------------------------------- /src/test/packer/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/packer/packer.json -------------------------------------------------------------------------------- /src/test/pdm/pdm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pdm/pdm.json -------------------------------------------------------------------------------- /src/test/pep-723/1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pep-723/1.toml -------------------------------------------------------------------------------- /src/test/pep-723/2.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pep-723/2.toml -------------------------------------------------------------------------------- /src/test/pep-723/3.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pep-723/3.toml -------------------------------------------------------------------------------- /src/test/phrase/.phrase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/phrase/.phrase.yml -------------------------------------------------------------------------------- /src/test/popxf-1.0/B0mumu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/popxf-1.0/B0mumu.json -------------------------------------------------------------------------------- /src/test/popxf-1.0/Bsmumu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/popxf-1.0/Bsmumu.json -------------------------------------------------------------------------------- /src/test/popxf-1.0/Wlnu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/popxf-1.0/Wlnu.json -------------------------------------------------------------------------------- /src/test/postcssrc/full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/postcssrc/full.json -------------------------------------------------------------------------------- /src/test/postcssrc/map.json: -------------------------------------------------------------------------------- 1 | { 2 | "map": false 3 | } 4 | -------------------------------------------------------------------------------- /src/test/postcssrc/parser.json: -------------------------------------------------------------------------------- 1 | { 2 | "parser": false 3 | } 4 | -------------------------------------------------------------------------------- /src/test/postcssrc/plugins.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": [false, {}] 3 | } 4 | -------------------------------------------------------------------------------- /src/test/postcssrc/stringifier.json: -------------------------------------------------------------------------------- 1 | { 2 | "stringifier": false 3 | } 4 | -------------------------------------------------------------------------------- /src/test/postcssrc/syntax.json: -------------------------------------------------------------------------------- 1 | { 2 | "syntax": false 3 | } 4 | -------------------------------------------------------------------------------- /src/test/project/EF-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/project/EF-project.json -------------------------------------------------------------------------------- /src/test/proxies/BasicProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/proxies/BasicProxy.json -------------------------------------------------------------------------------- /src/test/pterodactyl/egg-mc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pterodactyl/egg-mc.json -------------------------------------------------------------------------------- /src/test/publiccode/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/publiccode/minimum.json -------------------------------------------------------------------------------- /src/test/pubspec/platforms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pubspec/platforms.yaml -------------------------------------------------------------------------------- /src/test/pubspec/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pubspec/pubspec.yaml -------------------------------------------------------------------------------- /src/test/pubspec/shaders.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pubspec/shaders.yaml -------------------------------------------------------------------------------- /src/test/pulumi/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pulumi/Pulumi.yaml -------------------------------------------------------------------------------- /src/test/putout/match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/putout/match.json -------------------------------------------------------------------------------- /src/test/pyproject/3021.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pyproject/3021.toml -------------------------------------------------------------------------------- /src/test/pyproject/3616.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pyproject/3616.toml -------------------------------------------------------------------------------- /src/test/pyproject/3821.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pyproject/3821.toml -------------------------------------------------------------------------------- /src/test/pyproject/dynamic.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pyproject/dynamic.toml -------------------------------------------------------------------------------- /src/test/pyproject/hatch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pyproject/hatch.toml -------------------------------------------------------------------------------- /src/test/pyproject/mypy-01.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pyproject/mypy-01.toml -------------------------------------------------------------------------------- /src/test/pyproject/mypy-02.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pyproject/mypy-02.toml -------------------------------------------------------------------------------- /src/test/pyproject/pdm_tool.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pyproject/pdm_tool.toml -------------------------------------------------------------------------------- /src/test/pyproject/pep639.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pyproject/pep639.toml -------------------------------------------------------------------------------- /src/test/pyproject/pep794.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pyproject/pep794.toml -------------------------------------------------------------------------------- /src/test/pyproject/simple.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/pyproject/simple.toml -------------------------------------------------------------------------------- /src/test/qodana-1.0/cpp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/qodana-1.0/cpp.yaml -------------------------------------------------------------------------------- /src/test/qodana-1.0/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/qodana-1.0/example.json -------------------------------------------------------------------------------- /src/test/rehyperc/fragment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rehyperc/fragment.json -------------------------------------------------------------------------------- /src/test/rehyperc/quote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rehyperc/quote.json -------------------------------------------------------------------------------- /src/test/rehyperc/space.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rehyperc/space.json -------------------------------------------------------------------------------- /src/test/rehyperc/verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rehyperc/verbose.json -------------------------------------------------------------------------------- /src/test/rehyperc/voids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rehyperc/voids.json -------------------------------------------------------------------------------- /src/test/remarkrc/bullet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/remarkrc/bullet.json -------------------------------------------------------------------------------- /src/test/remarkrc/closeAtx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/remarkrc/closeAtx.json -------------------------------------------------------------------------------- /src/test/remarkrc/emphasis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/remarkrc/emphasis.json -------------------------------------------------------------------------------- /src/test/remarkrc/fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/remarkrc/fence.json -------------------------------------------------------------------------------- /src/test/remarkrc/fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/remarkrc/fences.json -------------------------------------------------------------------------------- /src/test/remarkrc/quote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/remarkrc/quote.json -------------------------------------------------------------------------------- /src/test/remarkrc/rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/remarkrc/rule.json -------------------------------------------------------------------------------- /src/test/remarkrc/setext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/remarkrc/setext.json -------------------------------------------------------------------------------- /src/test/remarkrc/strong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/remarkrc/strong.json -------------------------------------------------------------------------------- /src/test/replit/replit.json: -------------------------------------------------------------------------------- 1 | { 2 | "run": ["a", "b"] 3 | } 4 | -------------------------------------------------------------------------------- /src/test/resjson/from-msdn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/resjson/from-msdn.json -------------------------------------------------------------------------------- /src/test/rudder-techniques/1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rudder-techniques/1.yml -------------------------------------------------------------------------------- /src/test/rudder-techniques/2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rudder-techniques/2.yml -------------------------------------------------------------------------------- /src/test/rudder-techniques/3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rudder-techniques/3.yml -------------------------------------------------------------------------------- /src/test/rudder-techniques/4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rudder-techniques/4.yml -------------------------------------------------------------------------------- /src/test/rudder-techniques/5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rudder-techniques/5.yml -------------------------------------------------------------------------------- /src/test/rudder-techniques/6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rudder-techniques/6.yml -------------------------------------------------------------------------------- /src/test/rudder-techniques/7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rudder-techniques/7.yml -------------------------------------------------------------------------------- /src/test/rudder-techniques/8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rudder-techniques/8.yml -------------------------------------------------------------------------------- /src/test/rudder-techniques/9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rudder-techniques/9.yml -------------------------------------------------------------------------------- /src/test/rustfmt/rustfmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/rustfmt/rustfmt.json -------------------------------------------------------------------------------- /src/test/samt/samt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/samt/samt.yaml -------------------------------------------------------------------------------- /src/test/samtrc/.samtrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/samtrc/.samtrc.yaml -------------------------------------------------------------------------------- /src/test/settings.job/siteextension.json: -------------------------------------------------------------------------------- 1 | { 2 | "is_singleton": true 3 | } 4 | -------------------------------------------------------------------------------- /src/test/sprite/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/sprite/example.json -------------------------------------------------------------------------------- /src/test/stale/go-ethereum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/stale/go-ethereum.json -------------------------------------------------------------------------------- /src/test/stale/jellyfin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/stale/jellyfin.json -------------------------------------------------------------------------------- /src/test/stale/openai-gym.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/stale/openai-gym.json -------------------------------------------------------------------------------- /src/test/stale/react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/stale/react.json -------------------------------------------------------------------------------- /src/test/stale/stale.json: -------------------------------------------------------------------------------- 1 | { 2 | "_extends": ".github" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/stale/tensorflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/stale/tensorflow.json -------------------------------------------------------------------------------- /src/test/starlake/ddl2yml.sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/starlake/ddl2yml.sl.yml -------------------------------------------------------------------------------- /src/test/starlake/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/starlake/domain.json -------------------------------------------------------------------------------- /src/test/starlake/env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/starlake/env.json -------------------------------------------------------------------------------- /src/test/starlake/extract-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/starlake/extract-1.json -------------------------------------------------------------------------------- /src/test/starlake/extract-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/starlake/extract-2.json -------------------------------------------------------------------------------- /src/test/starlake/load-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/starlake/load-1.json -------------------------------------------------------------------------------- /src/test/starlake/load-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/starlake/load-2.json -------------------------------------------------------------------------------- /src/test/starlake/refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/starlake/refs.json -------------------------------------------------------------------------------- /src/test/starlake/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/starlake/table.json -------------------------------------------------------------------------------- /src/test/starlake/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/starlake/types.json -------------------------------------------------------------------------------- /src/test/starlake/types.sl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/starlake/types.sl.yml -------------------------------------------------------------------------------- /src/test/stylua/blank.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/stylua/blank.toml -------------------------------------------------------------------------------- /src/test/stylua/default.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/stylua/default.toml -------------------------------------------------------------------------------- /src/test/taplo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/taplo/config.toml -------------------------------------------------------------------------------- /src/test/task/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/task/example.json -------------------------------------------------------------------------------- /src/test/taurus/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/taurus/settings.json -------------------------------------------------------------------------------- /src/test/taurus/test-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/taurus/test-1.json -------------------------------------------------------------------------------- /src/test/taurus/test-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/taurus/test-2.json -------------------------------------------------------------------------------- /src/test/template/mvcbasic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/template/mvcbasic.json -------------------------------------------------------------------------------- /src/test/tldr/tldr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tldr/tldr.json -------------------------------------------------------------------------------- /src/test/tmuxinator/detach.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tmuxinator/detach.yml -------------------------------------------------------------------------------- /src/test/tmuxinator/noname.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tmuxinator/noname.yml -------------------------------------------------------------------------------- /src/test/tmuxinator/noroot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tmuxinator/noroot.yml -------------------------------------------------------------------------------- /src/test/tmuxinator/sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tmuxinator/sample.yml -------------------------------------------------------------------------------- /src/test/tmuxinator/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tmuxinator/yaml.yaml -------------------------------------------------------------------------------- /src/test/traefik-v2/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/traefik-v2/example.json -------------------------------------------------------------------------------- /src/test/traefik-v3/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/traefik-v3/example.json -------------------------------------------------------------------------------- /src/test/travis/addon-snaps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/travis/addon-snaps.json -------------------------------------------------------------------------------- /src/test/travis/cache-mixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/travis/cache-mixed.json -------------------------------------------------------------------------------- /src/test/travis/ps-nvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/travis/ps-nvm.json -------------------------------------------------------------------------------- /src/test/treefmt/treefmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/treefmt/treefmt.json -------------------------------------------------------------------------------- /src/test/tsconfig/hejlsberg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tsconfig/hejlsberg.json -------------------------------------------------------------------------------- /src/test/tsconfig/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tsconfig/tsconfig.json -------------------------------------------------------------------------------- /src/test/tsd/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tsd/example.json -------------------------------------------------------------------------------- /src/test/tsdrc/tsdrc-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tsdrc/tsdrc-test.json -------------------------------------------------------------------------------- /src/test/tslint/tslint-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tslint/tslint-test.json -------------------------------------------------------------------------------- /src/test/tslint/tslint-test4.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint-config-unional" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/tsoa/basic.tsoa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tsoa/basic.tsoa.json -------------------------------------------------------------------------------- /src/test/tsoa/test.tsoa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tsoa/test.tsoa.json -------------------------------------------------------------------------------- /src/test/tunnelhub/tunnelhub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/tunnelhub/tunnelhub.yml -------------------------------------------------------------------------------- /src/test/typo3/typo3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/typo3/typo3.yml -------------------------------------------------------------------------------- /src/test/unist/root-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/unist/root-full.json -------------------------------------------------------------------------------- /src/test/unist/void-root.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "root" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/vault/vault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/vault/vault.json -------------------------------------------------------------------------------- /src/test/vector/vector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/vector/vector.json -------------------------------------------------------------------------------- /src/test/vector/vector.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/vector/vector.toml -------------------------------------------------------------------------------- /src/test/vector/vector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/vector/vector.yaml -------------------------------------------------------------------------------- /src/test/vs-nesting/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/vs-nesting/default.json -------------------------------------------------------------------------------- /src/test/vsconfig/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/vsconfig/default.json -------------------------------------------------------------------------------- /src/test/vsext/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/vsext/default.json -------------------------------------------------------------------------------- /src/test/webjob-publish-settings/continuous.json: -------------------------------------------------------------------------------- 1 | { 2 | "runMode": "Continuous" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/webjobs-list/empty-array.json: -------------------------------------------------------------------------------- 1 | { 2 | "WebJobs": [] 3 | } 4 | -------------------------------------------------------------------------------- /src/test/xs-app/xs-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/xs-app/xs-app.json -------------------------------------------------------------------------------- /src/test/yamllint/buildx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/yamllint/buildx.json -------------------------------------------------------------------------------- /src/test/yamllint/jacket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/yamllint/jacket.json -------------------------------------------------------------------------------- /src/test/yamllint/weblate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/yamllint/weblate.json -------------------------------------------------------------------------------- /src/test/zuul/jobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/test/zuul/jobs.yaml -------------------------------------------------------------------------------- /src/vwd.webinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchemaStore/schemastore/HEAD/src/vwd.webinfo --------------------------------------------------------------------------------