json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "notification": { "properties": { "person_id": { "type": "integer" }, "door_id": { "type": "integer" } }, "required": [ "person_id", "door_id" ], "additionalProperties": false } }, "required": [ "notification" ], "additionalProperties": false }
o58915
{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "MyObject": { "type": "object", "properties": { "export": { "$ref": "#/definitions/MyExportString" }, "private": { "type": "string" } }, "required": [ "export", "private" ], "additionalProperties": false }, "MyExportString": { "type": "string" } }, "$ref": "#/definitions/MyObject" }
o17661
{ "additionalProperties": false, "properties": { "displayGroupOnSameAxis": { "description": "Whether the concepts in this group should be displayed on the same axis, or each on their individual axis in the same card.", "type": "boolean" }, "graphType": { "description": "The way the graph should be plotted for this display group. If NONE, then graph will not be displayed.", "enum": [ "SCATTER", "LINE", "DIAGNOSTIC", "MICROBIO", "STEP", "NONE" ], "type": "string" }, "groupName": { "description": "The display name for this clinical concept group.", "type": "string" }, "parentGroupName": { "description": "The name of the parent group that this group should be displayed with. This helps in the case that you want to show multiple resource groups with different graph configurations such as Medication administrations and Medication monitoring.", "type": "string" } }, "required": [ "groupName", "graphType", "displayGroupOnSameAxis" ], "title": "Clinical Concept Display Group", "type": "object" }
o83939
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": { "description": "Adds and removes POSIX capabilities from running containers.", "properties": { "add": { "description": "Added capabilities", "items": { "type": "string" }, "type": "array" }, "drop": { "description": "Removed capabilities", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": { "description": "SELinuxOptions are the labels to be applied to the container", "properties": { "level": { "description": "Level is SELinux level label that applies to the container.", "type": "string" }, "role": { "description": "Role is a SELinux role label that applies to the container.", "type": "string" }, "type": { "description": "Type is a SELinux type label that applies to the container.", "type": "string" }, "user": { "description": "User is a SELinux user label that applies to the container.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": { "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.", "properties": { "gmsaCredentialSpec": { "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.", "type": "string" }, "gmsaCredentialSpecName": { "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", "type": "string" }, "runAsUserName": { "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "string" } }, "type": "object" } }, "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.", "properties": { "allowPrivilegeEscalation": { "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN", "type": [ "boolean", "null" ] }, "capabilities": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities", "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime." }, "privileged": { "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.", "type": [ "boolean", "null" ] }, "procMount": { "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.", "type": [ "string", "null" ] }, "readOnlyRootFilesystem": { "description": "Whether this container has a read-only root filesystem. Default is false.", "type": [ "boolean", "null" ] }, "runAsGroup": { "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "format": "int64", "type": [ "integer", "null" ] }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": [ "boolean", "null" ] }, "runAsUser": { "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "format": "int64", "type": [ "integer", "null" ] }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }
kb_947_Normalized
{ "title": "JSON schema for Renovate config files (https://renovatebot.com/)", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "addLabels": { "description": "Labels to add to Pull Request.", "type": "array", "items": { "type": "string" } }, "additionalBranchPrefix": { "description": "Additional string value to be appended to `branchPrefix`.", "type": "string", "default": "" }, "additionalReviewers": { "description": "Additional reviewers for Pull Requests (in contrast to `reviewers`, this option adds to the existing reviewer list, rather than replacing it).", "type": "array", "items": { "type": "string" } }, "allowCustomCrateRegistries": { "description": "Set this to `true` to allow custom crate registries.", "type": "boolean", "default": false }, "allowPlugins": { "description": "Set this to `true` if repositories are allowed to run install plugins.", "type": "boolean", "default": false }, "allowPostUpgradeCommandTemplating": { "description": "Set this to `false` to disable template compilation for post-upgrade commands.", "type": "boolean", "default": true }, "allowScripts": { "description": "Set this to `true` if repositories are allowed to run install scripts.", "type": "boolean", "default": false }, "allowedPostUpgradeCommands": { "description": "A list of regular expressions that decide which post-upgrade tasks are allowed.", "type": "array", "items": { "type": "string" }, "default": [] }, "ansible": { "description": "Configuration object for the ansible manager", "type": "object", "default": { "fileMatch": [ "(^|/)tasks/[^/]+\\.ya?ml$" ] }, "$ref": "#" }, "ansible-galaxy": { "description": "Configuration object for the ansible-galaxy manager", "type": "object", "default": { "fileMatch": [ "(^|/)requirements\\.ya?ml$", "(^|/)galaxy\\.ya?ml$" ] }, "$ref": "#" }, "argocd": { "description": "Configuration object for the argocd manager", "type": "object", "default": { "fileMatch": [] }, "$ref": "#" }, "asdf": { "description": "Configuration object for the asdf manager", "type": "object", "default": { "fileMatch": [ "(^|/)\\.tool-versions$" ] }, "$ref": "#" }, "assignAutomerge": { "description": "Assign reviewers and assignees even if the PR is to be automerged.", "type": "boolean", "default": false }, "assignees": { "description": "Assignees for Pull Request (either username or email address depending on the platform).", "type": "array", "items": { "type": "string" } }, "assigneesFromCodeOwners": { "description": "Determine assignees based on configured code owners and changes in PR.", "type": "boolean", "default": false }, "assigneesSampleSize": { "description": "Take a random sample of given size from `assignees`.", "type": "integer", "default": null }, "autoApprove": { "description": "Set to `true` to automatically approve PRs.", "type": "boolean", "default": false }, "autoReplaceGlobalMatch": { "description": "Control whether replacement regular expressions are global matches or only the first match.", "type": "boolean", "default": true }, "autodiscover": { "description": "Autodiscover all repositories.", "type": "boolean", "default": false }, "autodiscoverFilter": { "description": "Filter the list of autodiscovered repositories.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ], "default": null }, "autodiscoverTopics": { "description": "Filter the list of autodiscovered repositories by topics.", "type": "array", "items": { "type": "string" }, "default": null }, "automerge": { "description": "Whether to automerge branches/PRs automatically, without human intervention.", "type": "boolean", "default": false }, "automergeComment": { "description": "PR comment to add to trigger automerge. Only used if `automergeType=pr-comment`.", "type": "string", "default": "automergeComment" }, "automergeSchedule": { "description": "Limit automerge to these times of day or week.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ], "default": [ "at any time" ] }, "automergeStrategy": { "description": "The merge strategy to use when automerging PRs. Used only if `automergeType=pr`.", "type": "string", "enum": [ "auto", "fast-forward", "merge-commit", "rebase", "squash" ], "default": "auto" }, "automergeType": { "description": "How to automerge, if enabled.", "type": "string", "enum": [ "branch", "pr", "pr-comment" ], "default": "pr" }, "azure-pipelines": { "description": "Configuration object for the azure-pipelines manager", "type": "object", "default": { "fileMatch": [ "azure.*pipelines?.*\\.ya?ml$" ], "enabled": false }, "$ref": "#" }, "azureWorkItemId": { "description": "The id of an existing work item on Azure Boards to link to each PR.", "type": "integer", "default": 0 }, "baseBranches": { "description": "List of one or more custom base branches defined as exact strings and/or via regex expressions.", "type": "array", "items": { "type": "string" } }, "baseDir": { "description": "The base directory for Renovate to store local files, including repository files and cache. If left empty, Renovate will create its own temporary directory to use.", "type": "string" }, "batect": { "description": "Configuration object for the batect manager", "type": "object", "default": { "fileMatch": [ "(^|/)batect(-bundle)?\\.ya?ml$" ] }, "$ref": "#" }, "batect-wrapper": { "description": "Configuration object for the batect-wrapper manager", "type": "object", "default": { "fileMatch": [ "(^|/)batect$" ], "versioning": "semver" }, "$ref": "#" }, "bazel": { "description": "Configuration object for the bazel manager", "type": "object", "default": { "fileMatch": [ "(^|/)WORKSPACE(|\\.bazel)$", "\\.bzl$" ] }, "$ref": "#" }, "bazel-module": { "description": "Configuration object for the bazel-module manager", "type": "object", "default": { "fileMatch": [ "(^|/)MODULE\\.bazel$" ] }, "$ref": "#" }, "bazelisk": { "description": "Configuration object for the bazelisk manager", "type": "object", "default": { "fileMatch": [ "(^|/)\\.bazelversion$" ], "pinDigests": false, "versioning": "semver" }, "$ref": "#" }, "bbUseDefaultReviewers": { "description": "Use the default reviewers (Bitbucket only).", "type": "boolean", "default": true }, "bbUseDevelopmentBranch": { "description": "Use the repository's [development branch](https://support.atlassian.com/bitbucket-cloud/docs/branch-a-repository/#The-branching-model) as the repository's default branch.", "type": "boolean", "default": false }, "bicep": { "description": "Configuration object for the bicep manager", "type": "object", "default": { "fileMatch": [ "\\.bicep$" ] }, "$ref": "#" }, "binarySource": { "description": "Controls how third-party tools like npm or Gradle are called: directly, via Docker sidecar containers, or via dynamic install.", "type": "string", "enum": [ "global", "docker", "install", "hermit" ], "default": "install" }, "bitbucket-pipelines": { "description": "Configuration object for the bitbucket-pipelines manager", "type": "object", "default": { "fileMatch": [ "(^|/)\\.?bitbucket-pipelines\\.ya?ml$" ] }, "$ref": "#" }, "branchConcurrentLimit": { "description": "Limit to a maximum of x concurrent branches. 0 means no limit, `null` (default) inherits value from `prConcurrentLimit`.", "type": "integer", "default": null }, "branchName": { "description": "Branch name template.", "type": "string", "default": "{{{branchPrefix}}}{{{additionalBranchPrefix}}}{{{branchTopic}}}" }, "branchNameStrict": { "description": "Whether to be strict about the use of special characters within the branch name.", "type": "boolean", "default": false }, "branchPrefix": { "description": "Prefix to use for all branch names.", "type": "string", "default": "renovate/" }, "branchPrefixOld": { "description": "Old branchPrefix value to check for existing PRs.", "type": "string", "default": "renovate/" }, "branchTopic": { "description": "Branch topic.", "type": "string", "default": "{{{depNameSanitized}}}-{{{newMajor}}}{{#if separateMinorPatch}}{{#if isPatch}}.{{{newMinor}}}{{/if}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}" }, "buildkite": { "description": "Configuration object for the buildkite manager", "type": "object", "default": { "fileMatch": [ "buildkite\\.ya?ml", "\\.buildkite/.+\\.ya?ml$" ], "commitMessageTopic": "buildkite plugin {{depName}}", "commitMessageExtra": "to {{#if isMajor}}{{{prettyNewMajor}}}{{else}}{{{newValue}}}{{/if}}" }, "$ref": "#" }, "bumpVersion": { "description": "Bump the version in the package file being updated.", "type": "string", "enum": [ "major", "minor", "patch", "prerelease" ] }, "bundler": { "description": "Configuration object for the bundler manager", "type": "object", "default": { "fileMatch": [ "(^|/)Gemfile$" ], "versioning": "ruby" }, "$ref": "#" }, "cacheDir": { "description": "The directory where Renovate stores its cache. If left empty, Renovate creates a subdirectory within the `baseDir`.", "type": "string" }, "cacheHardTtlMinutes": { "description": "Maximum duration in minutes to keep datasource cache entries.", "type": "integer", "default": 1440 }, "cake": { "description": "Configuration object for the cake manager", "type": "object", "default": { "fileMatch": [ "\\.cake$" ] }, "$ref": "#" }, "cargo": { "description": "Configuration object for the cargo manager", "type": "object", "default": { "commitMessageTopic": "Rust crate {{depName}}", "fileMatch": [ "(^|/)Cargo\\.toml$" ], "versioning": "cargo" }, "$ref": "#" }, "cdnurl": { "description": "Configuration object for the cdnurl manager", "type": "object", "default": { "fileMatch": [], "versioning": "semver" }, "$ref": "#" }, "checkedBranches": { "description": "A list of branch names to mark for creation or rebasing as if it was selected in the Dependency Dashboard issue.", "type": "array", "items": { "type": "string" }, "default": [] }, "circleci": { "description": "Configuration object for the circleci manager", "type": "object", "default": { "fileMatch": [ "(^|/)\\.circleci/config\\.ya?ml$" ] }, "$ref": "#" }, "cloneSubmodules": { "description": "Set to `true` to initialize submodules during repository clone.", "type": "boolean", "default": false }, "cloudbuild": { "description": "Configuration object for the cloudbuild manager", "type": "object", "default": { "fileMatch": [ "(^|/)cloudbuild\\.ya?ml" ] }, "$ref": "#" }, "cocoapods": { "description": "Configuration object for the cocoapods manager", "type": "object", "default": { "fileMatch": [ "(^|/)Podfile$" ], "versioning": "ruby" }, "$ref": "#" }, "commitBody": { "description": "Commit message body template. Will be appended to commit message, separated by two line returns.", "type": "string" }, "commitBodyTable": { "description": "If enabled, append a table in the commit message body describing all updates in the commit.", "type": "boolean", "default": false }, "commitMessage": { "description": "Message to use for commit messages and pull request titles.", "type": "string", "default": "{{{commitMessagePrefix}}} {{{commitMessageAction}}} {{{commitMessageTopic}}} {{{commitMessageExtra}}} {{{commitMessageSuffix}}}" }, "commitMessageAction": { "description": "Action verb to use in commit messages and PR titles.", "type": "string", "default": "Update" }, "commitMessageExtra": { "description": "Extra description used after the commit message topic - typically the version.", "type": "string", "default": "to {{#if isPinDigest}}{{{newDigestShort}}}{{else}}{{#if isMajor}}{{prettyNewMajor}}{{else}}{{#if isSingleVersion}}{{prettyNewVersion}}{{else}}{{#if newValue}}{{{newValue}}}{{else}}{{{newDigestShort}}}{{/if}}{{/if}}{{/if}}{{/if}}" }, "commitMessageLowerCase": { "description": "Lowercase PR- and commit titles.", "type": "string", "enum": [ "auto", "never" ], "default": "auto" }, "commitMessagePrefix": { "description": "Prefix to add to start of commit messages and PR titles. Uses a semantic prefix if `semanticCommits` is enabled.", "type": "string" }, "commitMessageSuffix": { "description": "Suffix to add to end of commit messages and PR titles.", "type": "string" }, "commitMessageTopic": { "description": "The upgrade topic/noun used in commit messages and PR titles.", "type": "string", "default": "dependency {{depName}}" }, "composer": { "description": "Configuration object for the composer manager", "type": "object", "default": { "fileMatch": [ "(^|/)([\\w-]*)composer\\.json$" ], "versioning": "composer" }, "$ref": "#" }, "composerIgnorePlatformReqs": { "description": "Configure use of `--ignore-platform-reqs` or `--ignore-platform-req` for the Composer package manager.", "type": "array", "items": { "type": "string" }, "default": [] }, "conan": { "description": "Configuration object for the conan manager", "type": "object", "default": { "fileMatch": [ "(^|/)conanfile\\.(txt|py)$" ], "datasource": "conan", "versioning": "conan", "enabled": false }, "$ref": "#" }, "confidential": { "description": "If enabled, issues created by Renovate are set as confidential.", "type": "boolean", "default": false }, "configMigration": { "description": "Enable this to get config migration PRs when needed.", "type": "boolean", "default": false }, "configWarningReuseIssue": { "description": "Set this to `false` to make Renovate create a new issue for each config warning, instead of reopening or reusing an existing issue.", "type": "boolean", "default": true }, "constraints": { "description": "Configuration object to define language or manager version constraints.", "type": "object", "default": {}, "$ref": "#" }, "constraintsFiltering": { "description": "Perform release filtering based on language constraints.", "type": "string", "enum": [ "none", "strict" ], "default": "none" }, "containerbaseDir": { "description": "The directory where Renovate stores its containerbase cache. If left empty, Renovate creates a subdirectory within the `cacheDir`.", "type": "string" }, "cpanfile": { "description": "Configuration object for the cpanfile manager", "type": "object", "default": { "fileMatch": [ "(^|/)cpanfile$" ] }, "$ref": "#" }, "customDatasources": { "description": "Defines custom datasources for usage by managers", "type": "object", "default": {}, "$ref": "#", "items": { "allOf": [ { "type": "object", "properties": { "description": { "type": "string", "description": "A custom description for this configuration object" }, "defaultRegistryUrlTemplate": { "description": "Template for generating a defaultRegistryUrl for custom datasource", "type": "string", "default": "" }, "format": { "description": "Format of the custom datasource", "type": "string", "enum": [ "json", "plain" ], "default": "json" }, "transformTemplates": { "description": "List of jsonata transformation rules", "type": "array", "items": { "type": "string" }, "default": [] } } } ] } }, "customEnvVariables": { "description": "Custom environment variables for child processes and sidecar Docker containers.", "type": "object", "default": {}, "$ref": "#" }, "customizeDashboard": { "description": "Customize sections in the dependency dashboard issue.", "type": "object", "default": {}, "additionalProperties": { "type": "string" }, "$ref": "#" }, "defaultRegistryUrls": { "description": "List of registry URLs to use as the default for a datasource.", "type": "array", "items": { "type": "string" }, "default": null }, "dependencyDashboard": { "description": "Whether to create a \"Dependency Dashboard\" issue in the repository.", "type": "boolean", "default": false }, "dependencyDashboardApproval": { "description": "Controls if updates need manual approval from the Dependency Dashboard issue before PRs are created.", "type": "boolean", "default": false }, "dependencyDashboardAutoclose": { "description": "Set to `true` to let Renovate close the Dependency Dashboard issue if there are no more updates.", "type": "boolean", "default": false }, "dependencyDashboardFooter": { "description": "Any text added here will be placed last in the Dependency Dashboard issue body, with a divider separator before it.", "type": "string" }, "dependencyDashboardHeader": { "description": "Any text added here will be placed first in the Dependency Dashboard issue body.", "type": "string", "default": "This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more." }, "dependencyDashboardLabels": { "description": "These labels will always be applied on the Dependency Dashboard issue, even when they have been removed manually.", "type": "array", "items": { "type": "string" }, "default": null }, "dependencyDashboardOSVVulnerabilitySummary": { "description": "Control if the Dependency Dashboard issue lists CVEs supplied by [osv.dev](https://osv.dev).", "type": "string", "enum": [ "none", "all", "unresolved" ], "default": "none" }, "dependencyDashboardTitle": { "description": "Title for the Dependency Dashboard issue.", "type": "string", "default": "Dependency Dashboard" }, "deps-edn": { "description": "Configuration object for the deps-edn manager", "type": "object", "default": { "fileMatch": [ "(^|/)(?:deps|bb)\\.edn$" ], "versioning": "maven" }, "$ref": "#" }, "description": { "description": "Plain text description for a config or preset.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "detectGlobalManagerConfig": { "description": "If `true`, Renovate tries to detect global manager configuration from the file system.", "type": "boolean", "default": false }, "detectHostRulesFromEnv": { "description": "If `true`, Renovate tries to detect host rules from environment variables.", "type": "boolean", "default": false }, "digest": { "description": "Configuration to apply when updating a digest (no change in tag/version).", "type": "object", "default": { "branchTopic": "{{{depNameSanitized}}}-digest", "commitMessageExtra": "to {{newDigestShort}}", "commitMessageTopic": "{{{depName}}} digest" }, "$ref": "#" }, "docker-compose": { "description": "Configuration object for the docker-compose manager", "type": "object", "default": { "fileMatch": [ "(^|/)(?:docker-)?compose[^/]*\\.ya?ml$" ] }, "$ref": "#" }, "dockerChildPrefix": { "description": "Change this value to add a prefix to the Renovate Docker sidecar container names and labels.", "type": "string", "default": "renovate_" }, "dockerCliOptions": { "description": "Pass CLI flags to `docker run` command when `binarySource=docker`.", "type": "string" }, "dockerSidecarImage": { "description": "Change this value to override the default Renovate sidecar image.", "type": "string", "default": "ghcr.io/containerbase/sidecar:9.17.1" }, "dockerUser": { "description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.", "type": "string" }, "dockerfile": { "description": "Configuration object for the dockerfile manager", "type": "object", "default": { "fileMatch": [ "(^|/|\\.)([Dd]ocker|[Cc]ontainer)file$", "(^|/)([Dd]ocker|[Cc]ontainer)file[^/]*$" ] }, "$ref": "#" }, "draftPR": { "description": "If set to `true` then Renovate creates draft PRs, instead of normal status PRs.", "type": "boolean", "default": false }, "droneci": { "description": "Configuration object for the droneci manager", "type": "object", "default": { "fileMatch": [ "(^|/)\\.drone\\.yml$" ] }, "$ref": "#" }, "dryRun": { "description": "If enabled, perform a dry run by logging messages instead of creating/updating/deleting branches and PRs.", "type": "string", "enum": [ "extract", "lookup", "full" ], "default": null }, "enabled": { "description": "Enable or disable Renovate bot.", "type": "boolean" }, "enabledManagers": { "description": "A list of package managers to enable. Only managers on the list are enabled.", "type": "array", "items": { "type": "string" } }, "encrypted": { "description": "An object containing configuration encrypted with project key.", "type": "object", "default": null, "$ref": "#" }, "endpoint": { "description": "Custom endpoint to use.", "type": "string", "default": null }, "excludeCommitPaths": { "description": "A file matching any of these glob patterns will not be committed, even if the file has been updated.", "type": "array", "items": { "type": "string" }, "default": [] }, "executionTimeout": { "description": "Default execution timeout in minutes for child processes Renovate creates.", "type": "integer", "default": 15 }, "exposeAllEnv": { "description": "Set this to `true` to allow passing of all environment variables to package managers.", "type": "boolean", "default": false }, "extends": { "description": "Configuration presets to use or extend.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "extractVersion": { "description": "A regex (`re2`) to extract a version from a datasource's raw version string.", "type": "string", "format": "regex" }, "fetchReleaseNotes": { "description": "Controls if and when release notes are fetched.", "type": "string", "enum": [ "off", "branch", "pr" ], "default": "pr" }, "fileMatch": { "description": "RegEx (`re2`) pattern for matching manager files.", "oneOf": [ { "type": "array", "items": { "type": "string", "format": "regex" } }, { "type": "string", "format": "regex" } ] }, "filterUnavailableUsers": { "description": "Filter reviewers and assignees based on their availability.", "type": "boolean", "default": false }, "fleet": { "description": "Configuration object for the fleet manager", "type": "object", "default": { "fileMatch": [ "(^|/)fleet\\.ya?ml" ] }, "$ref": "#" }, "flux": { "description": "Configuration object for the flux manager", "type": "object", "default": { "fileMatch": [ "(^|/)flux-system/(?:.+/)?gotk-components\\.ya?ml$" ] }, "$ref": "#" }, "followTag": { "description": "If defined, packages will follow this release tag exactly.", "type": "string" }, "force": { "description": "Any configuration set in this object will force override existing settings.", "type": "object", "$ref": "#" }, "forceCli": { "description": "Decides if CLI configuration options are moved to the `force` config section.", "type": "boolean", "default": true }, "forkModeDisallowMaintainerEdits": { "description": "Disallow maintainers to push to Renovate pull requests when running in fork mode.", "type": "boolean", "default": false }, "forkOrg": { "description": "The preferred organization to create or find forked repositories, when in fork mode.", "type": "string" }, "forkProcessing": { "description": "Whether to process forked repositories. By default, all forked repositories are skipped when in `autodiscover` mode.", "type": "string", "enum": [ "auto", "enabled", "disabled" ], "default": "auto" }, "forkToken": { "description": "Set a personal access token here to enable \"fork mode\".", "type": "string" }, "fvm": { "description": "Configuration object for the fvm manager", "type": "object", "default": { "fileMatch": [ "(^|/)\\.fvm/fvm_config\\.json$" ], "versioning": "semver" }, "$ref": "#" }, "git-submodules": { "description": "Configuration object for the git-submodules manager", "type": "object", "default": { "enabled": false, "versioning": "git", "fileMatch": [ "(^|/)\\.gitmodules$" ] }, "$ref": "#" }, "gitAuthor": { "description": "Author to use for Git commits. Must conform to [RFC5322](https://datatracker.ietf.org/doc/html/rfc5322).", "type": "string" }, "gitIgnoredAuthors": { "description": "Git authors which are ignored by Renovate. Must conform to [RFC5322](https://datatracker.ietf.org/doc/html/rfc5322).", "type": "array", "items": { "type": "string" } }, "gitLabIgnoreApprovals": { "description": "Ignore approval rules for MRs created by Renovate, which is useful for automerge.", "type": "boolean", "default": false }, "gitNoVerify": { "description": "Which Git commands will be run with the `--no-verify` option.", "oneOf": [ { "type": "array", "items": { "type": "string", "enum": [ "commit", "push" ] } }, { "type": "string", "enum": [ "commit", "push" ] } ], "default": [ "commit", "push" ] }, "gitPrivateKey": { "description": "PGP key to use for signing Git commits.", "type": "string" }, "gitTimeout": { "description": "Configure the timeout with a number of milliseconds to wait for a Git task.", "type": "integer", "default": 0 }, "gitUrl": { "description": "Overrides the default resolution for Git remote, e.g. to switch GitLab from HTTPS to SSH-based.", "type": "string", "enum": [ "default", "ssh", "endpoint" ], "default": "default" }, "github-actions": { "description": "Configuration object for the github-actions manager", "type": "object", "default": { "fileMatch": [ "^(workflow-templates|\\.github/workflows)/[^/]+\\.ya?ml$", "(^|/)action\\.ya?ml$" ] }, "$ref": "#" }, "githubTokenWarn": { "description": "Display warnings about GitHub token not being set.", "type": "boolean", "default": true }, "gitlabci": { "description": "Configuration object for the gitlabci manager", "type": "object", "default": { "fileMatch": [ "\\.gitlab-ci\\.ya?ml$" ] }, "$ref": "#" }, "gitlabci-include": { "description": "Configuration object for the gitlabci-include manager", "type": "object", "default": { "fileMatch": [ "\\.gitlab-ci\\.ya?ml$" ] }, "$ref": "#" }, "globalExtends": { "description": "Configuration presets to use or extend for a self-hosted config.", "type": "array", "items": { "type": "string" } }, "goGetDirs": { "description": "Directory pattern to run `go get` on", "type": "array", "items": { "type": "string" }, "default": [ "./..." ] }, "gomod": { "description": "Configuration object for the gomod manager", "type": "object", "default": { "fileMatch": [ "(^|/)go\\.mod$" ], "pinDigests": false }, "$ref": "#" }, "gradle": { "description": "Configuration object for the gradle manager", "type": "object", "default": { "fileMatch": [ "\\.gradle(\\.kts)?$", "(^|/)gradle\\.properties$", "(^|/)gradle/.+\\.toml$", "(^|/)buildSrc/.+\\.kt$", "\\.versions\\.toml$", "(^|/)versions.props$", "(^|/)versions.lock$" ], "timeout": 600, "versioning": "gradle" }, "$ref": "#" }, "gradle-wrapper": { "description": "Configuration object for the gradle-wrapper manager", "type": "object", "default": { "fileMatch": [ "(^|/)gradle/wrapper/gradle-wrapper\\.properties$" ], "versioning": "gradle" }, "$ref": "#" }, "group": { "description": "Config if `groupName` is enabled.", "type": "object", "default": { "branchTopic": "{{{groupSlug}}}", "commitMessageTopic": "{{{groupName}}}" }, "$ref": "#" }, "groupName": { "description": "Human understandable name for the dependency group.", "type": "string", "default": null }, "groupSlug": { "description": "Slug to use for group (e.g. in branch name). Slug is calculated from `groupName` if `null`.", "type": "string", "default": null }, "hashedBranchLength": { "description": "If enabled, branch names will use a hashing function to ensure each branch has that length.", "type": "integer", "default": null }, "helm-requirements": { "description": "Configuration object for the helm-requirements manager", "type": "object", "default": { "registryAliases": { "stable": "https://charts.helm.sh/stable" }, "commitMessageTopic": "helm chart {{depName}}", "fileMatch": [ "(^|/)requirements\\.ya?ml$" ] }, "$ref": "#" }, "helm-values": { "description": "Configuration object for the helm-values manager", "type": "object", "default": { "commitMessageTopic": "helm values {{depName}}", "fileMatch": [ "(^|/)values\\.ya?ml$" ], "pinDigests": false }, "$ref": "#" }, "helmfile": { "description": "Configuration object for the helmfile manager", "type": "object", "default": { "registryAliases": { "stable": "https://charts.helm.sh/stable" }, "commitMessageTopic": "helm chart {{depName}}", "fileMatch": [ "(^|/)helmfile\\.ya?ml$" ] }, "$ref": "#" }, "helmsman": { "description": "Configuration object for the helmsman manager", "type": "object", "default": { "fileMatch": [] }, "$ref": "#" }, "helmv3": { "description": "Configuration object for the helmv3 manager", "type": "object", "default": { "registryAliases": { "stable": "https://charts.helm.sh/stable" }, "commitMessageTopic": "helm chart {{depName}}", "fileMatch": [ "(^|/)Chart\\.ya?ml$" ] }, "$ref": "#" }, "hermit": { "description": "Configuration object for the hermit manager", "type": "object", "default": { "fileMatch": [ "(^|/)bin/hermit$" ], "excludeCommitPaths": [ "**/bin/hermit" ], "versioning": "hermit" }, "$ref": "#" }, "homebrew": { "description": "Configuration object for the homebrew manager", "type": "object", "default": { "commitMessageTopic": "Homebrew Formula {{depName}}", "fileMatch": [ "^Formula/[^/]+[.]rb$" ] }, "$ref": "#" }, "hostRules": { "description": "Host rules/configuration including credentials.", "type": "array", "items": { "allOf": [ { "type": "object", "properties": { "description": { "type": "string", "description": "A custom description for this configuration object" }, "abortIgnoreStatusCodes": { "description": "A list of HTTP status codes safe to ignore even when `abortOnError=true`.", "type": "array", "items": { "type": "number" } }, "abortOnError": { "description": "If enabled, Renovate aborts its run when HTTP request errors occur.", "type": "boolean", "default": false }, "artifactAuth": { "description": "A list of package managers to enable artifact auth. Only managers on the list are enabled. All are enabled if `null`", "type": "array", "items": { "type": "string", "enum": [ "composer" ] }, "default": null }, "authType": { "description": "Authentication type for HTTP header. e.g. `\"Bearer\"` or `\"Basic\"`. Use `\"Token-Only\"` to use only the token without an authorization type.", "type": "string", "default": "Bearer" }, "concurrentRequestLimit": { "description": "Limit concurrent requests per host.", "type": "integer", "default": null }, "dnsCache": { "description": "Enable got DNS cache.", "type": "boolean", "default": false }, "enableHttp2": { "description": "Enable got HTTP/2 support.", "type": "boolean", "default": false }, "hostType": { "description": "hostType for a package rule. Can be a platform name or a datasource name.", "type": "string" }, "insecureRegistry": { "description": "Explicitly turn on insecure Docker registry access (HTTP).", "type": "boolean" }, "keepalive": { "description": "Enable HTTP keepalives for hosts.", "type": "boolean", "default": false }, "matchHost": { "description": "A domain name, host name or base URL to match against.", "type": "string" }, "maxRequestsPerSecond": { "description": "Limit requests rate per host.", "type": "integer", "default": 0 }, "timeout": { "description": "Timeout (in milliseconds) for queries to external endpoints.", "type": "integer" } } } ] }, "default": [ { "timeout": 60000 } ] }, "html": { "description": "Configuration object for the html manager", "type": "object", "default": { "fileMatch": [ "\\.html?$" ], "versioning": "semver", "digest": { "enabled": false }, "pinDigests": false }, "$ref": "#" }, "ignoreDeprecated": { "description": "Avoid upgrading from a non-deprecated version to a deprecated one.", "type": "boolean", "default": true }, "ignoreDeps": { "description": "Dependencies to ignore.", "type": "array", "items": { "type": "string" } }, "ignorePaths": { "description": "Skip any package file whose path matches one of these. Can be a string or glob pattern.", "type": "array", "items": { "type": "string" }, "default": [ "**/node_modules/**", "**/bower_components/**" ] }, "ignorePlugins": { "description": "Set this to `true` if `allowPlugins=true` but you wish to skip running plugins when updating lock files.", "type": "boolean", "default": false }, "ignorePrAuthor": { "description": "Set to `true` to fetch the entire list of PRs instead of only those authored by the Renovate user.", "type": "boolean", "default": false }, "ignorePresets": { "description": "A list of presets to ignore, including any that are nested inside an `extends` array.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "ignoreReviewers": { "description": "Reviewers to be ignored in PR reviewers presence (either username or email address depending on the platform).", "type": "array", "items": { "type": "string" } }, "ignoreScripts": { "description": "Set this to `false` if `allowScripts=true` and you wish to run scripts when updating lock files.", "type": "boolean", "default": true }, "ignoreTests": { "description": "Set to `true` to enable automerging without tests.", "type": "boolean", "default": false }, "ignoreUnstable": { "description": "Ignore versions with unstable SemVer.", "type": "boolean" }, "includeMirrors": { "description": "Whether to process repositories that are mirrors. By default, repositories that are mirrors are skipped.", "type": "boolean", "default": false }, "includePaths": { "description": "Include package files only within these defined paths.", "type": "array", "items": { "type": "string" }, "default": [] }, "internalChecksAsSuccess": { "description": "Whether to consider passing internal checks such as `minimumReleaseAge` when determining branch status.", "type": "boolean", "default": false }, "internalChecksFilter": { "description": "When and how to filter based on internal checks.", "type": "string", "enum": [ "strict", "flexible", "none" ], "default": "strict" }, "jenkins": { "description": "Configuration object for the jenkins manager", "type": "object", "default": { "fileMatch": [ "(^|/)plugins\\.(txt|ya?ml)$" ] }, "$ref": "#" }, "jsonnet-bundler": { "description": "Configuration object for the jsonnet-bundler manager", "type": "object", "default": { "fileMatch": [ "(^|/)jsonnetfile\\.json$" ], "datasource": "git-tags" }, "$ref": "#" }, "kotlin-script": { "description": "Configuration object for the kotlin-script manager", "type": "object", "default": { "fileMatch": [ "^.+\\.main\\.kts$" ] }, "$ref": "#" }, "kubernetes": { "description": "Configuration object for the kubernetes manager", "type": "object", "default": { "fileMatch": [] }, "$ref": "#" }, "kustomize": { "description": "Configuration object for the kustomize manager", "type": "object", "default": { "fileMatch": [ "(^|/)kustomization\\.ya?ml$" ], "pinDigests": false }, "$ref": "#" }, "labels": { "description": "Labels to set in Pull Request.", "type": "array", "items": { "type": "string" } }, "leiningen": { "description": "Configuration object for the leiningen manager", "type": "object", "default": { "fileMatch": [ "(^|/)project\\.clj$" ], "versioning": "maven" }, "$ref": "#" }, "lockFileMaintenance": { "description": "Configuration for lock file maintenance.", "type": "object", "default": { "enabled": false, "recreateWhen": "always", "rebaseStalePrs": true, "branchTopic": "lock-file-maintenance", "commitMessageAction": "Lock file maintenance", "commitMessageTopic": null, "commitMessageExtra": null, "schedule": [ "before 4am on monday" ], "groupName": null, "prBodyDefinitions": { "Change": "All locks refreshed" } }, "$ref": "#" }, "logContext": { "description": "Add a global or per-repo log context to each log entry.", "type": "string", "default": null }, "logFile": { "description": "Log file path.", "type": "string" }, "logFileLevel": { "description": "Set the log file log level.", "type": "string", "default": "debug" }, "major": { "description": "Configuration to apply when an update type is `major`.", "type": "object", "default": {}, "$ref": "#" }, "maven": { "description": "Configuration object for the maven manager", "type": "object", "default": { "fileMatch": [ "(^|/|\\.)pom\\.xml$", "^(((\\.mvn)|(\\.m2))/)?settings\\.xml$" ], "versioning": "maven" }, "$ref": "#" }, "maven-wrapper": { "description": "Configuration object for the maven-wrapper manager", "type": "object", "default": { "fileMatch": [ "(^|\\/).mvn/wrapper/maven-wrapper.properties$" ], "versioning": "maven" }, "$ref": "#" }, "meteor": { "description": "Configuration object for the meteor manager", "type": "object", "default": { "fileMatch": [ "(^|/)package\\.js$" ] }, "$ref": "#" }, "migratePresets": { "description": "Define presets here which have been removed or renamed and should be migrated automatically.", "type": "object", "default": {}, "additionalProperties": { "type": "string" }, "$ref": "#" }, "minimumReleaseAge": { "description": "Time required before a new release is considered stable.", "type": "string", "default": null }, "minor": { "description": "Configuration to apply when an update type is `minor`.", "type": "object", "default": {}, "$ref": "#" }, "mint": { "description": "Configuration object for the mint manager", "type": "object", "default": { "fileMatch": [ "(^|/)Mintfile$" ] }, "$ref": "#" }, "mix": { "description": "Configuration object for the mix manager", "type": "object", "default": { "fileMatch": [ "(^|/)mix\\.exs$" ], "versioning": "hex" }, "$ref": "#" }, "nix": { "description": "Configuration object for the nix manager", "type": "object", "default": { "fileMatch": [ "(^|/)flake\\.nix$" ], "commitMessageTopic": "nixpkgs", "commitMessageExtra": "to {{newValue}}", "enabled": false }, "$ref": "#" }, "nodenv": { "description": "Configuration object for the nodenv manager", "type": "object", "default": { "fileMatch": [ "(^|/)\\.node-version$" ], "versioning": "node" }, "$ref": "#" }, "npm": { "description": "Configuration object for the npm manager", "type": "object", "default": { "fileMatch": [ "(^|/)package\\.json$" ], "versioning": "npm", "digest": { "prBodyDefinitions": { "Change": "{{#if displayFrom}}`{{{displayFrom}}}` -> {{else}}{{#if currentValue}}`{{{currentValue}}}` -> {{/if}}{{/if}}{{#if displayTo}}`{{{displayTo}}}`{{else}}`{{{newValue}}}`{{/if}}" } }, "prBodyDefinitions": { "Change": "[{{#if displayFrom}}`{{{displayFrom}}}` -> {{else}}{{#if currentValue}}`{{{currentValue}}}` -> {{/if}}{{/if}}{{#if displayTo}}`{{{displayTo}}}`{{else}}`{{{newValue}}}`{{/if}}]({{#if depName}}https://renovatebot.com/diffs/npm/{{replace '/' '%2f' depName}}/{{{currentVersion}}}/{{{newVersion}}}{{/if}})" } }, "$ref": "#" }, "npmToken": { "description": "npm token used to authenticate with the default registry.", "type": "string" }, "npmrc": { "description": "String copy of `.npmrc` file. Use `\\n` instead of line breaks.", "type": "string" }, "npmrcMerge": { "description": "Whether to merge `config.npmrc` with repo `.npmrc` content if both are found.", "type": "boolean", "default": false }, "nuget": { "description": "Configuration object for the nuget manager", "type": "object", "default": { "fileMatch": [ "\\.(?:cs|fs|vb)proj$", "\\.(?:props|targets)$", "(^|/)dotnet-tools\\.json$", "(^|/)global\\.json$" ] }, "$ref": "#" }, "nvm": { "description": "Configuration object for the nvm manager", "type": "object", "default": { "fileMatch": [ "(^|/)\\.nvmrc$" ], "versioning": "node", "pinDigests": false }, "$ref": "#" }, "onboarding": { "description": "Require a Configuration PR first.", "type": "boolean" }, "onboardingBranch": { "description": "Change this value to override the default onboarding branch name.", "type": "string", "default": "renovate/configure" }, "onboardingCommitMessage": { "description": "Change this value to override the default onboarding commit message.", "type": "string", "default": null }, "onboardingConfig": { "description": "Configuration to use for onboarding PRs.", "type": "object", "default": { "$schema": "https://docs.renovatebot.com/renovate-schema.json" }, "$ref": "#" }, "onboardingConfigFileName": { "description": "Change this value to override the default onboarding config file name.", "type": "string", "default": "renovate.json" }, "onboardingNoDeps": { "description": "Onboard the repository even if no dependencies are found.", "type": "boolean", "default": false }, "onboardingPrTitle": { "description": "Change this value to override the default onboarding PR title.", "type": "string", "default": "Configure Renovate" }, "onboardingRebaseCheckbox": { "description": "Set to enable rebase/retry markdown checkbox for onboarding PRs.", "type": "boolean", "default": false }, "optimizeForDisabled": { "description": "Set to `true` to perform a check for disabled config prior to cloning.", "type": "boolean", "default": false }, "osgi": { "description": "Configuration object for the osgi manager", "type": "object", "default": { "fileMatch": [ "(^|/)src/main/features/.+\\.json$" ] }, "$ref": "#" }, "osvVulnerabilityAlerts": { "description": "Use vulnerability alerts from `osv.dev`.", "type": "boolean", "default": false }, "packageRules": { "description": "Rules for matching packages.", "type": "array", "items": { "allOf": [ { "type": "object", "properties": { "description": { "type": "string", "description": "A custom description for this configuration object" }, "allowedVersions": { "description": "A version range or regex pattern capturing allowed versions for dependencies.", "type": "string" }, "customChangelogUrl": { "description": "If set, Renovate will use this URL to fetch changelogs for a matched dependency. Valid only within a `packageRules` object.", "type": "string" }, "excludeDepNames": { "description": "Dep names to exclude. Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "excludeDepPatterns": { "description": "Dep name patterns to exclude. Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string", "format": "regex" } }, { "type": "string", "format": "regex" } ] }, "excludePackageNames": { "description": "Package names to exclude. Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "excludePackagePatterns": { "description": "Package name patterns to exclude. Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string", "format": "regex" } }, { "type": "string", "format": "regex" } ] }, "excludePackagePrefixes": { "description": "Package name prefixes to exclude. Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "excludeRepositories": { "description": "List of repositories to exclude (e.g. `[\"**/*-archived\"]`). Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "matchBaseBranches": { "description": "List of strings containing exact matches (e.g. `[\"main\"]`) and/or regex expressions (e.g. `[\"/^release/.*/\"]`). Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "matchCategories": { "description": "List of categories to match (for example: `[\"python\"]`). Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "matchConfidence": { "description": "Merge confidence levels to match against (`low`, `neutral`, `high`, `very high`). Valid only within `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string", "enum": [ "low", "neutral", "high", "very high" ] } }, { "type": "string", "enum": [ "low", "neutral", "high", "very high" ] } ] }, "matchCurrentValue": { "description": "A regex to match against the raw `currentValue` string of a dependency. Valid only within a `packageRules` object.", "type": "string" }, "matchCurrentVersion": { "description": "A version or range of versions to match against the current version of a package. Valid only within a `packageRules` object.", "type": "string" }, "matchDatasources": { "description": "List of datasources to match (e.g. `[\"orb\"]`). Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "matchDepNames": { "description": "Dep names to match. Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "matchDepPatterns": { "description": "Dep name patterns to match. Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string", "format": "regex" } }, { "type": "string", "format": "regex" } ] }, "matchDepTypes": { "description": "List of depTypes to match (e.g. [`peerDependencies`]). Valid only within `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "matchFileNames": { "description": "List of strings to do an exact match against package and lock files with full path. Only works inside a `packageRules` object.", "type": "array", "items": { "type": "string" } }, "matchManagers": { "description": "List of package managers to match (e.g. `[\"pipenv\"]`). Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "matchPackageNames": { "description": "Package names to match. Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "matchPackagePatterns": { "description": "Package name patterns to match. Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string", "format": "regex" } }, { "type": "string", "format": "regex" } ] }, "matchPackagePrefixes": { "description": "Package name prefixes to match. Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "matchRepositories": { "description": "List of repositories to match (e.g. `[\"**/*-archived\"]`). Valid only within a `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "matchSourceUrlPrefixes": { "description": "A list of source URL prefixes to match against, commonly used to group monorepos or packages from the same organization.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "matchSourceUrls": { "description": "A list of source URLs to exact match against.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ] }, "matchUpdateTypes": { "description": "Update types to match against (`major`, `minor`, `pin`, `pinDigest`, etc). Valid only within `packageRules` object.", "oneOf": [ { "type": "array", "items": { "type": "string", "enum": [ "major", "minor", "patch", "pin", "pinDigest", "digest", "lockFileMaintenance", "rollback", "bump", "replacement" ] } }, { "type": "string", "enum": [ "major", "minor", "patch", "pin", "pinDigest", "digest", "lockFileMaintenance", "rollback", "bump", "replacement" ] } ] }, "replacementName": { "description": "The name of the new dependency that replaces the old deprecated dependency.", "type": "string" }, "replacementNameTemplate": { "description": "Controls what the replacement package name.", "type": "string", "default": "{{{packageName}}}" }, "replacementVersion": { "description": "The version of the new dependency that replaces the old deprecated dependency.", "type": "string" } } } ] } }, "password": { "description": "Password for authentication.", "type": "string" }, "patch": { "description": "Configuration to apply when an update type is `patch`.", "type": "object", "default": {}, "$ref": "#" }, "pep621": { "description": "Configuration object for the pep621 manager", "type": "object", "default": { "fileMatch": [ "(^|/)pyproject\\.toml$" ] }, "$ref": "#" }, "persistRepoData": { "description": "If set to `true`: keep repository data between runs instead of deleting the data.", "type": "boolean", "default": false }, "pin": { "description": "Configuration to apply when an update type is `pin`.", "type": "object", "default": { "rebaseWhen": "behind-base-branch", "groupName": "Pin Dependencies", "groupSlug": "pin-dependencies", "commitMessageAction": "Pin", "group": { "commitMessageTopic": "dependencies", "commitMessageExtra": "" } }, "$ref": "#" }, "pinDigest": { "description": "Configuration to apply when pinning a digest (no change in tag/version).", "type": "object", "default": { "groupName": "Pin Dependencies", "groupSlug": "pin-dependencies", "commitMessageAction": "Pin", "group": { "commitMessageTopic": "dependencies", "commitMessageExtra": "" } }, "$ref": "#" }, "pinDigests": { "description": "Whether to add digests to Dockerfile source images.", "type": "boolean", "default": false }, "pip-compile": { "description": "Configuration object for the pip-compile manager", "type": "object", "default": { "fileMatch": [], "lockFileMaintenance": { "enabled": true, "branchTopic": "pip-compile-refresh", "commitMessageAction": "Refresh pip-compile outputs" } }, "$ref": "#" }, "pip_requirements": { "description": "Configuration object for the pip_requirements manager", "type": "object", "default": { "fileMatch": [ "(^|/)[\\w-]*requirements(-\\w+)?\\.(txt|pip)$" ] }, "$ref": "#" }, "pip_setup": { "description": "Configuration object for the pip_setup manager", "type": "object", "default": { "fileMatch": [ "(^|/)setup\\.py$" ] }, "$ref": "#" }, "pipenv": { "description": "Configuration object for the pipenv manager", "type": "object", "default": { "fileMatch": [ "(^|/)Pipfile$" ] }, "$ref": "#" }, "platform": { "description": "Platform type of repository.", "type": "string", "enum": [ "azure", "bitbucket", "bitbucket-server", "codecommit", "gitea", "github", "gitlab", "local" ], "default": "github" }, "platformAutomerge": { "description": "Controls if platform-native auto-merge is used.", "type": "boolean", "default": true }, "platformCommit": { "description": "Use platform API to perform commits instead of using Git directly.", "type": "boolean", "default": false }, "poetry": { "description": "Configuration object for the poetry manager", "type": "object", "default": { "fileMatch": [ "(^|/)pyproject\\.toml$" ] }, "$ref": "#" }, "postUpdateOptions": { "description": "Enable post-update options to be run after package/artifact updating.", "type": "array", "items": { "type": "string", "enum": [ "bundlerConservative", "gomodMassage", "gomodTidy", "gomodTidy1.17", "gomodTidyE", "gomodUpdateImportPaths", "helmUpdateSubChartArchives", "npmDedupe", "pnpmDedupe", "yarnDedupeFewer", "yarnDedupeHighest" ] }, "default": [] }, "postUpgradeTasks": { "description": "Post-upgrade tasks that are executed before a commit is made by Renovate.", "type": "object", "default": { "commands": [], "fileFilters": [], "executionMode": "update" }, "$ref": "#", "items": { "allOf": [ { "type": "object", "properties": { "description": { "type": "string", "description": "A custom description for this configuration object" }, "commands": { "description": "A list of post-upgrade commands that are executed before a commit is made by Renovate.", "type": "array", "items": { "type": "string" }, "default": [] }, "executionMode": { "description": "Controls when the post upgrade tasks run: on every update, or once per upgrade branch.", "type": "string", "enum": [ "update", "branch" ], "default": "update" }, "fileFilters": { "description": "Files that match the glob pattern will be committed after running a post-upgrade task.", "type": "array", "items": { "type": "string" }, "default": [ "**/*" ] } } } ] } }, "prBodyColumns": { "description": "List of columns to use in PR bodies.", "type": "array", "items": { "type": "string" }, "default": [ "Package", "Type", "Update", "Change", "Pending" ] }, "prBodyDefinitions": { "description": "Table column definitions to use in PR tables.", "type": "object", "default": { "Package": "{{{depNameLinked}}}", "Type": "{{{depType}}}", "Update": "{{{updateType}}}", "Current value": "{{{currentValue}}}", "New value": "{{{newValue}}}", "Change": "`{{{displayFrom}}}` -> `{{{displayTo}}}`", "Pending": "{{{displayPending}}}", "References": "{{{references}}}", "Package file": "{{{packageFile}}}", "Age": "[![age](https://developer.mend.io/api/mc/badges/age/{{datasource}}/{{replace '/' '%2f' depName}}/{{{newVersion}}}?slim=true)](https://docs.renovatebot.com/merge-confidence/)", "Adoption": "[![adoption](https://developer.mend.io/api/mc/badges/adoption/{{datasource}}/{{replace '/' '%2f' depName}}/{{{newVersion}}}?slim=true)](https://docs.renovatebot.com/merge-confidence/)", "Passing": "[![passing](https://developer.mend.io/api/mc/badges/compatibility/{{datasource}}/{{replace '/' '%2f' depName}}/{{{currentVersion}}}/{{{newVersion}}}?slim=true)](https://docs.renovatebot.com/merge-confidence/)", "Confidence": "[![confidence](https://developer.mend.io/api/mc/badges/confidence/{{datasource}}/{{replace '/' '%2f' depName}}/{{{currentVersion}}}/{{{newVersion}}}?slim=true)](https://docs.renovatebot.com/merge-confidence/)" } }, "prBodyNotes": { "description": "List of extra notes or templates to include in the Pull Request body.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ], "default": [] }, "prBodyTemplate": { "description": "Pull Request body template. Controls which sections are rendered in the body of the pull request.", "type": "string", "default": "{{{header}}}{{{table}}}{{{warnings}}}{{{notes}}}{{{changelogs}}}{{{configDescription}}}{{{controls}}}{{{footer}}}" }, "prCommitsPerRunLimit": { "description": "Set the maximum number of commits per Renovate run. By default there is no limit.", "type": "integer", "default": 0 }, "prConcurrentLimit": { "description": "Limit to a maximum of x concurrent branches/PRs. 0 means no limit.", "type": "integer", "default": 10 }, "prCreation": { "description": "When to create the PR for a branch.", "type": "string", "enum": [ "immediate", "not-pending", "status-success", "approval" ], "default": "immediate" }, "prFooter": { "description": "Text added here will be placed last in the PR body, with a divider separator before it.", "type": "string", "default": "This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate)." }, "prHeader": { "description": "Text added here will be placed first in the PR body.", "type": "string" }, "prHourlyLimit": { "description": "Rate limit PRs to maximum x created per hour. 0 means no limit.", "type": "integer", "default": 2 }, "prNotPendingHours": { "description": "Timeout in hours for when `prCreation=not-pending`.", "type": "integer", "default": 25 }, "prPriority": { "description": "Set sorting priority for PR creation. PRs with higher priority are created first, negative priority last.", "type": "integer", "default": 0 }, "prTitle": { "description": "Pull Request title template (deprecated). Inherits from `commitMessage` if null.", "type": "string", "default": null }, "prTitleStrict": { "description": "Whether to bypass appending extra context to the Pull Request title.", "type": "boolean", "default": false }, "pre-commit": { "description": "Configuration object for the pre-commit manager", "type": "object", "default": { "commitMessageTopic": "pre-commit hook {{depName}}", "enabled": false, "fileMatch": [ "(^|/)\\.pre-commit-config\\.ya?ml$" ], "prBodyNotes": [ "Note: The `pre-commit` manager in Renovate is not supported by the `pre-commit` maintainers or community. Please do not report any problems there, instead [create a Discussion in the Renovate repository](https://github.com/renovatebot/renovate/discussions/new) if you have any questions." ] }, "$ref": "#" }, "printConfig": { "description": "If enabled, Renovate logs the fully resolved config for each repository, plus the fully resolved presets.", "type": "boolean", "default": false }, "privateKey": { "description": "Server-side private key.", "type": "string" }, "privateKeyOld": { "description": "Secondary or old private key to try.", "type": "string" }, "privateKeyPath": { "description": "Path to the Server-side private key.", "type": "string" }, "privateKeyPathOld": { "description": "Path to the Server-side old private key.", "type": "string" }, "productLinks": { "description": "Links which are used in PRs, issues and comments.", "type": "object", "default": { "documentation": "https://docs.renovatebot.com/", "help": "https://github.com/renovatebot/renovate/discussions", "homepage": "https://github.com/renovatebot/renovate" }, "additionalProperties": { "type": "string", "format": "uri" }, "$ref": "#" }, "pruneBranchAfterAutomerge": { "description": "Set to `true` to enable branch pruning after automerging.", "type": "boolean", "default": true }, "pruneStaleBranches": { "description": "Set to `false` to disable pruning stale branches.", "type": "boolean", "default": true }, "pub": { "description": "Configuration object for the pub manager", "type": "object", "default": { "fileMatch": [ "(^|/)pubspec\\.ya?ml$" ], "versioning": "npm" }, "$ref": "#" }, "puppet": { "description": "Configuration object for the puppet manager", "type": "object", "default": { "fileMatch": [ "(^|/)Puppetfile$" ] }, "$ref": "#" }, "pyenv": { "description": "Configuration object for the pyenv manager", "type": "object", "default": { "fileMatch": [ "(^|/)\\.python-version$" ], "versioning": "docker" }, "$ref": "#" }, "rangeStrategy": { "description": "Determines how to modify or update existing ranges.", "type": "string", "enum": [ "auto", "pin", "bump", "replace", "widen", "update-lockfile", "in-range-only" ], "default": "auto" }, "rebaseLabel": { "description": "Label to request a rebase from Renovate bot.", "type": "string", "default": "rebase" }, "rebaseWhen": { "description": "Controls when Renovate rebases an existing branch.", "type": "string", "enum": [ "auto", "never", "conflicted", "behind-base-branch" ], "default": "auto" }, "recreateWhen": { "description": "Recreate PRs even if same ones were closed previously.", "type": "string", "enum": [ "auto", "always", "never" ], "default": "auto" }, "redisUrl": { "description": "If set, this Redis URL will be used for caching instead of the file system.", "type": "string" }, "regex": { "description": "Configuration object for the regex manager", "type": "object", "default": { "pinDigests": false }, "$ref": "#" }, "regexManagers": { "description": "Custom managers using regex matching.", "type": "array", "items": { "allOf": [ { "type": "object", "properties": { "description": { "type": "string", "description": "A custom description for this configuration object" }, "autoReplaceStringTemplate": { "description": "Optional `extractVersion` for extracted dependencies. Valid only within a `regexManagers` object.", "type": "string" }, "currentValueTemplate": { "description": "Optional `currentValue` for extracted dependencies. Valid only within a `regexManagers` object.", "type": "string" }, "customType": { "description": "Custom manager to use. Valid only within a `regexManagers` object.", "type": "string", "enum": [ "regex" ] }, "datasourceTemplate": { "description": "Optional datasource for extracted dependencies. Valid only within a `regexManagers` object.", "type": "string" }, "depNameTemplate": { "description": "Optional depName for extracted dependencies. Valid only within a `regexManagers` object.", "type": "string" }, "depTypeTemplate": { "description": "Optional `depType` for extracted dependencies. Valid only within a `regexManagers` object.", "type": "string" }, "extractVersionTemplate": { "description": "Optional `extractVersion` for extracted dependencies. Valid only within a `regexManagers` object.", "type": "string" }, "matchStrings": { "description": "Regex capture rule to use. Valid only within a `regexManagers` object.", "type": "array", "items": { "type": "string", "format": "regex" } }, "matchStringsStrategy": { "description": "Strategy how to interpret matchStrings.", "type": "string", "enum": [ "any", "recursive", "combination" ], "default": "any" }, "packageNameTemplate": { "description": "Optional packageName for extracted dependencies, else defaults to `depName` value. Valid only within a `regexManagers` object.", "type": "string" }, "registryUrlTemplate": { "description": "Optional registry URL for extracted dependencies. Valid only within a `regexManagers` object.", "type": "string" }, "versioningTemplate": { "description": "Optional versioning for extracted dependencies. Valid only within a `regexManagers` object.", "type": "string" } } } ] }, "default": [] }, "registryAliases": { "description": "Aliases for registries.", "type": "object", "default": {}, "additionalProperties": { "type": "string", "format": "uri" }, "$ref": "#" }, "registryUrls": { "description": "List of URLs to try for dependency lookup. Package manager specific.", "type": "array", "items": { "type": "string" }, "default": null }, "replacement": { "description": "Configuration to apply when replacing a dependency.", "type": "object", "default": { "branchTopic": "{{{depNameSanitized}}}-replacement", "commitMessageAction": "Replace", "commitMessageExtra": "with {{newName}} {{#if isMajor}}{{{prettyNewMajor}}}{{else}}{{#if isSingleVersion}}{{{prettyNewVersion}}}{{else}}{{{newValue}}}{{/if}}{{/if}}", "prBodyNotes": [ "This is a special PR that replaces `{{{depNameSanitized}}}` with the community suggested minimal stable replacement version." ] }, "$ref": "#" }, "repositories": { "description": "List of Repositories.", "type": "array", "items": { "type": "string" } }, "repositoryCache": { "description": "This option decides if Renovate uses a JSON cache to speed up extractions.", "type": "string", "enum": [ "disabled", "enabled", "reset" ], "default": "disabled" }, "repositoryCacheType": { "description": "Set the type of renovate repository cache if `repositoryCache` is enabled.", "type": "string", "default": "local" }, "requireConfig": { "description": "Controls Renovate's behavior regarding repository config files such as `renovate.json`.", "type": "string", "enum": [ "required", "optional", "ignored" ], "default": "required" }, "respectLatest": { "description": "Ignore versions newer than npm \"latest\" version.", "type": "boolean" }, "reviewers": { "description": "Requested reviewers for Pull Requests (either username or email address depending on the platform).", "type": "array", "items": { "type": "string" } }, "reviewersFromCodeOwners": { "description": "Determine reviewers based on configured code owners and changes in PR.", "type": "boolean", "default": false }, "reviewersSampleSize": { "description": "Take a random sample of given size from `reviewers`.", "type": "integer", "default": null }, "rollback": { "description": "Configuration to apply when rolling back a version.", "type": "object", "default": { "branchTopic": "{{{depNameSanitized}}}-rollback", "commitMessageAction": "Roll back", "semanticCommitType": "fix" }, "$ref": "#" }, "rollbackPrs": { "description": "Create PRs to roll back versions if the current version is not found in the registry.", "type": "boolean", "default": false }, "ruby-version": { "description": "Configuration object for the ruby-version manager", "type": "object", "default": { "fileMatch": [ "(^|/)\\.ruby-version$" ], "versioning": "ruby" }, "$ref": "#" }, "sbt": { "description": "Configuration object for the sbt manager", "type": "object", "default": { "fileMatch": [ "\\.sbt$", "project/[^/]*\\.scala$", "project/build\\.properties$" ], "versioning": "ivy" }, "$ref": "#" }, "schedule": { "description": "Limit branch creation to these times of day or week.", "oneOf": [ { "type": "array", "items": { "type": "string" } }, { "type": "string" } ], "default": [ "at any time" ] }, "secrets": { "description": "Object which holds secret name/value pairs.", "type": "object", "default": {}, "additionalProperties": { "type": "string" }, "$ref": "#" }, "semanticCommitScope": { "description": "Commit scope to use if Semantic Commits are enabled.", "type": "string", "default": "deps" }, "semanticCommitType": { "description": "Commit type to use if Semantic Commits is enabled.", "type": "string", "default": "chore" }, "semanticCommits": { "description": "Enable Semantic Commit prefixes for commits and PR titles.", "type": "string", "enum": [ "auto", "enabled", "disabled" ], "default": "auto" }, "separateMajorMinor": { "description": "If set to `false`, Renovate will upgrade dependencies to their latest release only. Renovate will not separate major or minor branches.", "type": "boolean" }, "separateMinorPatch": { "description": "If set to `true`, Renovate will separate `minor` and `patch` updates into separate branches.", "type": "boolean", "default": false }, "separateMultipleMajor": { "description": "If set to `true`, PRs will be raised separately for each available `major` upgrade version.", "type": "boolean", "default": false }, "setup-cfg": { "description": "Configuration object for the setup-cfg manager", "type": "object", "default": { "fileMatch": [ "(^|/)setup\\.cfg$" ], "versioning": "pep440" }, "$ref": "#" }, "skipInstalls": { "description": "Skip installing modules/dependencies if lock file updating is possible without a full install.", "type": "boolean", "default": null }, "stopUpdatingLabel": { "description": "Label to make Renovate stop updating a PR.", "type": "string", "default": "stop-updating" }, "suppressNotifications": { "description": "Options to suppress various types of warnings and other notifications.", "type": "array", "items": { "type": "string", "enum": [ "artifactErrors", "branchAutomergeFailure", "configErrorIssue", "dependencyLookupWarnings", "deprecationWarningIssues", "lockFileErrors", "missingCredentialsError", "onboardingClose", "prEditedNotification", "prIgnoreNotification" ] }, "default": [ "deprecationWarningIssues" ] }, "swift": { "description": "Configuration object for the swift manager", "type": "object", "default": { "fileMatch": [ "(^|/)Package\\.swift" ], "versioning": "swift", "pinDigests": false }, "$ref": "#" }, "tekton": { "description": "Configuration object for the tekton manager", "type": "object", "default": { "fileMatch": [] }, "$ref": "#" }, "terraform": { "description": "Configuration object for the terraform manager", "type": "object", "default": { "commitMessageTopic": "Terraform {{depName}}", "fileMatch": [ "\\.tf$" ], "pinDigests": false }, "$ref": "#" }, "terraform-version": { "description": "Configuration object for the terraform-version manager", "type": "object", "default": { "fileMatch": [ "(^|/)\\.terraform-version$" ], "versioning": "hashicorp", "extractVersion": "^v(?<version>.*)$" }, "$ref": "#" }, "terragrunt": { "description": "Configuration object for the terragrunt manager", "type": "object", "default": { "commitMessageTopic": "Terragrunt dependency {{depName}}", "fileMatch": [ "(^|/)terragrunt\\.hcl$" ] }, "$ref": "#" }, "terragrunt-version": { "description": "Configuration object for the terragrunt-version manager", "type": "object", "default": { "fileMatch": [ "(^|/)\\.terragrunt-version$" ], "versioning": "hashicorp", "extractVersion": "^v(?<version>.+)$" }, "$ref": "#" }, "tflint-plugin": { "description": "Configuration object for the tflint-plugin manager", "type": "object", "default": { "commitMessageTopic": "TFLint plugin {{depName}}", "fileMatch": [ "\\.tflint\\.hcl$" ], "extractVersion": "^v(?<version>.*)$" }, "$ref": "#" }, "timezone": { "description": "[IANA Time Zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)", "type": "string" }, "token": { "description": "Repository Auth Token.", "type": "string" }, "transitiveRemediation": { "description": "Enable remediation of transitive dependencies.", "type": "boolean", "default": false }, "travis": { "description": "Configuration object for the travis manager", "type": "object", "default": { "fileMatch": [ "^\\.travis\\.ya?ml$" ], "major": { "enabled": false }, "versioning": "node" }, "$ref": "#" }, "unicodeEmoji": { "description": "Enable or disable Unicode emoji.", "type": "boolean", "default": true }, "updateInternalDeps": { "description": "Whether to update internal dep versions in a monorepo. Works on Lerna or Yarn Workspaces.", "type": "boolean", "default": false }, "updateLockFiles": { "description": "Set to `false` to disable lock file updating.", "type": "boolean" }, "updateNotScheduled": { "description": "Whether to update branches when not scheduled. Renovate will not create branches outside of the schedule.", "type": "boolean" }, "updatePinnedDependencies": { "description": "Whether to update pinned (single version) dependencies or not.", "type": "boolean", "default": true }, "useBaseBranchConfig": { "description": "Whether to read configuration from `baseBranches` instead of only the default branch.", "type": "string", "enum": [ "merge", "none" ], "default": "none" }, "userStrings": { "description": "User-facing strings for the Renovate comment when a PR is closed.", "type": "object", "default": { "ignoreTopic": "Renovate Ignore Notification", "ignoreMajor": "Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for *any* future {{{newMajor}}}.x releases. But if you manually upgrade to {{{newMajor}}}.x then Renovate will re-enable `minor` and `patch` updates automatically.", "ignoreDigest": "Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for the `{{{depName}}}` `{{{newDigestShort}}}` update again.", "ignoreOther": "Because you closed this PR without merging, Renovate will ignore this update ({{{newValue}}}). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the `ignoreDeps` array of your Renovate config." } }, "username": { "description": "Username for authentication.", "type": "string" }, "velaci": { "description": "Configuration object for the velaci manager", "type": "object", "default": { "fileMatch": [ "(^|/)\\.vela\\.ya?ml$" ] }, "$ref": "#" }, "versioning": { "description": "Versioning to use for filtering and comparisons.", "type": "string", "oneOf": [ { "enum": [ "aws-machine-image", "azure-rest-api", "bazel-module", "cargo", "composer", "conan", "deb", "debian", "docker", "git", "go-mod-directive", "gradle", "hashicorp", "helm", "hermit", "hex", "ivy", "kubernetes-api", "loose", "maven", "nixpkgs", "node", "npm", "nuget", "pep440", "perl", "poetry", "python", "redhat", "regex", "rez", "ruby", "semver", "semver-coerced", "swift", "ubuntu" ] }, { "type": "string", "pattern": "^regex:" } ] }, "vulnerabilityAlerts": { "description": "Config to apply when a PR is needed due to a vulnerability in the existing package version.", "type": "object", "default": { "groupName": null, "schedule": [], "dependencyDashboardApproval": false, "minimumReleaseAge": null, "rangeStrategy": "update-lockfile", "commitMessageSuffix": "[SECURITY]", "branchTopic": "{{{datasource}}}-{{{depName}}}-vulnerability", "prCreation": "immediate" }, "$ref": "#" }, "woodpecker": { "description": "Configuration object for the woodpecker manager", "type": "object", "default": { "fileMatch": [ "^\\.woodpecker(?:/[^/]+)?\\.ya?ml$" ] }, "$ref": "#" }, "writeDiscoveredRepos": { "description": "Writes discovered repositories to a JSON file and then exit.", "type": "string" } } }
renovate-schema
{ "description": "SubjectAccessReviewStatus", "properties": { "allowed": { "description": "Allowed is required. True if the action would be allowed, false otherwise.", "type": [ "boolean", "null" ] }, "denied": { "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.", "type": [ "boolean", "null" ] }, "evaluationError": { "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", "type": [ "string", "null" ] }, "reason": { "description": "Reason is optional. It indicates why a request was allowed or denied.", "type": [ "string", "null" ] } }, "required": [ "allowed" ], "type": "object" }
kb_1048_Normalized
{ "$schema": "http://json-schema.org/draft-06/schema#", "properties": { "bar": { "type": "integer", "multipleOf": 3 } } }
o25195
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "http://json-schema.org/draft-07/schema#", "required": [ "foo" ], "properties": { "foo": { "not": { "type": "number" } } } }
o23153
{ "properties": { "client_name": { "description": "The name of the client", "type": "string" }, "items": { "items": { "properties": { "description": { "description": "The description of the item", "type": "string" }, "price": { "description": "The price per unit of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "description", "quantity", "price" ], "type": "object" }, "type": "array" }, "tax_rate": { "description": "The tax rate as a percentage", "type": "number" } }, "required": [ "client_name", "items", "tax_rate" ], "type": "object" }
generate_invoice_6d1ed855
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "TCPSocketAction describes an action based on opening a socket", "properties": { "host": { "description": "Optional: Host name to connect to, defaults to the pod IP.", "type": [ "string", "null" ] }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." } }, "required": [ "port" ], "type": "object" }
kb_1061_Normalized
{ "title": "Map Range Information", "$schema": "http://json-schema.org/draft-04/schema", "description": "Map range information", "properties": { "activeRangeName": { "type": "string", "description": "Active range ID that slider/picker acts upon." }, "currentRangeExtent": { "type": "array", "description": "Current range for the active range.", "items": { "type": "number" }, "minItems": 2, "maxItems": 2 }, "fullRangeExtent": { "type": "array", "description": "Full range extent for the active range to be presented in the UI.", "items": { "type": "number" }, "minItems": 2, "maxItems": 2 } }, "required": [ "activeRangeName" ], "additionalProperties": false, "esriDocumentation": { "examples": [ { "title": "mapRangeInfo", "code": { "mapRangeInfo": { "activeRangeName": "floors", "currentRangeExtent": [ -2, 10 ], "fullRangeExtent": [ -2, 100 ] } } } ] } }
o90235
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Archive List", "description": "A list of OpenTok Archives", "type": "object", "properties": { "count": { "type": "integer" }, "items": { "type": "array", "items": { "$ref": "#/definitions/archive" } } }, "required": [ "count", "items" ], "definitions": { "archive": { "title": "Archive", "description": "An OpenTok Archive", "type": "object", "properties": { "createdAt": { "type": "integer" }, "duration": { "type": "integer", "minimum": 0 }, "id": { "type": "string", "pattern": "^[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}$" }, "name": { "type": [ "string", "null" ] }, "partnerId": { "type": "integer" }, "reason": { "type": "string" }, "sessionId": { "type": "string" }, "size": { "type": "integer", "minimum": 0 }, "status": { "type": "string", "enum": [ "available", "started", "stopped", "failed", "deleted", "uploaded", "expired", "paused" ] }, "url": { "type": [ "string", "null" ] }, "hasVideo": { "type": "boolean" }, "hasAudio": { "type": "boolean" } }, "required": [ "id", "partnerId", "sessionId", "status" ] } } }
o65710
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "org.eclipse.persistence.testing.jaxb.xmlelements.Employee", "type": "object", "properties": { "employee-data": { "type": "object", "properties": { "id": { "type": "integer" }, "integer": { "type": "integer" }, "address": { "$ref": "#/definitions/Address" }, "string": { "type": "string" } }, "additionalProperties": false } }, "definitions": { "Address": { "type": "object", "properties": { "street": { "type": "string" }, "city": { "type": "string" } }, "additionalProperties": false } } }
o42303
{ "$schema": "http://json-schema.org/draft-04/schema", "title": "Tree container", "description": "Testing chained containers", "$ref": "#/definitions/LevelOneContainer", "definitions": { "Item": { "properties": { "name": { "type": "string" }, "value": { "type": "integer" } } }, "LevelThreeContainer": { "properties": { "items": { "type": "array", "items": { "$ref": "#/definitions/Item" } } } }, "LevelTwoContainer": { "oneOf": [ { "properties": { "threes": { "type": "array", "items": { "$ref": "#/definitions/LevelThreeContainer" } } } }, { "#ref": "#/definitions/LevelThreeContainer" } ] }, "LevelOneContainer": { "oneOf": [ { "properties": { "twos": { "type": "array", "items": { "$ref": "#/definitions/LevelTwoContainer" } } } }, { "#ref": "#/definitions/LevelTwoContainer" } ] } } }
o2231
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (e.g., circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_295f0061
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [], "type": "object" }, "shape": { "description": "The shape type (e.g. 'rectangle', 'circle', 'triangle')", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_51bdd9e7
{ "type": "object", "properties": { "aftpallowrandomsourceport": { "type": "string", "enum": [ "ENABLED", "DISABLED" ] }, "cip": { "type": "string", "enum": [ "ENABLED", "DISABLED" ] }, "cipheader": { "type": "string" }, "cookieversion": { "type": "string", "enum": [ "0", "1" ] }, "crportrange": { "type": "string" }, "exclusivequotamaxclient": { "type": "integer" }, "exclusivequotaspillover": { "type": "integer" }, "ftpportrange": { "type": "string" }, "grantquotamaxclient": { "type": "integer" }, "grantquotaspillover": { "type": "integer" }, "httpport": { "type": "object" }, "icaports": { "type": "object" }, "internaluserlogin": { "type": "string", "enum": [ "ENABLED", "DISABLED" ] }, "maxconn": { "type": "integer" }, "maxreq": { "type": "integer" }, "pmtumin": { "type": "integer" }, "pmtutimeout": { "type": "integer" }, "securecookie": { "type": "string", "enum": [ "ENABLED", "DISABLED" ] }, "timezone": { "type": "string", "enum": [ "CoordinatedUniversalTime", "GMT+01:00-CET-Europe/Andorra", "GMT+04:00-GST-Asia/Dubai", "GMT+04:30-AFT-Asia/Kabul", "GMT-04:00-AST-America/Antigua", "GMT-04:00-AST-America/Anguilla", "GMT+01:00-CET-Europe/Tirane", "GMT+04:00-AMT-Asia/Yerevan", "GMT+01:00-WAT-Africa/Luanda", "GMT+13:00-NZDT-Antarctica/McMurdo", "GMT+13:00-NZDT-Antarctica/South_Pole", "GMT-03:00-ROTT-Antarctica/Rothera", "GMT-04:00-CLT-Antarctica/Palmer", "GMT+05:00-MAWT-Antarctica/Mawson", "GMT+07:00-DAVT-Antarctica/Davis", "GMT+08:00-WST-Antarctica/Casey", "GMT+06:00-VOST-Antarctica/Vostok", "GMT+10:00-DDUT-Antarctica/DumontDUrville", "GMT+03:00-SYOT-Antarctica/Syowa", "GMT+11:00-MIST-Antarctica/Macquarie", "GMT-03:00-ART-America/Argentina/Buenos_Aires", "GMT-03:00-ART-America/Argentina/Cordoba", "GMT-03:00-ART-America/Argentina/Salta", "GMT-03:00-ART-America/Argentina/Jujuy", "GMT-03:00-ART-America/Argentina/Tucuman", "GMT-03:00-ART-America/Argentina/Catamarca", "GMT-03:00-ART-America/Argentina/La_Rioja", "GMT-03:00-ART-America/Argentina/San_Juan", "GMT-03:00-ART-America/Argentina/Mendoza", "GMT-03:00-WARST-America/Argentina/San_Luis", "GMT-03:00-ART-America/Argentina/Rio_Gallegos", "GMT-03:00-ART-America/Argentina/Ushuaia", "GMT-11:00-SST-Pacific/Pago_Pago", "GMT+01:00-CET-Europe/Vienna", "GMT+11:00-LHST-Australia/Lord_Howe", "GMT+11:00-EST-Australia/Hobart", "GMT+11:00-EST-Australia/Currie", "GMT+11:00-EST-Australia/Melbourne", "GMT+11:00-EST-Australia/Sydney", "GMT+10:30-CST-Australia/Broken_Hill", "GMT+10:00-EST-Australia/Brisbane", "GMT+10:00-EST-Australia/Lindeman", "GMT+10:30-CST-Australia/Adelaide", "GMT+09:30-CST-Australia/Darwin", "GMT+08:00-WST-Australia/Perth", "GMT+08:45-CWST-Australia/Eucla", "GMT-04:00-AST-America/Aruba", "GMT+02:00-EET-Europe/Mariehamn", "GMT+04:00-AZT-Asia/Baku", "GMT+01:00-CET-Europe/Sarajevo", "GMT-04:00-AST-America/Barbados", "GMT+06:00-BDT-Asia/Dhaka", "GMT+01:00-CET-Europe/Brussels", "GMT+00:00-GMT-Africa/Ouagadougou", "GMT+02:00-EET-Europe/Sofia", "GMT+03:00-AST-Asia/Bahrain", "GMT+02:00-CAT-Africa/Bujumbura", "GMT+01:00-WAT-Africa/Porto-Novo", "GMT-04:00-AST-America/St_Barthelemy", "GMT-03:00-ADT-Atlantic/Bermuda", "GMT+08:00-BNT-Asia/Brunei", "GMT-04:00-BOT-America/La_Paz", "GMT-02:00-FNT-America/Noronha", "GMT-03:00-BRT-America/Belem", "GMT-03:00-BRT-America/Fortaleza", "GMT-03:00-BRT-America/Recife", "GMT-03:00-BRT-America/Araguaina", "GMT-03:00-BRT-America/Maceio", "GMT-03:00-BRT-America/Bahia", "GMT-03:00-BRT-America/Sao_Paulo", "GMT-04:00-AMT-America/Campo_Grande", "GMT-04:00-AMT-America/Cuiaba", "GMT-03:00-BRT-America/Santarem", "GMT-04:00-AMT-America/Porto_Velho", "GMT-04:00-AMT-America/Boa_Vista", "GMT-04:00-AMT-America/Manaus", "GMT-04:00-AMT-America/Eirunepe", "GMT-04:00-AMT-America/Rio_Branco", "GMT-04:00-EDT-America/Nassau", "GMT+06:00-BTT-Asia/Thimphu", "GMT+02:00-CAT-Africa/Gaborone", "GMT+03:00-FET-Europe/Minsk", "GMT-06:00-CST-America/Belize", "GMT-02:30-NDT-America/St_Johns", "GMT-03:00-ADT-America/Halifax", "GMT-03:00-ADT-America/Glace_Bay", "GMT-03:00-ADT-America/Moncton", "GMT-03:00-ADT-America/Goose_Bay", "GMT-04:00-AST-America/Blanc-Sablon", "GMT-04:00-EDT-America/Montreal", "GMT-04:00-EDT-America/Toronto", "GMT-04:00-EDT-America/Nipigon", "GMT-04:00-EDT-America/Thunder_Bay", "GMT-04:00-EDT-America/Iqaluit", "GMT-04:00-EDT-America/Pangnirtung", "GMT-05:00-CDT-America/Resolute", "GMT-05:00-EST-America/Atikokan", "GMT-05:00-CDT-America/Rankin_Inlet", "GMT-05:00-CDT-America/Winnipeg", "GMT-05:00-CDT-America/Rainy_River", "GMT-06:00-CST-America/Regina", "GMT-06:00-CST-America/Swift_Current", "GMT-06:00-MDT-America/Edmonton", "GMT-06:00-MDT-America/Cambridge_Bay", "GMT-06:00-MDT-America/Yellowknife", "GMT-06:00-MDT-America/Inuvik", "GMT-07:00-MST-America/Dawson_Creek", "GMT-07:00-PDT-America/Vancouver", "GMT-07:00-PDT-America/Whitehorse", "GMT-07:00-PDT-America/Dawson", "GMT+06:30-CCT-Indian/Cocos", "GMT+01:00-WAT-Africa/Kinshasa", "GMT+02:00-CAT-Africa/Lubumbashi", "GMT+01:00-WAT-Africa/Bangui", "GMT+01:00-WAT-Africa/Brazzaville", "GMT+01:00-CET-Europe/Zurich", "GMT+00:00-GMT-Africa/Abidjan", "GMT-10:00-CKT-Pacific/Rarotonga", "GMT-04:00-CLT-America/Santiago", "GMT-06:00-EAST-Pacific/Easter", "GMT+01:00-WAT-Africa/Douala", "GMT+08:00-CST-Asia/Shanghai", "GMT+08:00-CST-Asia/Harbin", "GMT+08:00-CST-Asia/Chongqing", "GMT+08:00-CST-Asia/Urumqi", "GMT+08:00-CST-Asia/Kashgar", "GMT-05:00-COT-America/Bogota", "GMT-06:00-CST-America/Costa_Rica", "GMT-04:00-CDT-America/Havana", "GMT-01:00-CVT-Atlantic/Cape_Verde", "GMT+07:00-CXT-Indian/Christmas", "GMT+02:00-EET-Asia/Nicosia", "GMT+01:00-CET-Europe/Prague", "GMT+01:00-CET-Europe/Berlin", "GMT+03:00-EAT-Africa/Djibouti", "GMT+01:00-CET-Europe/Copenhagen", "GMT-04:00-AST-America/Dominica", "GMT-04:00-AST-America/Santo_Domingo", "GMT+01:00-CET-Africa/Algiers", "GMT-05:00-ECT-America/Guayaquil", "GMT-06:00-GALT-Pacific/Galapagos", "GMT+02:00-EET-Europe/Tallinn", "GMT+02:00-EET-Africa/Cairo", "GMT+00:00-WET-Africa/El_Aaiun", "GMT+03:00-EAT-Africa/Asmara", "GMT+01:00-CET-Europe/Madrid", "GMT+01:00-CET-Africa/Ceuta", "GMT+00:00-WET-Atlantic/Canary", "GMT+03:00-EAT-Africa/Addis_Ababa", "GMT+02:00-EET-Europe/Helsinki", "GMT+12:00-FJT-Pacific/Fiji", "GMT-03:00-FKST-Atlantic/Stanley", "GMT+10:00-CHUT-Pacific/Chuuk", "GMT+11:00-PONT-Pacific/Pohnpei", "GMT+11:00-KOST-Pacific/Kosrae", "GMT+00:00-WET-Atlantic/Faroe", "GMT+01:00-CET-Europe/Paris", "GMT+01:00-WAT-Africa/Libreville", "GMT+00:00-GMT-Europe/London", "GMT-04:00-AST-America/Grenada", "GMT+04:00-GET-Asia/Tbilisi", "GMT-03:00-GFT-America/Cayenne", "GMT+00:00-GMT-Europe/Guernsey", "GMT+00:00-GMT-Africa/Accra", "GMT+01:00-CET-Europe/Gibraltar", "GMT-03:00-WGT-America/Godthab", "GMT+00:00-GMT-America/Danmarkshavn", "GMT-01:00-EGT-America/Scoresbysund", "GMT-03:00-ADT-America/Thule", "GMT+00:00-GMT-Africa/Banjul", "GMT+00:00-GMT-Africa/Conakry", "GMT-04:00-AST-America/Guadeloupe", "GMT+01:00-WAT-Africa/Malabo", "GMT+02:00-EET-Europe/Athens", "GMT-02:00-GST-Atlantic/South_Georgia", "GMT-06:00-CST-America/Guatemala", "GMT+10:00-ChST-Pacific/Guam", "GMT+00:00-GMT-Africa/Bissau", "GMT-04:00-GYT-America/Guyana", "GMT+08:00-HKT-Asia/Hong_Kong", "GMT-06:00-CST-America/Tegucigalpa", "GMT+01:00-CET-Europe/Zagreb", "GMT-05:00-EST-America/Port-au-Prince", "GMT+01:00-CET-Europe/Budapest", "GMT+07:00-WIT-Asia/Jakarta", "GMT+07:00-WIT-Asia/Pontianak", "GMT+08:00-CIT-Asia/Makassar", "GMT+09:00-EIT-Asia/Jayapura", "GMT+00:00-GMT-Europe/Dublin", "GMT+02:00-IST-Asia/Jerusalem", "GMT+00:00-GMT-Europe/Isle_of_Man", "GMT+05:30-IST-Asia/Kolkata", "GMT+06:00-IOT-Indian/Chagos", "GMT+03:00-AST-Asia/Baghdad", "GMT+03:30-IRST-Asia/Tehran", "GMT+00:00-GMT-Atlantic/Reykjavik", "GMT+01:00-CET-Europe/Rome", "GMT+00:00-GMT-Europe/Jersey", "GMT-05:00-EST-America/Jamaica", "GMT+02:00-EET-Asia/Amman", "GMT+09:00-JST-Asia/Tokyo", "GMT+03:00-EAT-Africa/Nairobi", "GMT+06:00-KGT-Asia/Bishkek", "GMT+07:00-ICT-Asia/Phnom_Penh", "GMT+12:00-GILT-Pacific/Tarawa", "GMT+13:00-PHOT-Pacific/Enderbury", "GMT+14:00-LINT-Pacific/Kiritimati", "GMT+03:00-EAT-Indian/Comoro", "GMT-04:00-AST-America/St_Kitts", "GMT+09:00-KST-Asia/Pyongyang", "GMT+09:00-KST-Asia/Seoul", "GMT+03:00-AST-Asia/Kuwait", "GMT-05:00-EST-America/Cayman", "GMT+06:00-ALMT-Asia/Almaty", "GMT+06:00-QYZT-Asia/Qyzylorda", "GMT+05:00-AQTT-Asia/Aqtobe", "GMT+05:00-AQTT-Asia/Aqtau", "GMT+05:00-ORAT-Asia/Oral", "GMT+07:00-ICT-Asia/Vientiane", "GMT+02:00-EET-Asia/Beirut", "GMT-04:00-AST-America/St_Lucia", "GMT+01:00-CET-Europe/Vaduz", "GMT+05:30-IST-Asia/Colombo", "GMT+00:00-GMT-Africa/Monrovia", "GMT+02:00-SAST-Africa/Maseru", "GMT+02:00-EET-Europe/Vilnius", "GMT+01:00-CET-Europe/Luxembourg", "GMT+02:00-EET-Europe/Riga", "GMT+02:00-EET-Africa/Tripoli", "GMT+00:00-WET-Africa/Casablanca", "GMT+01:00-CET-Europe/Monaco", "GMT+02:00-EET-Europe/Chisinau", "GMT+01:00-CET-Europe/Podgorica", "GMT-04:00-AST-America/Marigot", "GMT+03:00-EAT-Indian/Antananarivo", "GMT+12:00-MHT-Pacific/Majuro", "GMT+12:00-MHT-Pacific/Kwajalein", "GMT+01:00-CET-Europe/Skopje", "GMT+00:00-GMT-Africa/Bamako", "GMT+06:30-MMT-Asia/Rangoon", "GMT+08:00-ULAT-Asia/Ulaanbaatar", "GMT+07:00-HOVT-Asia/Hovd", "GMT+08:00-CHOT-Asia/Choibalsan", "GMT+08:00-CST-Asia/Macau", "GMT+10:00-ChST-Pacific/Saipan", "GMT-04:00-AST-America/Martinique", "GMT+00:00-GMT-Africa/Nouakchott", "GMT-04:00-AST-America/Montserrat", "GMT+01:00-CET-Europe/Malta", "GMT+04:00-MUT-Indian/Mauritius", "GMT+05:00-MVT-Indian/Maldives", "GMT+02:00-CAT-Africa/Blantyre", "GMT-06:00-CST-America/Mexico_City", "GMT-06:00-CST-America/Cancun", "GMT-06:00-CST-America/Merida", "GMT-06:00-CST-America/Monterrey", "GMT-05:00-CDT-America/Matamoros", "GMT-07:00-MST-America/Mazatlan", "GMT-07:00-MST-America/Chihuahua", "GMT-06:00-MDT-America/Ojinaga", "GMT-07:00-MST-America/Hermosillo", "GMT-07:00-PDT-America/Tijuana", "GMT-08:00-PST-America/Santa_Isabel", "GMT-06:00-CST-America/Bahia_Banderas", "GMT+08:00-MYT-Asia/Kuala_Lumpur", "GMT+08:00-MYT-Asia/Kuching", "GMT+02:00-CAT-Africa/Maputo", "GMT+02:00-WAST-Africa/Windhoek", "GMT+11:00-NCT-Pacific/Noumea", "GMT+01:00-WAT-Africa/Niamey", "GMT+11:30-NFT-Pacific/Norfolk", "GMT+01:00-WAT-Africa/Lagos", "GMT-06:00-CST-America/Managua", "GMT+01:00-CET-Europe/Amsterdam", "GMT+01:00-CET-Europe/Oslo", "GMT+05:45-NPT-Asia/Kathmandu", "GMT+12:00-NRT-Pacific/Nauru", "GMT-11:00-NUT-Pacific/Niue", "GMT+13:00-NZDT-Pacific/Auckland", "GMT+13:45-CHADT-Pacific/Chatham", "GMT+04:00-GST-Asia/Muscat", "GMT-05:00-EST-America/Panama", "GMT-05:00-PET-America/Lima", "GMT-10:00-TAHT-Pacific/Tahiti", "GMT-09:30-MART-Pacific/Marquesas", "GMT-09:00-GAMT-Pacific/Gambier", "GMT+10:00-PGT-Pacific/Port_Moresby", "GMT+08:00-PHT-Asia/Manila", "GMT+05:00-PKT-Asia/Karachi", "GMT+01:00-CET-Europe/Warsaw", "GMT-02:00-PMDT-America/Miquelon", "GMT-08:00-PST-Pacific/Pitcairn", "GMT-04:00-AST-America/Puerto_Rico", "GMT+02:00-EET-Asia/Gaza", "GMT+02:00-EET-Asia/Hebron", "GMT+00:00-WET-Europe/Lisbon", "GMT+00:00-WET-Atlantic/Madeira", "GMT-01:00-AZOT-Atlantic/Azores", "GMT+09:00-PWT-Pacific/Palau", "GMT-03:00-PYST-America/Asuncion", "GMT+03:00-AST-Asia/Qatar", "GMT+04:00-RET-Indian/Reunion", "GMT+02:00-EET-Europe/Bucharest", "GMT+01:00-CET-Europe/Belgrade", "GMT+03:00-FET-Europe/Kaliningrad", "GMT+04:00-MSK-Europe/Moscow", "GMT+04:00-VOLT-Europe/Volgograd", "GMT+04:00-SAMT-Europe/Samara", "GMT+06:00-YEKT-Asia/Yekaterinburg", "GMT+07:00-OMST-Asia/Omsk", "GMT+07:00-NOVT-Asia/Novosibirsk", "GMT+07:00-NOVT-Asia/Novokuznetsk", "GMT+08:00-KRAT-Asia/Krasnoyarsk", "GMT+09:00-IRKT-Asia/Irkutsk", "GMT+10:00-YAKT-Asia/Yakutsk", "GMT+11:00-VLAT-Asia/Vladivostok", "GMT+11:00-SAKT-Asia/Sakhalin", "GMT+12:00-MAGT-Asia/Magadan", "GMT+12:00-PETT-Asia/Kamchatka", "GMT+12:00-ANAT-Asia/Anadyr", "GMT+02:00-CAT-Africa/Kigali", "GMT+03:00-AST-Asia/Riyadh", "GMT+11:00-SBT-Pacific/Guadalcanal", "GMT+04:00-SCT-Indian/Mahe", "GMT+03:00-EAT-Africa/Khartoum", "GMT+01:00-CET-Europe/Stockholm", "GMT+08:00-SGT-Asia/Singapore", "GMT+00:00-GMT-Atlantic/St_Helena", "GMT+01:00-CET-Europe/Ljubljana", "GMT+01:00-CET-Arctic/Longyearbyen", "GMT+01:00-CET-Europe/Bratislava", "GMT+00:00-GMT-Africa/Freetown", "GMT+01:00-CET-Europe/San_Marino", "GMT+00:00-GMT-Africa/Dakar", "GMT+03:00-EAT-Africa/Mogadishu", "GMT-03:00-SRT-America/Paramaribo", "GMT+00:00-GMT-Africa/Sao_Tome", "GMT-06:00-CST-America/El_Salvador", "GMT+02:00-EET-Asia/Damascus", "GMT+02:00-SAST-Africa/Mbabane", "GMT-04:00-EDT-America/Grand_Turk", "GMT+01:00-WAT-Africa/Ndjamena", "GMT+05:00-TFT-Indian/Kerguelen", "GMT+00:00-GMT-Africa/Lome", "GMT+07:00-ICT-Asia/Bangkok", "GMT+05:00-TJT-Asia/Dushanbe", "GMT-10:00-TKT-Pacific/Fakaofo", "GMT+09:00-TLT-Asia/Dili", "GMT+05:00-TMT-Asia/Ashgabat", "GMT+01:00-CET-Africa/Tunis", "GMT+13:00-TOT-Pacific/Tongatapu", "GMT+02:00-EET-Europe/Istanbul", "GMT-04:00-AST-America/Port_of_Spain", "GMT+12:00-TVT-Pacific/Funafuti", "GMT+08:00-CST-Asia/Taipei", "GMT+03:00-EAT-Africa/Dar_es_Salaam", "GMT+02:00-EET-Europe/Kiev", "GMT+02:00-EET-Europe/Uzhgorod", "GMT+02:00-EET-Europe/Zaporozhye", "GMT+02:00-EET-Europe/Simferopol", "GMT+03:00-EAT-Africa/Kampala", "GMT-10:00-HST-Pacific/Johnston", "GMT-11:00-SST-Pacific/Midway", "GMT+12:00-WAKT-Pacific/Wake", "GMT-04:00-EDT-America/New_York", "GMT-04:00-EDT-America/Detroit", "GMT-04:00-EDT-America/Kentucky/Louisville", "GMT-04:00-EDT-America/Kentucky/Monticello", "GMT-04:00-EDT-America/Indiana/Indianapolis", "GMT-04:00-EDT-America/Indiana/Vincennes", "GMT-04:00-EDT-America/Indiana/Winamac", "GMT-04:00-EDT-America/Indiana/Marengo", "GMT-04:00-EDT-America/Indiana/Petersburg", "GMT-04:00-EDT-America/Indiana/Vevay", "GMT-05:00-CDT-America/Chicago", "GMT-05:00-CDT-America/Indiana/Tell_City", "GMT-05:00-CDT-America/Indiana/Knox", "GMT-05:00-CDT-America/Menominee", "GMT-05:00-CDT-America/North_Dakota/Center", "GMT-05:00-CDT-America/North_Dakota/New_Salem", "GMT-05:00-CDT-America/North_Dakota/Beulah", "GMT-06:00-MDT-America/Denver", "GMT-06:00-MDT-America/Boise", "GMT-06:00-MDT-America/Shiprock", "GMT-07:00-MST-America/Phoenix", "GMT-07:00-PDT-America/Los_Angeles", "GMT-08:00-AKDT-America/Anchorage", "GMT-08:00-AKDT-America/Juneau", "GMT-08:00-AKDT-America/Sitka", "GMT-08:00-AKDT-America/Yakutat", "GMT-08:00-AKDT-America/Nome", "GMT-09:00-HADT-America/Adak", "GMT-08:00-MeST-America/Metlakatla", "GMT-10:00-HST-Pacific/Honolulu", "GMT-03:00-UYT-America/Montevideo", "GMT+05:00-UZT-Asia/Samarkand", "GMT+05:00-UZT-Asia/Tashkent", "GMT+01:00-CET-Europe/Vatican", "GMT-04:00-AST-America/St_Vincent", "GMT-04:30-VET-America/Caracas", "GMT-04:00-AST-America/Tortola", "GMT-04:00-AST-America/St_Thomas", "GMT+07:00-ICT-Asia/Ho_Chi_Minh", "GMT+11:00-VUT-Pacific/Efate", "GMT+12:00-WFT-Pacific/Wallis", "GMT+14:00-WSDT-Pacific/Apia", "GMT+03:00-AST-Asia/Aden", "GMT+03:00-EAT-Indian/Mayotte", "GMT+02:00-SAST-Africa/Johannesburg", "GMT+02:00-CAT-Africa/Lusaka", "GMT+02:00-CAT-Africa/Harare" ] }, "useproxyport": { "type": "string", "enum": [ "ENABLED", "DISABLED" ] } }, "$schema": "http://json-schema.org/draft-04/schema#", "title": "nsparam" }
o32020
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": {}, "additionalProperties": false }
o47040
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "order_details": { "properties": { "item": { "description": "The item being ordered", "type": "string" }, "price": { "description": "The price per unit of the item", "type": "number" }, "quantity": { "description": "The quantity of the item being ordered", "type": "integer" } }, "required": [ "item", "quantity", "price" ], "type": "object" } }, "required": [ "customer_name", "order_details" ], "type": "object" }
generate_invoice_159c0a0a
{ "additionalProperties": false, "definitions": { "custom": { "additionalProperties": false, "id": "/custom", "properties": { "authorizeFromDatasetIds": { "items": { "maxLength": 1024, "minLength": 1, "type": "string" }, "type": "array", "_uniqueItems": true }, "query": { "type": "string" } }, "required": [ "query" ], "type": "object" }, "expiration": { "additionalProperties": false, "id": "/expiration", "properties": { "delete": { "type": "boolean" }, "enabled": { "type": "boolean" }, "time": { "type": "integer" } }, "required": [ "enabled", "time" ], "type": "object" }, "publicAccess": { "additionalProperties": false, "id": "/publicAccess", "properties": { "enabled": { "type": "boolean" }, "limit": { "minimum": 1, "type": "integer" }, "queryFilter": { "type": "string" } }, "required": [ "enabled", "queryFilter" ], "type": "object" }, "source": { "additionalProperties": false, "id": "/source", "properties": { "datasetId": { "maxLength": 1024, "minLength": 1, "type": "string" }, "hiddenColumns": { "items": { "maxLength": 128, "minLength": 1, "type": "string" }, "type": "array", "_uniqueItems": true }, "publicAccess": { "$ref": "#/definitions/publicAccess" }, "queryFilter": { "type": "string" }, "tableId": { "maxLength": 1024, "minLength": 1, "type": "string" }, "visibleColumns": { "items": { "maxLength": 128, "minLength": 1, "type": "string" }, "type": "array", "_uniqueItems": true } }, "required": [ "datasetId", "tableId" ], "type": "object" }, "sourceAccessControl": { "additionalProperties": false, "id": "/sourceAccessControl", "properties": { "enabled": { "type": "boolean" }, "labelColumn": { "maxLength": 128, "minLength": 1, "type": "string" }, "labelColumnDelimiter": { "type": "string" } }, "required": [ "enabled", "labelColumn" ], "type": "object" } }, "properties": { "accessControl": { "$ref": "#/definitions/sourceAccessControl" }, "authorizedViewId": { "type": "string" }, "createdBy": { "type": "string" }, "custom": { "$ref": "#/definitions/custom" }, "datasetId": { "maxLength": 1024, "minLength": 1, "type": "string" }, "description": { "type": "string" }, "expiration": { "$ref": "#/definitions/expiration" }, "name": { "maxLength": 1024, "minLength": 1, "type": "string" }, "projectId": { "type": "string" }, "rowId": { "type": "string" }, "source": { "$ref": "#/definitions/source" } }, "required": [ "projectId", "name", "description", "datasetId" ], "type": "object" }
o6322
{ "id": "https://github.com/ThreeSixtyGiving/standard/blob/master/schema/360-giving-schema.json", "$schema": "http://json-schema.org/draft-04/schema#", "title": "Three Sixty Giving Data Standard Schema", "type": "object", "definitions": { "currency": { "type": "string", "description": "The currency, using a three-digit currency code from [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) ", "weight": 5.02, "enum": [ "GBP", "USD", "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD" ], "title": "Currency" }, "Transaction": { "type": "object", "properties": { "id": { "type": "string", "description": "Identifier", "weight": 0.001, "title": "Identifier" }, "transactionDate": { "_format": "date-time", "type": "string", "description": "When did this transaction take place? Please use YYYY-MM-DD format.", "weight": 5, "title": "Transaction date" }, "currency": { "$ref": "#/definitions/currency" }, "value": { "type": "integer", "description": "The total value of this transaction.", "weight": 6, "title": "Value" }, "valueDate": { "_format": "date-time", "type": [ "string", "null" ], "description": "The date that this value was set (to allow historical currency conversion). The date must be in ISO 8601 format (YYYY-MM-DD).", "weight": 6.1, "title": "Value date" }, "description": { "type": [ "string", "null" ], "description": "A description of this transaction.", "weight": 9, "title": "Description" }, "provider": { "type": [ "string", "null" ], "description": "The organisation identifier of the provider of transaction funds.", "weight": 0.6, "title": "Provider" }, "recipient": { "type": [ "string", "null" ], "description": "The organisation identifier of the recipient of transaction funds.", "weight": 0.7, "title": "Recipient" }, "dateModified": { "_format": "date-time", "type": "string", "description": "When information about this transaction was last updated.", "weight": 25, "title": "Last modified" } } }, "Documents": { "type": "object", "properties": { "id": { "type": "string", "description": "An identifier for this document.", "weight": 0.001, "title": "Identifier" }, "title": { "type": [ "string", "null" ], "description": "The document title", "weight": 1.05, "title": "Title" }, "url": { "type": [ "string", "null" ], "_format": "uri", "description": "The URL of the document.", "weight": 11.01, "title": "Web Address" }, "description": { "type": [ "string", "null" ], "description": "A description of the document", "weight": 9, "title": "Description" }, "documentType": { "type": [ "string", "null" ], "description": "A document category. For example, 'Application Form', 'Photo' or 'Project Report'. In future, 360 Giving will provide a codelist of document types.", "weight": 0.8, "title": "Document Type" }, "dateModified": { "_format": "date-time", "type": "string", "description": "What was this information last modified?", "weight": 25, "title": "Last modified" } } }, "Location": { "type": "object", "properties": { "id": { "type": "string", "description": "Location identifier", "weight": 0.001, "title": "Identifier" }, "name": { "type": [ "string", "null" ], "description": "A name for this location.", "weight": 1.1, "title": "Name" }, "countryCode": { "type": [ "string", "null" ], "enum": [ "GB", "AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "US", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW" ], "description": "The ISO Country Code of the location of this activity.", "weight": 2, "title": "Country Code" }, "latitude": { "type": [ "string", "null" ], "description": "The latitude of a point location", "weight": 4.001, "title": "Latitude" }, "longitude": { "type": [ "string", "null" ], "description": "The longitude of a point location", "weight": 4.002, "title": "Longitude" }, "description": { "type": [ "string", "null" ], "description": "A description of this location. This could include details of the element of the activity that takes place here.", "weight": 9, "title": "Description" }, "geoCode": { "type": [ "string", "null" ], "description": "A code referring to a geographical area, drawn from an established gazetteer. For example, the code for a local authority ward, or parliamentary constituency.", "weight": 5, "title": "Geographic Code" }, "geoCodeType": { "type": [ "string", "null" ], "description": "The type of Geographic Code (geoCode) used (e.g. Ward, Parliamentary Constituency etc.). This value for this field should be drawn from the [codelist of geographic code types](https://github.com/ThreeSixtyGiving/standard/tree/master/codelists/geoCodeType.csv).", "weight": 5.01, "title": "Geographic Code Type" }, "dateModified": { "_format": "date-time", "type": "string", "description": "The date when location information was last modified.", "weight": 25, "title": "Last modified" } } }, "Classification": { "type": "object", "properties": { "vocabulary": { "type": "string", "description": "A vocabulary used for this classification.", "weight": 8, "title": "Vocabulary" }, "code": { "type": "string", "description": "A codelist value in the chosen vocabulary.", "weight": 9, "title": "Code" }, "title": { "type": [ "string", "null" ], "description": "The title of this classification.", "weight": 1.05, "title": "Title" }, "description": { "type": [ "string", "null" ], "description": "A description of this classification.", "weight": 9, "title": "Description" }, "url": { "type": [ "string", "null" ], "_format": "uri", "description": "A web link to more details of this classification.", "weight": 9, "title": "URL" }, "dateModified": { "_format": "date-time", "type": "string", "description": "-", "weight": 25, "title": "Last modified" } } }, "GrantProgramme": { "type": "object", "properties": { "code": { "type": "string", "description": "An identifier for this grant programme.", "weight": 9, "title": "Code" }, "title": { "type": [ "string", "null" ], "description": "The title of this grant programme.", "weight": 1.05, "title": "Title" }, "description": { "type": [ "string", "null" ], "description": "A description of this grant programme.", "weight": 9, "title": "Description" }, "url": { "type": [ "string", "null" ], "_format": "uri", "description": "A web link to more details of this grant programme.", "weight": 9, "title": "URL" }, "dateModified": { "_format": "date-time", "type": "string", "description": "-", "weight": 25, "title": "Last modified" } } }, "Organization": { "type": "object", "required": [ "id", "name" ], "properties": { "id": { "type": "string", "description": "A globally unique identifier for this organisation. This is important to enable data on funders and recipients to be linked up across different grant-makers. The [Organisation Identifier Standard](http://docs.threesixtygiving.org/identifiers/#organisation-identifier) guidance explains how to create this ID, based either on the known company or charity number, or upon identifiers held in the grant-maker's internal systems.", "weight": 0.001, "title": "Identifier" }, "name": { "type": "string", "description": "Organisation name", "weight": 1.1, "title": "Name" }, "department": { "type": "string", "description": "The department or sub-unit of this organisation making or receiving the grant.", "title": "Department" }, "contactName": { "type": "string", "description": "-", "weight": 2, "title": "Contact Name" }, "charityNumber": { "type": "string", "description": "Registered charity number, if applicable.", "weight": 6.01, "title": "Charity Number" }, "companyNumber": { "type": "string", "description": "Registered UK company number, if applicable.", "weight": 6.02, "title": "Company Number" }, "streetAddress": { "type": "string", "description": "Building number and street name.", "weight": 3.1, "title": "Street Address" }, "addressLocality": { "type": "string", "description": "City or town.", "weight": 3.2, "title": "City" }, "addressRegion": { "type": "string", "description": "County", "weight": 3.3, "title": "County" }, "addressCountry": { "type": "string", "description": "Country", "weight": 3.5, "title": "Country" }, "postalCode": { "type": "string", "description": "Postal code (please try and provide a post code whenever possible)", "weight": 3.4, "title": "Postal Code" }, "telephone": { "type": "string", "description": "Contact phone number.", "weight": 3.5, "title": "Phone Number" }, "alternateName": { "type": "string", "description": "An alternative name for this organisation (e.g. trading name)", "weight": 6, "title": "Alternate Name" }, "email": { "type": "string", "description": "-", "weight": 5, "title": "Email" }, "description": { "type": "string", "description": "A short description of this organisation and its area of work", "weight": 9, "title": "Description" }, "organisationType": { "type": [ "string", "null" ], "description": "A description of this organisation", "enum": [ "Registered Charity", "Registered Company", "Community Group", "List to be updated" ], "weight": 5, "title": "Organisation Type" }, "url": { "type": "string", "_format": "uri", "description": "A web address for the Organisation", "weight": 11.01, "title": "Web Address" }, "location": { "items": { "$ref": "#/definitions/Location" }, "type": "array", "description": "-", "weight": 5, "title": "Location" }, "dateModified": { "_format": "date-time", "type": "string", "description": "-", "weight": 25, "title": "Last modified" } } }, "Event": { "definitions": {}, "type": "object", "title": "Event", "description": "An event in the life of the grant activity", "properties": { "title": { "type": "string", "description": "-", "weight": 1.05, "title": "Title" }, "startDate": { "_format": "date-time", "type": "string", "description": "Dates should be in YYYY-MM-DD format. If only a month or day are not available, these may be omitted.\n\nThis field records the start date of some event, activity or moment in the lifetime of a grant. At a minimum events/activities must have a start date. ", "weight": 4.1, "title": "Start Date" }, "endDate": { "_format": "date-time", "type": "string", "description": "Dates should be in YYYY-MM-DD format. If only a month or day are not available, these may be omitted.\n\nEvents or activities lasting more than one day should have either a duration (in days) or an end date.", "weight": 4.3, "title": "End Date" }, "duration": { "type": "string", "description": "Events or activities lasting more than one day should have either a duration (in days) or an end date.", "weight": 4.2, "title": "Duration (months)" }, "description": { "type": "string", "description": "-", "weight": 9, "title": "Description" }, "dateModified": { "_format": "date-time", "type": "string", "description": "-", "weight": 25, "title": "Last modified" } } } }, "required": [ "id", "title", "description", "currency", "amountAwarded", "awardDate" ], "properties": { "id": { "type": "string", "description": "The unique identifier for this grant. Made up of your 360 Giving prefix, and an identifier from your records. See the [360Giving Grant identifier guidance](http://docs.threesixtygiving.org/identifiers/#grant-identifier) for details.", "weight": 0.001, "title": "Identifier" }, "title": { "type": "string", "description": "A title for this grant activity. This should be under 140 characters long.", "weight": 1.05, "title": "Title" }, "description": { "type": "string", "description": "A short description of this grant activity.", "weight": 9, "title": "Description" }, "currency": { "$ref": "#/definitions/currency", "description": "The currency used in grant amounts and transactions using an ISO 3-Digit code. Use GBP for Pounds Sterling." }, "amountAppliedFor": { "type": "number", "description": "Total amount applied for. Include numbers only. DO NOT include any currency symbols such as \u00a3 or $. If you have provided detailed transaction information on a separate table, this should equal the sum of all the application transactions for this grant.", "weight": 5.03, "title": "Amount Applied For" }, "amountAwarded": { "type": "number", "description": "Total amount awarded (should be the same as the sum of any award transactions). DO NOT include any currency symbols such as \u00a3 or $. If you have provided detailed transaction information on a separate table, this should equal the sum of all the award transactions for this grant.", "weight": 5.04, "title": "Amount Awarded" }, "amountDisbursed": { "type": "number", "description": "Total amount disbursed (paid) to this grantee when this record was last updated. DO NOT include any currency symbols such as \u00a3 or $. If you have provided detailed transaction information on a separate table, this should equal the sum of all the disbursement transactions for this grant.", "weight": 5.04, "title": "Amount Disbursed" }, "awardDate": { "_format": "date-time", "type": "string", "description": "When was this grant awarded.", "weight": 4.3, "title": "Award Date" }, "url": { "type": "string", "_format": "uri", "description": "A url (Web Address) where further information about this grant can be found. This could point to the website of the recipient organisation, or might link to further details on the funders website.", "weight": 11.01, "title": "URL" }, "plannedDates": { "items": { "$ref": "#/definitions/Event" }, "type": "array", "weight": 5.041, "title": "Planned Dates", "description": "When did the applicant / implementing organisation originally intend this activity to take place. Dates should be in YYYY-MM-DD format. A date range can include a start date and duration in months, or a start and end date.", "rollUp": [ "startDate", "endDate", "duration" ] }, "actualDates": { "items": { "$ref": "#/definitions/Event" }, "type": "array", "description": "When did this grant activity actually take place. Dates should be in YYYY-MM-DD format. A date range can include a start date and duration in months, or a start and end date.", "weight": 5.041, "title": "Actual Dates" }, "recipientOrganization": { "items": { "$ref": "#/definitions/Organization" }, "type": "array", "weight": 5, "title": "Recipient Org", "description": "Details of the recipient of this grant.", "rollUp": [ "id", "name", "charityNumber", "companyNumber", "streetAddress", "addressLocality", "postalCode", "country", "description", "url" ] }, "beneficiaryLocation": { "items": { "$ref": "#/definitions/Location" }, "type": "array", "description": "Information about the location of beneficiaries. Further information about beneficiaries can be provided through classifications.", "weight": 6.01, "title": "Beneficiary Location", "rollUp": [ "name", "countryCode", "latitude", "longitude", "geoCode", "geoCodeType" ] }, "fundingOrganization": { "items": { "$ref": "#/definitions/Organization" }, "type": "array", "description": "Details of the funder", "weight": 4, "title": "Funding Org", "rollUp": [ "id", "name", "department" ] }, "grantProgramme": { "items": { "$ref": "#/definitions/GrantProgramme" }, "type": "array", "description": "-", "weight": 5, "title": "Grant Programme", "rollUp": [ "code", "title", "url" ] }, "fromOpenCall": { "type": "string", "enum": [ "Yes", "No" ], "description": "Was this grant made as the result of an open call for applications? Values should be 'Yes' or 'No'", "weight": 12, "title": "From an open call?" }, "fundingType": { "items": { "$ref": "#/definitions/Classification" }, "type": "array", "description": "-", "weight": 5, "title": "Funding Type" }, "classifications": { "items": { "$ref": "#/definitions/Classification" }, "type": "array", "description": "-", "weight": 5, "title": "Classifications" }, "relatedDocument": { "items": { "$ref": "#/definitions/Documents" }, "type": "array", "description": "-", "weight": 5, "title": "Related Document" }, "applicationTransaction": { "items": { "$ref": "#/definitions/Transaction" }, "type": "array", "description": "-", "weight": 5.02, "title": "Amount applied for" }, "commitmentTransaction": { "items": { "$ref": "#/definitions/Transaction" }, "type": "array", "description": "-", "weight": 5.02, "title": "Amount awarded" }, "disbursementTransaction": { "items": { "$ref": "#/definitions/Transaction" }, "type": "array", "description": "-", "weight": 5, "title": "Amount paid out" }, "relatedActivity": { "type": "array", "items": { "type": "string" }, "description": "The identifiers of any related activities (e.g. other grants given as part of a multi-grant project)", "weight": 15, "title": "Related Activity" }, "dateModified": { "_format": "date-time", "type": "string", "description": "The date when information on this grant was last updated", "weight": 25, "title": "Last modified" }, "dataSource": { "_format": "uri", "type": [ "string", "null" ], "description": "A web link pointing to the source of this data. This may be an original 360Giving data file, a file from which the data was converted, or an organisation website.", "weight": 25, "title": "Data Source" } } }
o15286
{ "properties": { "DisableSoftwareUpdateNotifications": { "description": "Disable software update notifications", "type": "boolean" }, "PayloadDescription": { "default": "App Store", "description": "Description of the payload", "type": "string" }, "PayloadDisplayName": { "default": "App Store", "description": "Name of the payload", "type": "string" }, "PayloadIdentifier": { "default": "com.apple.appstore", "description": "A unique identifier for the payload, dot-delimited. Usually root PayloadIdentifier+subidentifier", "type": "string" }, "PayloadOrganization": { "description": "This value describes the issuing organization of the profile, as displayed to the user", "type": "string" }, "PayloadType": { "default": "com.apple.appstore", "description": "The type of the payload, a reverse dns string", "type": "string" }, "PayloadUUID": { "default": "", "description": "Unique identifier for the payload (format 01234567-89AB-CDEF-0123-456789ABCDEF)", "pattern": "^[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}$", "type": "string" }, "PayloadVersion": { "default": 1, "description": "The version of the whole configuration profile.", "type": "number" }, "restrict-store-disable-app-adoption": { "description": "Disable App Adoption by users", "type": "boolean" }, "restrict-store-mdm-install-softwareupdate-only": { "description": "Restrict app installations to MDM-installed apps and software updates", "type": "boolean" }, "restrict-store-require-admin-to-install": { "description": "Restrict app installations to admin users", "type": "boolean" }, "restrict-store-softwareupdate-only": { "description": "Restrict app installations to software updates only", "type": "boolean" } }, "title": "com.apple.appstore", "type": "object" }
o61598
{ "additionalProperties": false, "description": "Message with batch metadata, passed from Shredder to Loader", "properties": { "base": { "_format": "uri", "description": "Blob storage path to the root of the batch", "maxLength": 1024, "type": "string" }, "compression": { "description": "File compression type", "enum": [ "GZIP", "NONE" ] }, "processor": { "description": "Identificator of a shredder sent the message", "properties": { "artifact": { "description": "Name of the artifact", "maxLength": 64, "type": "string" }, "version": { "description": "Semantic Version of the artifact", "maxLength": 16, "type": "string" } }, "required": [ "artifact", "version" ], "type": "object" }, "timestamps": { "description": "Set of timestampts associated with the batch", "properties": { "jobCompleted": { "_format": "date-time", "description": "Time when the batch shredding has been finished (and the message being prepared)", "type": "string" }, "jobStarted": { "_format": "date-time", "description": "Time when the batch started being shredded", "type": "string" }, "max": { "_format": "date-time", "description": "The latest collector_tstamp available in the batch", "type": [ "string", "null" ] }, "min": { "_format": "date-time", "description": "The earliest collector_stamp available in the batch", "type": [ "string", "null" ] } }, "required": [ "jobStarted", "jobCompleted", "min", "max" ], "type": "object" }, "types": { "description": "Set of Iglu URIs and the format they were shredded into", "items": { "properties": { "format": { "description": "File format in which the entities were shredded to", "enum": [ "TSV", "JSON" ] }, "schemaKey": { "description": "Iglu URI", "maxLength": 256, "type": "string" } }, "required": [ "schemaKey", "format" ] }, "type": "array" } }, "required": [ "base", "compression", "types", "timestamps", "processor" ], "self": { "format": "jsonschema", "name": "shredding_complete", "vendor": "com.snowplowanalytics.snowplow.storage", "version": "1-0-0" }, "type": "object" }
sp_373_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Text", "description": "Free-form, usually human-readable, text.", "type": "object", "properties": { "format": { "enum": [ "text", "html", "asciidoc" ], "description": "Indicates how the content should be parsed." }, "href": { "type": "string", "description": "References a related document containing human readable text." }, "content": { "type": "string", "description": "The text contents." } } }
o58216
{ "$schema": "http://json-schema.org/draft-07/schema#", "id": "http://snowflakepowe.red/stone/schema/controller", "type": "object", "additionalProperties": false, "definitions": { "ControllerElement": { "type": "object", "id": "http://snowflakepowe.red/stone/schema/controller/definitions/ControllerElement", "properties": { "Label": { "id": "http://snowflakepowe.red/stone/schema/controller/definitions/ControllerElement/Label", "type": "string" }, "Type": { "id": "http://snowflakepowe.red/stone/schema/controller/definitions/ControllerElement/Type", "type": "string", "enum": [ "Button", "Directional", "AxisPositive", "AxisNegative", "Trigger", "Rumble", "Keyboard", "Pointer", "PointerAxisPositive", "PointerAxisNegative", "Touchscreen", "Gyroscope" ] } }, "required": [ "Label", "Type" ] } }, "properties": { "LayoutID": { "id": "http://snowflakepowe.red/stone/schema/controller/LayoutID", "type": "string", "pattern": "^[A-Z0-9_]+(_CONTROLLER|_DEVICE|_LAYOUT)$" }, "FriendlyName": { "id": "http://snowflakepowe.red/stone/schema/controller/FriendlyName", "type": "string" }, "Platforms": { "id": "http://snowflakepowe.red/stone/schema/controller/Platforms", "type": "array", "minItems": 1, "_uniqueItems": true, "additionalItems": true, "items": { "id": "http://snowflakepowe.red/stone/schema/controller/Platforms/0", "type": "string" } }, "Layout": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout", "type": "object", "additionalProperties": false, "properties": { "ButtonA": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/ButtonA", "$ref": "#/definitions/ControllerElement" }, "ButtonB": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/ButtonB", "$ref": "#/definitions/ControllerElement" }, "ButtonC": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/ButtonC", "$ref": "#/definitions/ControllerElement" }, "ButtonX": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/ButtonX", "$ref": "#/definitions/ControllerElement" }, "ButtonY": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/ButtonY", "$ref": "#/definitions/ControllerElement" }, "ButtonZ": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/ButtonZ", "$ref": "#/definitions/ControllerElement" }, "ButtonL": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/ButtonL", "$ref": "#/definitions/ControllerElement" }, "ButtonR": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/ButtonR", "$ref": "#/definitions/ControllerElement" }, "ButtonStart": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/ButtonStart", "$ref": "#/definitions/ControllerElement" }, "ButtonSelect": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/ButtonSelect", "$ref": "#/definitions/ControllerElement" }, "ButtonGuide": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/ButtonGuide", "$ref": "#/definitions/ControllerElement" }, "ButtonClickL": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/ButtonClickL", "$ref": "#/definitions/ControllerElement" }, "ButtonClickR": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/ButtonClickR", "$ref": "#/definitions/ControllerElement" }, "Button0": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button0", "$ref": "#/definitions/ControllerElement" }, "Button1": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button1", "$ref": "#/definitions/ControllerElement" }, "Button2": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button2", "$ref": "#/definitions/ControllerElement" }, "Button3": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button3", "$ref": "#/definitions/ControllerElement" }, "Button4": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button4", "$ref": "#/definitions/ControllerElement" }, "Button5": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button5", "$ref": "#/definitions/ControllerElement" }, "Button6": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button6", "$ref": "#/definitions/ControllerElement" }, "Button7": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button7", "$ref": "#/definitions/ControllerElement" }, "Button8": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button8", "$ref": "#/definitions/ControllerElement" }, "Button9": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button9", "$ref": "#/definitions/ControllerElement" }, "Button10": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button10", "$ref": "#/definitions/ControllerElement" }, "Button11": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button11", "$ref": "#/definitions/ControllerElement" }, "Button12": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button12", "$ref": "#/definitions/ControllerElement" }, "Button13": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button13", "$ref": "#/definitions/ControllerElement" }, "Button14": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button14", "$ref": "#/definitions/ControllerElement" }, "Button15": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button15", "$ref": "#/definitions/ControllerElement" }, "Button16": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button16", "$ref": "#/definitions/ControllerElement" }, "Button17": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button17", "$ref": "#/definitions/ControllerElement" }, "Button18": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button18", "$ref": "#/definitions/ControllerElement" }, "Button19": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button19", "$ref": "#/definitions/ControllerElement" }, "Button20": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button20", "$ref": "#/definitions/ControllerElement" }, "Button21": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button21", "$ref": "#/definitions/ControllerElement" }, "Button22": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button22", "$ref": "#/definitions/ControllerElement" }, "Button23": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button23", "$ref": "#/definitions/ControllerElement" }, "Button24": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button24", "$ref": "#/definitions/ControllerElement" }, "Button25": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button25", "$ref": "#/definitions/ControllerElement" }, "Button26": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button26", "$ref": "#/definitions/ControllerElement" }, "Button27": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button27", "$ref": "#/definitions/ControllerElement" }, "Button28": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button28", "$ref": "#/definitions/ControllerElement" }, "Button29": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button29", "$ref": "#/definitions/ControllerElement" }, "Button30": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button30", "$ref": "#/definitions/ControllerElement" }, "Button31": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Button31", "$ref": "#/definitions/ControllerElement" }, "DirectionalN": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/DirectionalN", "$ref": "#/definitions/ControllerElement" }, "DirectionalE": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/DirectionalE", "$ref": "#/definitions/ControllerElement" }, "DirectionalS": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/DirectionalS", "$ref": "#/definitions/ControllerElement" }, "DirectionalW": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/DirectionalW", "$ref": "#/definitions/ControllerElement" }, "DirectionalNE": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/DirectionalNE", "$ref": "#/definitions/ControllerElement" }, "DirectionalNW": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/DirectionalNW", "$ref": "#/definitions/ControllerElement" }, "DirectionalSE": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/DirectionalSE", "$ref": "#/definitions/ControllerElement" }, "DirectionalSW": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/DirectionalSW", "$ref": "#/definitions/ControllerElement" }, "TriggerLeft": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/TriggerLeft", "$ref": "#/definitions/ControllerElement" }, "TriggerRight": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/TriggerRight", "$ref": "#/definitions/ControllerElement" }, "AxisLeftAnalogPositiveX": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/AxisLeftAnalogPositiveX", "$ref": "#/definitions/ControllerElement" }, "AxisLeftAnalogNegativeX": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/AxisLeftAnalogNegativeX", "$ref": "#/definitions/ControllerElement" }, "AxisLeftAnalogPositiveY": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/AxisLeftAnalogPositiveY", "$ref": "#/definitions/ControllerElement" }, "AxisLeftAnalogNegativeY": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/AxisLeftAnalogNegativeY", "$ref": "#/definitions/ControllerElement" }, "AxisRightAnalogPositiveX": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/AxisRightAnalogPositiveX", "$ref": "#/definitions/ControllerElement" }, "AxisRightAnalogNegativeX": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/AxisRightAnalogNegativeX", "$ref": "#/definitions/ControllerElement" }, "AxisRightAnalogPositiveY": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/AxisRightAnalogPositiveY", "$ref": "#/definitions/ControllerElement" }, "AxisRightAnalogNegativeY": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/AxisRightAnalogNegativeY", "$ref": "#/definitions/ControllerElement" }, "RumbleBig": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/RumbleBig", "$ref": "#/definitions/ControllerElement" }, "RumbleSmall": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/RumbleSmall", "$ref": "#/definitions/ControllerElement" }, "Pointer2D": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Pointer2D", "$ref": "#/definitions/ControllerElement" }, "Pointer3D": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Pointer3D", "$ref": "#/definitions/ControllerElement" }, "PointerAxisPositiveX": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/PointerAxisPositiveX", "$ref": "#/definitions/ControllerElement" }, "PointerAxisNegativeX": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/PointerAxisNegativeX", "$ref": "#/definitions/ControllerElement" }, "PointerAxisPositiveY": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/PointerAxisPositiveY", "$ref": "#/definitions/ControllerElement" }, "PointerAxisNegativeY": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/PointerAxisNegativeY", "$ref": "#/definitions/ControllerElement" }, "PointerAxisPositiveZ": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/PointerAxisPositiveZ", "$ref": "#/definitions/ControllerElement" }, "PointerAxisNegativeZ": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/PointerAxisNegativeZ", "$ref": "#/definitions/ControllerElement" }, "Keyboard": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Keyboard", "$ref": "#/definitions/ControllerElement" }, "Touchscreen": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Touchscreen", "$ref": "#/definitions/ControllerElement" }, "Gyroscope": { "id": "http://snowflakepowe.red/stone/schema/controller/Layout/Gyroscope", "$ref": "#/definitions/ControllerElement" } } } }, "required": [ "LayoutID", "FriendlyName", "Platforms", "Layout" ] }
o14404
{ "properties": { "keywords": { "description": "The keywords to search for in job listings", "items": { "type": "string" }, "type": "array" }, "location": { "description": "The location to search for jobs", "type": "string" }, "salary_range": { "properties": { "max_salary": { "description": "The maximum salary range", "type": "number" }, "min_salary": { "description": "The minimum salary range", "type": "number" } }, "type": "object" } }, "required": [ "keywords" ], "type": "object" }
search_jobs_1a0b0cfc
{ "$schema": "http://json-schema.org/draft-04/schema#", "name": "Package", "type": "object", "additionalProperties": false, "properties": { "formats": { "type": "array", "description": "List of available parsing formats confirguation.", "items": { "type": "object", "additionalProperties": false, "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Full name of the author." }, "email": { "type": "string", "description": "Email address of the author.", "format": "email" }, "homepage": { "type": "string", "description": "Homepage URL for the author.", "format": "uri" }, "role": { "type": "string", "description": "Author's role in the project." } } } }, "config": { "type": "object", "description": "Composer options.", "properties": { "process-timeout": { "type": "integer", "description": "The timeout in seconds for process executions, defaults to 300 (5mins)." } } } } }
o7276
{ "properties": { "check_in_date": { "description": "The check-in date for the hotel", "type": "string" }, "check_out_date": { "description": "The check-out date for the hotel", "type": "string" }, "location": { "description": "The city or town to find hotels in", "type": "string" }, "number_of_guests": { "description": "The number of guests staying at the hotel", "type": "integer" } }, "required": [ "location", "check_in_date", "check_out_date", "number_of_guests" ], "type": "object" }
find_hotels_c985c709
{ "type": "object", "properties": { "mib": { "type": "string" }, "modules": { "type": "object", "properties": { "processors": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "oid": { "type": "string" }, "num_oid": { "type": "string" }, "index": { "type": [ "integer", "string" ] }, "descr": { "type": "string" }, "precision": { "type": "integer" }, "value": { "type": "string" }, "type": { "type": "string" }, "skip_values": { "anyOf": [ { "type": "integer" }, { "type": "array", "items": { "anyOf": [ { "type": "integer" }, { "type": "object", "properties": { "oid": { "type": "string" }, "op": { "$ref": "#/definitions/comparison" }, "value": { "type": [ "integer", "string" ] } }, "additionalProperties": false, "required": [ "oid", "op", "value" ] } ] } } ] }, "entPhysicalIndex": { "type": "string" }, "warn_percent": { "type": "string" }, "snmp_flags": { "type": [ "string", "array" ] } }, "additionalProperties": false, "required": [ "num_oid", "oid" ] } } }, "additionalProperties": false, "required": [ "data" ] }, "sensors": { "type": "object", "properties": { "state": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "oid": { "type": "string" }, "value": { "type": "string" }, "group": { "type": "string" }, "low_limit": { "type": [ "number", "string" ] }, "low_warn_limit": { "type": [ "number", "string" ] }, "warn_limit": { "type": [ "number", "string" ] }, "high_limit": { "type": [ "number", "string" ] }, "skip_value_lt": { "type": "number" }, "skip_value_gt": { "type": "number" }, "num_oid": { "type": "string", "pattern": "^(\\.\\d+)+(\\.?\\{\\{ \\$index \\}\\})?(\\.\\d+)*$" }, "descr": { "type": "string" }, "index": { "type": [ "integer", "string" ] }, "states": { "type": "array", "items": { "type": "object", "properties": { "value": { "type": "integer" }, "descr": { "type": "string" }, "graph": { "type": "integer" }, "generic": { "type": "integer" } }, "additionalProperties": false, "required": [ "descr", "generic", "graph", "value" ] } }, "state_name": { "type": "string" }, "skip_values": { "anyOf": [ { "type": "integer" }, { "type": "array", "items": { "type": "object", "properties": { "oid": { "type": "string" }, "op": { "$ref": "#/definitions/comparison" }, "value": { "type": [ "integer", "string" ] } }, "required": [ "oid", "op", "value" ] } } ] }, "snmp_flags": { "type": [ "string", "array" ] }, "entPhysicalIndex": { "type": [ "integer", "string" ] }, "entPhysicalIndex_measured": { "type": "string" } }, "additionalProperties": false, "required": [ "descr", "num_oid", "oid", "states" ] } }, "options": { "$ref": "#/definitions/options" } }, "required": [ "data" ] }, "voltage": { "$ref": "#/definitions/sensor" }, "fanspeed": { "$ref": "#/definitions/sensor" }, "temperature": { "$ref": "#/definitions/sensor" }, "pre-cache": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "oid": { "type": "array", "items": { "type": "string" } }, "snmp_flags": { "type": [ "string", "array" ] } }, "additionalProperties": false, "required": [ "oid" ] } } }, "additionalProperties": false, "required": [ "data" ] }, "humidity": { "$ref": "#/definitions/sensor" }, "airflow": { "$ref": "#/definitions/sensor" }, "current": { "$ref": "#/definitions/sensor" }, "frequency": { "$ref": "#/definitions/sensor" }, "power": { "$ref": "#/definitions/sensor" }, "pressure": { "$ref": "#/definitions/sensor" }, "cooling": { "$ref": "#/definitions/sensor" }, "charge": { "$ref": "#/definitions/sensor" }, "runtime": { "$ref": "#/definitions/sensor" }, "dbm": { "$ref": "#/definitions/sensor" }, "load": { "$ref": "#/definitions/sensor" }, "chromatic_dispersion": { "$ref": "#/definitions/sensor" }, "delay": { "$ref": "#/definitions/sensor" }, "quality_factor": { "$ref": "#/definitions/sensor" }, "snr": { "$ref": "#/definitions/sensor" }, "waterflow": { "$ref": "#/definitions/sensor" }, "eer": { "$ref": "#/definitions/sensor" } } } } } }, "additionalProperties": false, "required": [ "modules" ], "definitions": { "sensor": { "type": "object", "properties": { "data": { "$ref": "#/definitions/data" }, "options": { "$ref": "#/definitions/options" } }, "additionalProperties": false, "required": [ "data" ] }, "data": { "type": "array", "items": { "type": "object", "properties": { "oid": { "type": "string" }, "num_oid": { "type": "string", "pattern": "^(\\.\\d+)+\\.?\\{\\{ \\$index \\}\\}(\\.\\d+)*$" }, "index": { "type": [ "integer", "string" ] }, "descr": { "type": "string" }, "divisor": { "type": "integer" }, "multiplier": { "type": "integer" }, "value": { "type": "string" }, "group": { "type": "string" }, "low_limit": { "type": [ "number", "string" ] }, "low_warn_limit": { "type": [ "number", "string" ] }, "warn_limit": { "type": [ "number", "string" ] }, "high_limit": { "type": [ "number", "string" ] }, "skip_value_lt": { "type": "number" }, "skip_value_gt": { "type": "number" }, "skip_values": { "type": [ "number", "array" ], "items": { "type": "object", "properties": { "oid": { "type": "string" }, "op": { "$ref": "#/definitions/comparison" }, "value": { "type": [ "integer", "string" ] } }, "additionalProperties": false, "required": [ "oid", "op", "value" ] } }, "snmp_flags": { "type": [ "string", "array" ] }, "entPhysicalIndex": { "type": [ "integer", "string" ] }, "entPhysicalIndex_measured": { "type": "string" }, "user_func": { "type": "string" } }, "additionalProperties": false, "required": [ "descr", "num_oid", "oid" ] } }, "options": { "type": "object", "properties": { "divisor": { "type": "integer" }, "skip_values": { "anyOf": [ { "type": "integer" }, { "type": "array", "items": { "type": "integer" } } ] }, "skip_values_lt": { "type": "integer" } }, "additionalProperties": false }, "comparison": { "type": "string", "enum": [ "=", "!=", "==", "!==", "<=", ">=", "<", ">", "starts", "ends", "contains", "regex", "not_starts", "not_ends", "not_contains", "not_regex", "in_array", "not_in_array" ] } } }
o80302
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle (if shape is triangle)", "type": "number" }, "height": { "description": "The height of the triangle (if shape is triangle)", "type": "number" }, "length": { "description": "The length of the rectangle (if shape is rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (if shape is circle)", "type": "number" }, "width": { "description": "The width of the rectangle (if shape is rectangle)", "type": "number" } }, "required": [ "radius", "length", "width", "base", "height" ], "type": "object" }, "shape": { "description": "The shape for which to calculate the area", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_3cb76502
{ "id": "https://github.com/bergloman/NodeProcessManager:topology", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "general": { "type": "object", "properties": { "description": { "type": "string" }, "heartbeat": { "type": "integer" }, "weight": { "type": "integer" }, "worker_affinity": { "type": "array", "items": { "type": "string" } }, "pass_binary_messages": { "type": "boolean" }, "wrapper": { "type": "object", "properties": { "log_level": { "type": "string", "enum": [ "debug", "log", "info", "normal", "warn", "error", "none" ] }, "ping_parent_timeout": { "type": "number" }, "ping_parent_interval": { "type": "number" }, "ping_child_timeout": { "type": "number" }, "ping_child_interval": { "type": "number" } }, "additionalProperties": false }, "initialization": { "type": "array", "items": { "type": "object", "properties": { "working_dir": { "type": "string" }, "cmd": { "type": "string" }, "init": { "type": "object", "additionalProperties": true }, "disabled": { "type": [ "boolean", "string" ] } }, "required": [ "working_dir", "cmd" ], "additionalProperties": false } }, "shutdown": { "type": "array", "items": { "type": "object", "properties": { "working_dir": { "type": "string" }, "cmd": { "type": "string" }, "init": { "type": "object", "additionalProperties": true }, "disabled": { "type": [ "boolean", "string" ] } }, "required": [ "working_dir", "cmd" ], "additionalProperties": false } }, "shutdown_hard": { "type": "array", "items": { "type": "object", "properties": { "working_dir": { "type": "string" }, "cmd": { "type": "string" }, "init": { "type": "object", "additionalProperties": true }, "disabled": { "type": [ "boolean", "string" ] } }, "required": [ "working_dir", "cmd" ], "additionalProperties": false } } }, "required": [ "heartbeat" ], "additionalProperties": false }, "spouts": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "type": { "enum": [ "module_class", "module_method", "inproc", "sys" ] }, "disabled": { "type": [ "boolean", "string" ] }, "working_dir": { "type": "string" }, "cmd": { "type": "string" }, "subtype": { "type": "string" }, "telemetry_timeout": { "type": "number" }, "init": { "type": "object", "additionalProperties": true } }, "required": [ "name", "working_dir", "cmd", "init" ], "additionalProperties": false } }, "bolts": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "type": { "enum": [ "module_class", "module_method", "inproc", "sys" ] }, "disabled": { "type": [ "boolean", "string" ] }, "working_dir": { "type": "string" }, "cmd": { "type": "string" }, "subtype": { "type": "string" }, "telemetry_timeout": { "type": "number" }, "inputs": { "type": "array", "items": { "type": "object", "properties": { "source": { "type": "string" }, "stream_id": { "type": "string" }, "disabled": { "type": [ "boolean", "string" ] } }, "required": [ "source" ], "additionalProperties": false } }, "init": { "type": "object", "additionalProperties": true }, "allow_parallel": { "type": "boolean" } }, "required": [ "name", "working_dir", "cmd", "inputs", "init" ], "additionalProperties": false } }, "variables": { "type": "object", "patternProperties": { "^.*$": { "type": "string" } } } }, "required": [ "general", "spouts", "bolts", "variables" ], "additionalProperties": false }
o69091
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "body": { "description": "The main content provided as HTML rendered from govspeak", "type": "string" }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "body": { "$ref": "#/definitions/body" }, "breadcrumbs": { "$ref": "#/definitions/hmrc_manual_breadcrumbs" }, "change_history": { "$ref": "#/definitions/change_history" }, "child_section_groups": { "$ref": "#/definitions/hmrc_manual_child_section_groups" }, "manual": { "$ref": "#/definitions/manual_section_parent" }, "organisations": { "$ref": "#/definitions/manual_organisations" }, "section_id": { "type": "string" } }, "required": [ "section_id", "manual" ], "type": "object" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "hmrc_manual_breadcrumbs": { "description": "Breadcrumbs for HMRC manuals based on section", "items": { "additionalProperties": false, "properties": { "base_path": { "$ref": "#/definitions/absolute_path" }, "section_id": { "type": "string" } }, "required": [ "base_path", "section_id" ], "type": "object" }, "type": "array" }, "hmrc_manual_child_section_groups": { "description": "Grouped sections of an HMRC manual. Differs from manuals as section_id is required and group titles are optional.", "items": { "additionalProperties": false, "properties": { "child_sections": { "items": { "additionalProperties": false, "properties": { "base_path": { "$ref": "#/definitions/absolute_path" }, "description": { "type": "string" }, "section_id": { "type": "string" }, "title": { "type": "string" } }, "required": [ "section_id", "title", "description", "base_path" ], "type": "object" }, "type": "array" }, "title": { "type": "string" } }, "required": [ "child_sections" ], "type": "object" }, "type": "array" }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "manual_organisations": { "description": "A manual\u2019s organisations. TODO: Switch to use organisations in links", "items": { "additionalProperties": false, "properties": { "abbreviation": { "type": "string" }, "title": { "type": "string" }, "web_url": { "type": "string" } }, "required": [ "title", "abbreviation", "web_url" ], "type": "object" }, "type": "array" }, "manual_section_parent": { "additionalProperties": false, "description": "The parent manual for a manual section", "properties": { "base_path": { "$ref": "#/definitions/absolute_path" } }, "required": [ "base_path" ], "type": "object" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "publishing_scheduled_at": { "_format": "date-time", "description": "When this content was last scheduled for publishing. Determined by the publishing intent sent by the publishing API.", "type": "string" }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "scheduled_publishing_delay_seconds": { "description": "The delay between the most recent scheduled and actual publishing times. Determined by the content store based on the publishing intent.", "type": "integer" }, "title": { "type": "string" }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "hmrc_manual_section" ], "type": "string" }, "first_published_at": { "anyOf": [ { "$ref": "#/definitions/first_published_at" }, { "type": "null" } ] }, "links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The parent content item.", "maxItems": 1 }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "anyOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "publishing_scheduled_at": { "anyOf": [ { "$ref": "#/definitions/publishing_scheduled_at" }, { "type": "null" } ] }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "scheduled_publishing_delay_seconds": { "anyOf": [ { "$ref": "#/definitions/scheduled_publishing_delay_seconds" }, { "type": "null" } ] }, "schema_name": { "enum": [ "hmrc_manual_section" ], "type": "string" }, "title": { "$ref": "#/definitions/title" }, "updated_at": { "_format": "date-time", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "base_path", "content_id", "description", "details", "document_type", "links", "locale", "public_updated_at", "schema_name", "title", "updated_at" ], "type": "object" }
o21259
{ "additionalProperties": false, "properties": { "args": { "items": { "type": "string" }, "type": "array" }, "backoffFactor": { "minimum": 1.0, "type": "number" }, "backoffSeconds": { "minimum": 0, "type": "integer" }, "cmd": { "type": "string" }, "constraints": {}, "container": { "additionalProperties": false, "properties": { "docker": { "additionalProperties": false, "properties": { "image": { "type": "string" }, "network": { "type": "string" }, "portMappings": { "items": { "additionalProperties": false, "properties": { "containerPort": { "maximum": 65535, "minimum": 0, "type": "integer" }, "hostPort": { "maximum": 65535, "minimum": 0, "type": "integer" }, "protocol": { "type": "string" }, "servicePort": { "maximum": 65535, "minimum": 0, "type": "integer" } }, "type": "object" }, "type": "array" } }, "required": [ "image" ], "type": "object" }, "type": { "type": "string" }, "volumes": { "items": { "additionalProperties": false, "properties": { "containerPath": { "type": "string" }, "hostPath": { "type": "string" }, "mode": { "type": "string" } }, "type": "object" }, "type": "array" } }, "type": "object" }, "cpus": { "minimum": 0, "type": "number" }, "dependencies": { "items": { "pattern": "^/?(([a-z0-9]|[a-z0-9][a-z0-9\\-]*[a-z0-9])\\.)*([a-z0-9]|[a-z0-9][a-z0-9\\-]*[a-z0-9])$", "type": "string" }, "type": "array" }, "disk": { "minimum": 0, "type": "number" }, "env": { "patternProperties": { ".*": { "type": "string" } }, "type": "object" }, "executor": { "type": "string" }, "healthChecks": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "gracePeriodSeconds": { "minimum": 0, "type": "integer" }, "intervalSeconds": { "minimum": 0, "type": "integer" }, "maxConsecutiveFailures": { "minimum": 0, "type": "integer" }, "path": { "type": "string" }, "portIndex": { "minimum": 0, "type": "integer" }, "protocol": { "type": "string" }, "timeoutSeconds": { "minimum": 0, "type": "integer" } }, "type": "object" }, "type": "array" }, "id": { "pattern": "^/?(([a-z0-9]|[a-z0-9][a-z0-9\\-]*[a-z0-9])\\.)*([a-z0-9]|[a-z0-9][a-z0-9\\-]*[a-z0-9])$", "type": "string" }, "instances": { "minimum": 0, "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "mem": { "minimum": 0, "type": "number" }, "ports": { "items": { "maximum": 65535, "minimum": 0, "type": "integer" }, "type": "array" }, "requirePorts": { "type": "boolean" }, "storeUrls": { "items": { "type": "string" }, "type": "array" }, "upgradeStrategy": { "additionalProperties": false, "properties": { "minimumHealthCapacity": { "maximum": 1.0, "minimum": 0.0, "type": "number" } }, "type": "object" }, "uris": { "items": { "type": "string" }, "type": "array" }, "user": { "type": "string" } }, "required": [ "id" ], "type": "object" }
o82282
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "characterization", "description": "A characterization of some observable condition (object or action)", "type": "object", "allOf": [ { "properties": { "object": { "type": "object", "description": "CybOX object that characterizes this construct" }, "action": { "type": "object", "description": "CybOX action that characterizes this construct" } } } ], "tlo": false }
o51226
{ "description": "Sysctl defines a kernel parameter to be set", "properties": { "name": { "description": "Name of a property to set", "type": [ "string", "null" ] }, "value": { "description": "Value of a property to set", "type": [ "string", "null" ] } }, "required": [ "name", "value" ], "type": "object" }
kb_1057_Normalized
{ "properties": { "check_in_date": { "description": "The check-in date for the hotel", "format": "date", "type": "string" }, "check_out_date": { "description": "The check-out date for the hotel", "format": "date", "type": "string" }, "guests": { "description": "The number of guests", "type": "integer" }, "location": { "description": "The location to search for hotels", "type": "string" } }, "required": [ "location", "check_in_date", "check_out_date", "guests" ], "type": "object" }
find_hotels_5299edca
{ "$schema": "http://json-schema.org/draft-04/schema", "allOf": [ { "properties": { "_id": { "description": "The id of the image being operated on", "type": "string" }, "app_name": { "$ref": "#/definitions/traits_trait_app_name_json" }, "body": { "$ref": "#/definitions/image_json", "description": "The image being inserted/updated/deleted" }, "date": { "_format": "date-time", "description": "When the operation should be considered performed", "type": "string" }, "display_date": { "_format": "date-time", "description": "The RFC3339-formatted dated time of the most recent date the image was (re)displayed on a public site.", "type": "string" }, "operation": { "description": "The identifier of the operation being performed", "enum": [ "insert", "update", "delete", "publish", "unpublish" ], "type": "string" }, "organization_id": { "description": "The id of the organization", "type": "string" }, "priority": { "$ref": "#/definitions/traits_trait_priority_json" }, "publish_date": { "_format": "date-time", "description": "When the image was published.", "type": "string" }, "submit_date": { "_format": "date-time", "description": "When this operation was submitted to Content API. Used for latency checking.", "type": "string" }, "type": { "description": "Identifies this as an ANS operation", "enum": [ "image-operation" ], "type": "string" }, "version": { "description": "The version of ANS this item is written in", "type": "string" } }, "required": [ "type", "operation", "_id", "organization_id" ] } ], "definitions": { "content_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "Holds common attributes of ANS Content objects.", "properties": { "_id": { "$ref": "#/definitions/traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "address": { "$ref": "#/definitions/traits_trait_address_json" }, "alignment": { "$ref": "#/definitions/traits_trait_alignment_json" }, "canonical_url": { "$ref": "#/definitions/traits_trait_canonical_url_json" }, "channels": { "$ref": "#/definitions/traits_trait_channel_json" }, "comments": { "$ref": "#/definitions/traits_trait_comments_json" }, "content_aliases": { "$ref": "#/definitions/traits_trait_content_aliases_json" }, "content_restrictions": { "$ref": "#/definitions/traits_trait_content_restrictions_json" }, "contributors": { "$ref": "#/definitions/traits_trait_contributors_json" }, "copyright": { "$ref": "#/definitions/traits_trait_copyright_json" }, "created_date": { "$ref": "#/definitions/traits_trait_created_date_json" }, "credits": { "$ref": "#/definitions/traits_trait_credits_json" }, "description": { "$ref": "#/definitions/traits_trait_description_json" }, "display_date": { "$ref": "#/definitions/traits_trait_display_date_json" }, "distributor": { "$ref": "#/definitions/traits_trait_distributor_json" }, "editor_note": { "$ref": "#/definitions/traits_trait_editor_note_json" }, "first_publish_date": { "$ref": "#/definitions/traits_trait_first_publish_date_json" }, "geo": { "$ref": "#/definitions/traits_trait_geo_json" }, "headlines": { "$ref": "#/definitions/traits_trait_headlines_json" }, "label": { "$ref": "#/definitions/traits_trait_label_json" }, "language": { "$ref": "#/definitions/traits_trait_locale_json" }, "last_updated_date": { "$ref": "#/definitions/traits_trait_last_updated_date_json" }, "location": { "$ref": "#/definitions/traits_trait_location_json" }, "owner": { "$ref": "#/definitions/traits_trait_owner_json" }, "pitches": { "$ref": "#/definitions/traits_trait_pitches_json" }, "planning": { "$ref": "#/definitions/traits_trait_planning_json" }, "promo_items": { "$ref": "#/definitions/traits_trait_promo_items_json" }, "publish_date": { "$ref": "#/definitions/traits_trait_publish_date_json" }, "related_content": { "$ref": "#/definitions/traits_trait_related_content_json" }, "revision": { "$ref": "#/definitions/traits_trait_revision_json" }, "short_url": { "$ref": "#/definitions/traits_trait_short_url_json" }, "slug": { "$ref": "#/definitions/traits_trait_slug_json" }, "source": { "$ref": "#/definitions/traits_trait_source_json" }, "status": { "$ref": "#/definitions/traits_trait_status_json" }, "subheadlines": { "$ref": "#/definitions/traits_trait_subheadlines_json" }, "subtype": { "$ref": "#/definitions/traits_trait_subtype_json" }, "syndication": { "$ref": "#/definitions/traits_trait_syndication_json" }, "taxonomy": { "$ref": "#/definitions/traits_trait_taxonomy_json" }, "tracking": { "$ref": "#/definitions/traits_trait_tracking_json" }, "type": { "type": "string" }, "vanity_credits": { "$ref": "#/definitions/traits_trait_vanity_credits_json" }, "version": { "$ref": "#/definitions/traits_trait_version_json" }, "workflow": { "$ref": "#/definitions/traits_trait_workflow_json" } }, "required": [ "type", "version" ], "title": "A content object.", "type": "object" }, "image_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Holds attributes of an ANS image component. In the Arc ecosystem, these are stored in Anglerfish.", "properties": { "_id": { "$ref": "#/definitions/traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "address": { "$ref": "#/definitions/traits_trait_address_json" }, "alignment": { "$ref": "#/definitions/traits_trait_alignment_json" }, "alt_text": { "$ref": "#/definitions/traits_trait_alt_text_json" }, "canonical_url": { "$ref": "#/definitions/traits_trait_canonical_url_json" }, "caption": { "description": "Caption for the image.", "type": "string" }, "channels": { "$ref": "#/definitions/traits_trait_channel_json" }, "comments": { "$ref": "#/definitions/traits_trait_comments_json" }, "content_restrictions": { "$ref": "#/definitions/traits_trait_content_restrictions_json" }, "contributors": { "$ref": "#/definitions/traits_trait_contributors_json" }, "copyright": { "$ref": "#/definitions/traits_trait_copyright_json" }, "created_date": { "$ref": "#/definitions/traits_trait_created_date_json" }, "credits": { "$ref": "#/definitions/traits_trait_credits_json" }, "description": { "$ref": "#/definitions/traits_trait_description_json" }, "display_date": { "$ref": "#/definitions/traits_trait_display_date_json" }, "distributor": { "$ref": "#/definitions/traits_trait_distributor_json" }, "editor_note": { "$ref": "#/definitions/traits_trait_editor_note_json" }, "first_publish_date": { "$ref": "#/definitions/traits_trait_first_publish_date_json" }, "focal_point": { "$ref": "#/definitions/traits_trait_focal_point_json" }, "geo": { "$ref": "#/definitions/traits_trait_geo_json" }, "headlines": { "$ref": "#/definitions/traits_trait_headlines_json" }, "height": { "description": "Height for the image.", "type": "integer" }, "image_type": { "$ref": "#/definitions/traits_trait_image_type_json" }, "label": { "$ref": "#/definitions/traits_trait_label_json" }, "language": { "$ref": "#/definitions/traits_trait_locale_json" }, "last_updated_date": { "$ref": "#/definitions/traits_trait_last_updated_date_json" }, "licensable": { "description": "True if the image can legally be licensed to others.", "type": "boolean" }, "location": { "$ref": "#/definitions/traits_trait_location_json" }, "owner": { "$ref": "#/definitions/traits_trait_owner_json" }, "pitches": { "$ref": "#/definitions/traits_trait_pitches_json" }, "planning": { "$ref": "#/definitions/traits_trait_planning_json" }, "promo_items": { "$ref": "#/definitions/traits_trait_promo_items_json" }, "publish_date": { "$ref": "#/definitions/traits_trait_publish_date_json" }, "related_content": { "$ref": "#/definitions/traits_trait_related_content_json" }, "revision": { "$ref": "#/definitions/traits_trait_revision_json" }, "short_url": { "$ref": "#/definitions/traits_trait_short_url_json" }, "slug": { "$ref": "#/definitions/traits_trait_slug_json" }, "source": { "$ref": "#/definitions/traits_trait_source_json" }, "status": { "$ref": "#/definitions/traits_trait_status_json" }, "subheadlines": { "$ref": "#/definitions/traits_trait_subheadlines_json" }, "subtitle": { "description": "Subtitle for the image.", "type": "string" }, "subtype": { "$ref": "#/definitions/traits_trait_subtype_json" }, "syndication": { "$ref": "#/definitions/traits_trait_syndication_json" }, "taxonomy": { "$ref": "#/definitions/traits_trait_taxonomy_json" }, "tracking": { "$ref": "#/definitions/traits_trait_tracking_json" }, "type": { "enum": [ "image" ], "type": "string" }, "url": { "description": "URL for the image.", "type": "string" }, "vanity_credits": { "$ref": "#/definitions/traits_trait_vanity_credits_json" }, "version": { "$ref": "#/definitions/traits_trait_version_json" }, "width": { "description": "Width for the image.", "type": "integer" }, "workflow": { "$ref": "#/definitions/traits_trait_workflow_json" } }, "required": [ "type", "version" ], "title": "An image.", "type": "object" }, "redirect_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A redirect to another story.", "properties": { "_id": { "$ref": "#/definitions/traits_trait_id_json" }, "canonical_url": { "$ref": "#/definitions/traits_trait_canonical_url_json" }, "owner": { "$ref": "#/definitions/traits_trait_owner_json" }, "redirect_url": { "$ref": "#/definitions/traits_trait_canonical_url_json" }, "revision": { "$ref": "#/definitions/traits_trait_revision_json" }, "type": { "enum": [ "redirect" ], "type": "string" }, "version": { "$ref": "#/definitions/traits_trait_version_json" } }, "required": [ "type", "version", "canonical_url", "redirect_url" ], "title": "A redirect object.", "type": "object" }, "story_elements_custom_embed_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A custom embed element. Can be used to reference content from external providers about which little is known.", "properties": { "_id": { "$ref": "#/definitions/traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/traits_trait_alignment_json" }, "channels": { "$ref": "#/definitions/traits_trait_channel_json" }, "embed": { "additionalProperties": false, "description": "The embed data.", "properties": { "config": { "additionalProperties": false, "description": "Arbitrary configuration data generated by a plugin. Users are responsible for maintaining schema.", "patternProperties": { "^([a-zA-Z0-9_])*$": {} }, "properties": { "referent": { "not": {} }, "type": { "not": {} }, "version": { "not": {} } }, "title": "Embed Configuration", "type": "object" }, "id": { "description": "Foreign ID of embedded item.", "maxLength": 128, "minLength": 1, "title": "Embed ID", "type": "string" }, "url": { "description": "Provider URL for this embed item. When concatenated with Embed ID, should produce a URL that returns json metadata about the embedded content.", "maxLength": 512, "minLength": 1, "title": "Embed Provider URL", "type": "string" } }, "required": [ "id", "url" ], "title": "Embed", "type": "object" }, "subtype": { "$ref": "#/definitions/traits_trait_subtype_json" }, "type": { "enum": [ "custom_embed" ], "type": "string" } }, "required": [ "type", "embed" ], "title": "Custom Embed", "type": "object" }, "story_elements_raw_html_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "An html content element", "properties": { "_id": { "$ref": "#/definitions/traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/traits_trait_alignment_json" }, "channels": { "$ref": "#/definitions/traits_trait_channel_json" }, "content": { "description": "Any arbitrary chunk of HTML.", "type": "string" }, "subtype": { "$ref": "#/definitions/traits_trait_subtype_json" }, "type": { "enum": [ "raw_html" ] } }, "required": [ "type", "content" ], "type": "object" }, "traits_trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" }, "traits_trait_address_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "dependencies": { "extended_address": [ "street_address" ], "post_office_box": [ "street_address" ] }, "description": "An Address following the convention of http://microformats.org/wiki/hcard", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "country_name": { "type": "string" }, "extended_address": { "type": "string" }, "locality": { "type": "string" }, "post_office_box": { "type": "string" }, "postal_code": { "type": "string" }, "region": { "type": "string" }, "street_address": { "type": "string" } }, "title": "Address", "type": "object" }, "traits_trait_alignment_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A property used to determine horizontal positioning of a content element relative to the elements that immediately follow it in the element sequence.", "enum": [ "left", "right", "center" ], "title": "Alignment", "type": "string" }, "traits_trait_alt_text_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The direct ANS equivalent of the HTML 'alt' attribute. A description of the contents of an image for improved accessibility.", "title": "Alt Text", "type": "string" }, "traits_trait_app_name_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The name of the application that generated an operation. This is used by downstream consumers in conjunction with 'priority' to make decisions about optimization.", "title": "Application Name", "type": "string" }, "traits_trait_canonical_url_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The relative URL to this document on the website specified by the `canonical_website` field. In the Arc ecosystem, this will be populated by the content api from the arc-canonical-url service if present based on the canonical_website. In conjunction with canonical_website, it can be used to determine the SEO canonical url or open graph url. In a multi-site context, this field may be different from the website_url field.", "title": "Canonical URL", "type": "string" }, "traits_trait_channel_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An optional list of output types for which this element should be visible", "items": { "type": "string" }, "title": "Channel trait", "type": "array" }, "traits_trait_comments_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "Comment configuration data", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "allow_comments": { "description": "If false, commenting is disabled on this content.", "type": "boolean" }, "comments_period": { "description": "How long (in days) after publish date until comments are closed.", "type": "integer" }, "display_comments": { "description": "If false, do not render comments on this content.", "type": "boolean" }, "moderation_required": { "description": "If true, comments must be moderator-approved before being displayed.", "type": "boolean" } }, "title": "Comments", "type": "object" }, "traits_trait_content_aliases_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An list of alternate names that this content can be fetched by instead of id.", "items": { "pattern": "^([a-z])([a-z0-9-])*$", "type": "string" }, "title": "Aliases trait", "type": "array" }, "traits_trait_content_restrictions_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Trait that applies contains the content restrictions of an ANS object.", "properties": { "content_code": { "description": "The content restriction code/level/flag associated with the ANS object", "type": "string" }, "embargo": { "additionalProperties": false, "description": "Embargo configuration to enforce publishing restrictions. Embargoed content must not go live.", "properties": { "active": { "description": "The boolean flag to indicate if the embargo is active or not. If this field is false, ignore the embargo.", "type": "boolean" }, "description": { "description": "An optional description for the embargo.", "type": "string" }, "end_time": { "_format": "date-time", "description": "An optional end time for the embargo to indicate when it ends. When it's not defined, it means the embargo keeps applying. The end time should be ignored if active flag is false.", "type": "string" } }, "required": [ "active" ], "type": "object" }, "geo": { "additionalProperties": false, "description": "Geo-Restriction configuration that contains the restriction ids that this content should be associated with.", "properties": { "restrictions": { "description": "An array containing the geo-restriction objects. Limited to a size of 1 for now.", "items": { "additionalProperties": false, "description": "An object specifying the _id of the restriction this content should be associated with.", "properties": { "restriction_id": { "description": "The _id of the restriction that is stored in Global Settings.", "type": "string" } }, "required": [ "restriction_id" ], "type": "object" }, "maxItems": 1, "minItems": 1, "type": "array" } }, "required": [ "restrictions" ], "type": "object" } }, "title": "Content Restrictions", "type": "object" }, "traits_trait_contributors_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that holds information on who created and contributed to a given document in Arc.", "properties": { "created_by": { "description": "The Creator of the Document.", "properties": { "display_name": { "description": "The display name of the Arc user who created the Document", "type": "string" }, "user_id": { "description": "The unique ID of the Arc user who created the Document", "type": "string" } }, "type": "object" } }, "title": "Contributors", "type": "object" }, "traits_trait_copyright_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A copyright notice for the legal owner of this content. E.g., '\u00a9 1996-2018 The Washington Post.' Format may vary between organizations.", "title": "Copyright information", "type": "string" }, "traits_trait_created_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the content was originally created (RFC3339-formatted). In the Arc ecosystem, this will be automatically generated for stories in the Story API.", "title": "Created Date", "type": "string" }, "traits_trait_credits_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A list of people and groups attributed to this content, keyed by type of contribution. In the Arc ecosystem, references in this list will be denormalized into author objects from the arc-author-service.", "patternProperties": { "^[a-zA-Z0-9_]*": { "items": { "anyOf": [ { "$ref": "#/definitions/utils_author_json" }, { "$ref": "#/definitions/utils_reference_json" } ], "type": "object" }, "type": "array" } }, "properties": { "by": { "description": "The primary author(s) of this document. For a story, is is the writer or reporter. For an image, it is the photographer.", "items": { "anyOf": [ { "$ref": "#/definitions/utils_author_json" }, { "$ref": "#/definitions/utils_reference_json" } ], "type": "object" }, "title": "By", "type": "array" }, "photos_by": { "description": "The photographer(s) of supplementary images included in this document, if it is a story. Note that if this document is an image, the photographer(s) should appear in the 'by' slot.", "items": { "anyOf": [ { "$ref": "#/definitions/utils_author_json" }, { "$ref": "#/definitions/utils_reference_json" } ], "type": "object" }, "title": "Photos by", "type": "array" } }, "title": "Credit trait", "type": "object" }, "traits_trait_description_json": { "$ref": "#/definitions/utils_dictionary_json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "The descriptions, or blurbs, for the content.", "title": "Description", "type": "object" }, "traits_trait_display_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "The RFC3339-formatted dated time of the most recent date the story was (re)displayed on a public site.", "title": "Display_Date", "type": "string" }, "traits_trait_distributor_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Information about a third party that provided this content from outside this document's hosted organization.", "oneOf": [ { "additionalProperties": false, "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "category": { "description": "The machine-readable category of how this content was produced. Use 'staff' if this content was produced by an employee of the organization who owns this document repository. (Multisite note: content produced within a single *organization*, but shared across multiple *websites* should still be considered 'staff.') Use \u2018wires\u2019 if this content was produced for another organization and shared with the one who owns this document repository. Use 'freelance' if this content was produced by an individual on behalf of the organization who owns this document repository. Use 'stock' if this content is stock media distributed directly from a stock media provider. Use 'handout' if this is content provided from a source for an article (usually promotional media distributed directly from a company). Use 'other' for all other cases.", "enum": [ "staff", "wires", "freelance", "stock", "handout", "other" ], "type": "string" }, "mode": { "enum": [ "custom" ], "type": "string" }, "name": { "description": "The human-readable name of the distributor of this content. E.g., Reuters.", "type": "string" }, "subcategory": { "description": "The machine-readable subcategory of how this content was produced. E.g., 'freelance - signed'. May vary between organizations.", "type": "string" } } }, { "additionalProperties": false, "properties": { "mode": { "enum": [ "reference" ], "type": "string" }, "reference_id": { "description": "The ARC UUID of the distributor of this content. E.g., ABCDEFGHIJKLMNOPQRSTUVWXYZ.", "type": "string" } }, "required": [ "reference_id", "mode" ] } ], "title": "Distributor", "type": "object" }, "traits_trait_editor_note_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Additional information to be displayed near the content from the editor.", "title": "Editor_Note", "type": "string" }, "traits_trait_first_publish_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the story was first published.", "title": "First Publish Date", "type": "string" }, "traits_trait_focal_point_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Coordinates representing the 'visual center' of an image. The X axis is horizontal line and the Y axis the vertical line, with 0,0 being the LEFT, TOP of the image.", "properties": { "x": { "description": "The coordinate point on the horizontal axis", "type": "number" }, "y": { "description": "The coordinate point on the vertical axis", "type": "number" } }, "required": [ "x", "y" ], "title": "Focal Point", "type": "object" }, "traits_trait_geo_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Latitidue and Longitude of the content", "properties": { "latitude": { "type": "number" }, "longitude": { "type": "number" } }, "title": "Geo", "type": "object" }, "traits_trait_headlines_json": { "$ref": "#/definitions/utils_dictionary_json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "The headline(s) or title for this content. The 'basic' key is required.", "title": "Headlines", "type": "object" }, "traits_trait_id_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A globally unique identifier of the content in the ANS repository.", "title": "Globally Unique ID trait", "type": "string" }, "traits_trait_image_type_json": { "$schema": "http://json-schema.org/draft-04/schema#", "category": { "description": "The machine-readable enumeration of valid image types.", "enum": [ "photograph", "graphic", "illustration", "thumbnail" ], "type": "string" }, "description": "A more specific category for an image.", "title": "Image Type", "type": "string" }, "traits_trait_label_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "What the Washington Post calls a Kicker", "patternProperties": { "^[a-zA-Z0-9_]*$": { "additionalProperties": false, "description": "Additional user-defined keyed label objects.", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "display": { "description": "If false, this label should be hidden.", "type": "boolean" }, "text": { "description": "The text of this label.", "type": "string" }, "url": { "description": "An optional destination url of this label.", "type": "string" } }, "required": [ "text" ], "type": "object" } }, "properties": { "basic": { "additionalProperties": false, "description": "The default label object for this piece of content.", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "display": { "description": "If false, this label should be hidden.", "type": "boolean" }, "text": { "description": "The text of this label.", "type": "string" }, "url": { "description": "An optional destination url of this label.", "type": "string" } }, "required": [ "text" ], "type": "object" } }, "title": "Label", "type": "object" }, "traits_trait_last_updated_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the content was last updated (RFC3339-formatted).", "title": "Last Updated Date", "type": "string" }, "traits_trait_locale_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The primary language of the content. The value should follow IETF BCP47. (e.g. 'en', 'es-419', etc.) ", "title": "Locale", "type": "string" }, "traits_trait_location_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A description of the location, useful if a full address or lat/long specification is overkill.", "title": "Location related trait", "type": "string" }, "traits_trait_owner_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Various unrelated fields that should be preserved for backwards-compatibility reasons. See also trait_source.", "properties": { "id": { "description": "The machine-readable unique identifier of the organization whose database this content is stored in. In Arc, this is equivalent to ARC_ORG_NAME.", "type": "string" }, "name": { "description": "Deprecated in 0.10.9. See `distributor.name`. (Formerly: The human-readable name of original producer of content. Distinguishes between Wires, Staff and other sources.)", "type": "string" }, "sponsored": { "description": "True if this content is advertorial or native advertising.", "type": "boolean" } }, "title": "Owner information ", "type": "object" }, "traits_trait_pitches_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents a story's pitches. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "platform": { "description": "A list of the story's pitches to a platform.", "items": { "$ref": "#/definitions/traits_trait_platform_pitch_json" }, "type": "array" }, "publication": { "description": "A list of the story's pitches to a publication.", "items": { "$ref": "#/definitions/traits_trait_publication_pitch_json" }, "type": "array" } }, "title": "Pitches", "type": "object" }, "traits_trait_planning_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that applies planning information to a document or resource. In the Arc ecosystem, this data is generated by WebSked. Newsroom use only. All these fields should be available and editable in WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "budget_line": { "description": "Used for the newsroom to identify what the story is about, especially if a user is unfamiliar with the slug of a story and the headline or they do not yet exist. Newsroom use only.", "title": "Budget Line", "type": "string" }, "deadline_miss": { "description": "The delta between the story's planned publish date and actual first publish time, in minutes.", "type": "integer" }, "internal_note": { "description": "This note is used for shared communication inside the newsroom.", "title": "Internal Note", "type": "string" }, "scheduling": { "additionalProperties": false, "description": "Scheduling information.", "properties": { "planned_publish_date": { "_format": "date-time", "description": "When the content is planned to be published.", "type": "string" }, "scheduled_publish_date": { "_format": "date-time", "description": "When the content was first published.", "type": "string" }, "will_have_gallery": { "description": "Will this content have galleries?", "type": "boolean" }, "will_have_graphic": { "description": "Will this content have graphics?", "type": "boolean" }, "will_have_image": { "description": "Will this content have images?", "type": "boolean" }, "will_have_video": { "description": "Will this content have videos?", "type": "boolean" } }, "type": "object" }, "story_length": { "additionalProperties": false, "description": "Story length information.", "properties": { "character_count_actual": { "description": "The current number of characters in the story.", "type": "integer" }, "character_count_planned": { "description": "The anticipated number of characters in the story.", "type": "integer" }, "character_encoding": { "description": "The encoding used for counting characters in the story.", "type": "string" }, "inch_count_actual": { "description": "The current length of the story in inches.", "type": "integer" }, "inch_count_planned": { "description": "The anticipated length of the story in inches.", "type": "integer" }, "line_count_actual": { "description": "The current length of the story in lines.", "type": "integer" }, "line_count_planned": { "description": "The anticipated length of the story in lines.", "type": "integer" }, "word_count_actual": { "description": "Current number of words.", "type": "integer" }, "word_count_planned": { "description": "The anticipated number of words in the story.", "type": "integer" } }, "type": "object" }, "websked_sort_date": { "_format": "date-time", "description": "Date to be used for chronological sorting in WebSked.", "type": "string" } }, "title": "Scheduling information", "type": "object" }, "traits_trait_platform_pitch_event_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents an update event for a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "note": { "description": "Optional note associated with this update.", "type": "string" }, "status": { "description": "The current status of the pitch.", "pattern": "^([a-z]|[ ])*$", "type": "string" }, "time": { "_format": "date-time", "description": "The time of this update.", "type": "string" }, "user_id": { "description": "The ID of the user who made this update.", "type": "string" } }, "title": "Platform pitch event", "type": "object" }, "traits_trait_platform_pitch_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents a pitch to a platform. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "creation_event": { "$ref": "#/definitions/traits_trait_platform_pitch_event_json" }, "latest_event": { "$ref": "#/definitions/traits_trait_platform_pitch_event_json" }, "platform_path": { "description": "The path of the platform that this pitch targets.", "type": "string" } }, "title": "Platform pitch", "type": "object" }, "traits_trait_priority_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The priority identifier of this operation. This is used by downstream consumers to make decisions about optimization. The value 'standard' indicates an operation generated from a UI or live update. The value 'ingestion' indicates an operation generated by a migration script or background import. Note that this represents a request for priority consideration from event-generating apps and downstream applications are not obligated to honor it.", "enum": [ "standard", "ingestion" ], "title": "Priority", "type": "string" }, "traits_trait_promo_items_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Lists of promotional content to use when highlighting the story. In the Arc ecosystem, references in these lists will be denormalized.", "patternProperties": { ".*": { "oneOf": [ { "$ref": "#/definitions/content_json" }, { "$ref": "#/definitions/utils_reference_json" }, { "$ref": "#/definitions/story_elements_raw_html_json" }, { "$ref": "#/definitions/story_elements_custom_embed_json" } ] } }, "properties": { "basic": { "oneOf": [ { "$ref": "#/definitions/content_json" }, { "$ref": "#/definitions/utils_reference_json" }, { "$ref": "#/definitions/story_elements_raw_html_json" }, { "$ref": "#/definitions/story_elements_custom_embed_json" } ] } }, "title": "Promo Items", "type": "object" }, "traits_trait_publication_pitch_event_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents an update event for a pitch to a publication. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "edition_id": { "description": "The ID of the publication edition that this pitch targets.", "type": "string" }, "edition_time": { "_format": "date-time", "description": "The time of the publication edition that this pitch targets.", "type": "string" }, "note": { "description": "Optional note associated with this update.", "type": "string" }, "status": { "description": "The current status of the pitch.", "pattern": "^([a-z]|[ ])*$", "type": "string" }, "time": { "_format": "date-time", "description": "The time of this update.", "type": "string" }, "user_id": { "description": "The ID of the user who made this update.", "type": "string" } }, "title": "Publication pitch event", "type": "object" }, "traits_trait_publication_pitch_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that represents a pitch to a publication. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "creation_event": { "$ref": "#/definitions/traits_trait_publication_pitch_event_json" }, "latest_event": { "$ref": "#/definitions/traits_trait_publication_pitch_event_json" }, "publication_id": { "description": "The ID of the publication that this pitch targets.", "type": "string" } }, "title": "Publication pitch", "type": "object" }, "traits_trait_publish_date_json": { "$schema": "http://json-schema.org/draft-04/schema#", "_format": "date-time", "description": "When the story was published.", "title": "Publish_Date", "type": "string" }, "traits_trait_related_content_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Lists of content items or references this story is related to, arbitrarily keyed. In the Arc ecosystem, references in this object will be denormalized into the fully-inflated content objects they represent.", "patternProperties": { ".*": { "items": { "anyOf": [ { "$ref": "#/definitions/content_json" }, { "$ref": "#/definitions/utils_reference_json" }, { "$ref": "#/definitions/story_elements_custom_embed_json" } ], "type": "object" }, "type": "array" } }, "properties": { "redirect": { "description": "An attached redirect. In Arc, when this content item is fetched by url, content api will instead return this redirect object with appropriate headers. In all other cases, this content should be treated normally.", "items": { "$ref": "#/definitions/redirect_json" }, "maxItems": 1, "type": "array" } }, "title": "Related_Content", "type": "object" }, "traits_trait_revision_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that applies revision information to a document. In the Arc ecosystem, many of these fields are populated in stories by the Story API.", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "branch": { "description": "The name of the branch this revision was created on.", "type": "string" }, "editions": { "description": "A list of identifiers of editions that point to this revision.", "items": { "type": "string" }, "type": "array" }, "parent_id": { "description": "The unique id of the revision that this revisions was branched from, or preceded it on the current branch.", "type": "string" }, "published": { "description": "Whether or not this revision's parent story is published, in any form or place", "type": "boolean" }, "revision_id": { "description": "The unique id of this revision.", "type": "string" }, "user_id": { "description": "The unique user id of the person who created this revision.", "type": "string" } }, "title": "Revision", "type": "object" }, "traits_trait_short_url_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A url-shortened version of the canonical url.", "title": "Short_Url", "type": "string" }, "traits_trait_slug_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A short reference name for internal editorial use", "title": "Slug", "type": "string" }, "traits_trait_social_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Links to various social media", "items": { "additionalProperties": {}, "properties": { "site": { "type": "string" }, "url": { "type": "string" } }, "type": "object" }, "title": "Social Links", "type": "array" }, "traits_trait_source_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Information about the original source and/or owner of this content", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "edit_url": { "description": "A link to edit this content in its source CMS.", "type": "string" }, "name": { "description": "Deprecated in 0.10.9. See `distributor.name`. (Formerly: The human-readable name of the organization who first produced this content. E.g., 'Reuters'.)", "type": "string" }, "source_id": { "description": "The id of this content in a foreign CMS.", "type": "string" }, "source_type": { "description": "Deprecated in 0.10.9. See `distributor.category` and `distributor.subcategory`. (Formerly: The method used to enter this content. E.g. 'staff', 'wires'.)", "type": "string" }, "system": { "description": "The software (CMS or editor) that was used to enter this content. E.g., 'wordpress', 'ellipsis'.", "type": "string" } }, "title": "Source", "type": "object" }, "traits_trait_status_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Optional field to story story workflow related status (e.g. published/embargoed/etc)", "title": "Status", "type": "string" }, "traits_trait_subheadlines_json": { "$ref": "#/definitions/utils_dictionary_json", "$schema": "http://json-schema.org/draft-04/schema#", "description": "The sub-headline(s) for the content.", "title": "Sub-Headlines", "type": "object" }, "traits_trait_subtype_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.", "title": "Subtype or Template", "type": "string" }, "traits_trait_syndication_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Key-boolean pair of syndication services where this article may go", "patternProperties": { ".*": { "type": "boolean" } }, "properties": { "external_distribution": { "description": "Necessary for fulfilling contractual agreements with third party clients", "type": "boolean" }, "search": { "description": "Necessary so that we can filter out all articles that editorial has deemed should not be discoverable via search", "type": "boolean" } }, "title": "Syndication", "type": "object" }, "traits_trait_taxonomy_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Holds the collection of tags, categories, keywords, etc that describe content.", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "associated_tasks": { "description": "A list of WebSked task IDs that this content was created or curated to satisfy.", "items": { "pattern": "^[0-9a-fA-F]{24}$", "type": "string" }, "maxItems": 200, "type": "array" }, "auxiliaries": { "description": "A list of auxiliaries. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/utils_auxiliary_json" }, "type": "array" }, "keywords": { "description": "A list of keywords. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/utils_keyword_json" }, "type": "array" }, "named_entities": { "description": "A list of named entities. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/utils_named_entity_json" }, "type": "array" }, "primary_section": { "description": "A primary section object or reference to one. In the Arc ecosystem, a reference here is denormalized into a site from the arc-site-service.", "oneOf": [ { "$ref": "#/definitions/utils_section_json" }, { "allOf": [ { "$ref": "#/definitions/utils_reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "section" ] } } } } } ] } ] }, "primary_site": { "description": "Deprecated in 0.10.9. (See `primary_section` instead.) A primary site object or reference to one. In the Arc ecosystem, a reference here is denormalized into a site from the arc-site-service.", "oneOf": [ { "$ref": "#/definitions/utils_site_json" }, { "allOf": [ { "$ref": "#/definitions/utils_reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "site" ] } } } } } ] } ] }, "sections": { "description": "A list of site objects or references to them. In the Arc ecosystem, references in this list are denormalized into sites from the arc-site-service. In a multi-site context, sites will be denormalized against an organization's default website only.", "items": { "oneOf": [ { "$ref": "#/definitions/utils_section_json" }, { "allOf": [ { "$ref": "#/definitions/utils_reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "section" ] } } } } } ] } ] }, "type": "array" }, "seo_keywords": { "description": "A list of user-editable manually entered keywords for search purposes. In the Arc ecosystem, these can be generated and saved in source CMS systems, editors, etc.", "items": { "type": "string" }, "type": "array" }, "sites": { "description": "Deprecated in 0.10.9. (See `sections` instead.) A list of site objects or references to them. In the Arc ecosystem, references in this list are denormalized into sites from the arc-site-service. In a multi-site context, sites will be denormalized against an organization's default website only.", "items": { "oneOf": [ { "$ref": "#/definitions/utils_site_json" }, { "allOf": [ { "$ref": "#/definitions/utils_reference_json" }, { "properties": { "referent": { "properties": { "type": { "enum": [ "site" ] } } } } } ] } ] }, "type": "array" }, "stock_symbols": { "description": "A list of stock symbols of companies related to this content. In the Arc ecosystem, these can be generated and saved in source CMS systems, editors, etc.", "items": { "type": "string" }, "type": "array" }, "tags": { "items": { "$ref": "#/definitions/utils_tag_json" }, "type": "array" }, "topics": { "description": "A list of topics. In the Arc ecosystem, this list is populated by Clavis.", "items": { "$ref": "#/definitions/utils_topic_json" }, "type": "array" } }, "title": "Taxonomy", "type": "object" }, "traits_trait_tracking_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "Tracking information, probably implementation-dependent", "title": "Tracking", "type": "object" }, "traits_trait_vanity_credits_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Similar to the credits trait, but to be used only when ANS is being directly rendered to readers natively. For legal and technical reasons, the `credits` trait is preferred when converting ANS into feeds or other distribution formats. However, when present, `vanity_credits` allows more sophisticated credits presentation to override the default without losing that original data.", "patternProperties": { "^[a-zA-Z0-9_]*": { "items": { "anyOf": [ { "$ref": "#/definitions/utils_author_json" }, { "$ref": "#/definitions/utils_reference_json" } ], "type": "object" }, "type": "array" } }, "properties": { "by": { "description": "The primary author(s) of this document. For a story, is is the writer or reporter. For an image, it is the photographer.", "items": { "anyOf": [ { "$ref": "#/definitions/utils_author_json" }, { "$ref": "#/definitions/utils_reference_json" } ], "type": "object" }, "title": "By", "type": "array" }, "photos_by": { "description": "The photographer(s) of supplementary images included in this document, if it is a story. Note that if this document is an image, the photographer(s) should appear in the 'by' slot.", "items": { "anyOf": [ { "$ref": "#/definitions/utils_author_json" }, { "$ref": "#/definitions/utils_reference_json" } ], "type": "object" }, "title": "Photos by", "type": "array" } }, "title": "Vanity Credits trait", "type": "object" }, "traits_trait_version_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The version of ANS that this object was serialized as, in major.minor.patch format. For top-level content objects, this is a required trait.", "enum": [ "0.10.9" ], "title": "Describes the ANS version of this object", "type": "string" }, "traits_trait_website_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "The _id of the website on which this document exists. This field is only available in Content API. If different from canonical_website, then this document was originally sourced from the canonical_website. Generated at fetch time by Content API.", "title": "Website", "type": "string" }, "traits_trait_workflow_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Trait that applies workflow information to a document or resource. In the Arc ecosystem, this data is generated by WebSked.", "properties": { "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "note": { "description": "This note will be used for any task automatically generated via WebSked task triggers.", "type": "string" }, "status_code": { "description": "Code indicating the story's current workflow status. This number should match the values configured in WebSked.", "minimum": 1, "type": "integer" } }, "title": "Workflow information", "type": "object" }, "utils_author_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models attribution to an individual or group for contribution towards some content item. In the Arc ecosystem, these are stored in the arc-author-service.", "properties": { "_id": { "$ref": "#/definitions/traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "affiliation": { "description": "The name of an organization the author is affiliated with. E.g., The Washington Post, or George Mason University.", "title": "Affiliation", "type": "string" }, "awards": { "description": "A list of awards the author has received.", "items": { "additionalProperties": false, "properties": { "award_name": { "description": "The name of the award.", "title": "Award Name", "type": "string" } }, "type": "object" }, "title": "Awards", "type": "array" }, "bio": { "description": "A one or two sentence description of the author.", "title": "Short Biography", "type": "string" }, "books": { "description": "A list of books written by the author.", "items": { "additionalProperties": false, "properties": { "book_title": { "description": "The book title.", "title": "Title", "type": "string" }, "book_url": { "description": "A link to a page to purchase or learn more about the book.", "title": "URL", "type": "string" } }, "title": "Book", "type": "object" }, "title": "Books", "type": "array" }, "byline": { "description": "The public-facing name, or nom-de-plume, name of the author.", "title": "Byline", "type": "string" }, "contributor": { "description": "If true, this author is an external contributor to the publication.", "title": "Contributor", "type": "boolean" }, "division": { "description": "The desk or group that this author normally reports to. E.g., 'Politics' or 'Sports.'", "title": "Division", "type": "string" }, "education": { "description": "A list of schools that this author has graduated from.", "items": { "additionalProperties": false, "properties": { "school_name": { "description": "The name of the school.", "title": "School Name", "type": "string" } }, "title": "School", "type": "object" }, "title": "Education", "type": "array" }, "email": { "_format": "email", "description": "The professional email address of this author.", "title": "E-mail", "type": "string" }, "expertise": { "description": "A comma-delimited list of subjects the author in which the author has expertise.", "title": "Expertise", "type": "string" }, "first_name": { "description": "The real first name of a human author.", "title": "First Name", "type": "string" }, "image": { "$ref": "#/definitions/image_json" }, "languages": { "description": "A description of list of languages that the author is somewhat fluent in, excluding the native language of the parent publication, and identified in the language of the parent publication. E.g., Russian, Japanese, Greek.", "title": "Languages", "type": "string" }, "last_name": { "description": "The real last name of a human author.", "title": "Last Name", "type": "string" }, "location": { "description": "The city or locality that the author resides in or is primarily associated with.", "title": "Location", "type": "string" }, "long_bio": { "description": "The full biography of the author.", "title": "Long Biography", "type": "string" }, "middle_name": { "description": "The real middle name of a human author.", "title": "Middle Name", "type": "string" }, "name": { "description": "The full human name of contributor. See also byline, first_name, last_name, middle_name, suffix.", "title": "Name", "type": "string" }, "org": { "description": "Deprecated. In ANS 0.5.8 and prior versions, this field is populated with the 'location' field from Arc Author Service. New implementations should use the 'location' and 'affiliation' field. Content should be identical to 'location.'", "title": "Org", "type": "string" }, "role": { "description": "The organizational role or title of this author.", "title": "Role", "type": "string" }, "slug": { "$ref": "#/definitions/traits_trait_slug_json" }, "socialLinks": { "$ref": "#/definitions/traits_trait_social_json", "description": "Deperecated. Included for backwards-compatibility. Content should be identical to social_links." }, "social_links": { "$ref": "#/definitions/traits_trait_social_json" }, "suffix": { "description": "The real suffix of a human author.", "title": "Suffix", "type": "string" }, "type": { "description": "Indicates that this is an author", "enum": [ "author" ], "type": "string" }, "url": { "description": "A link to an author's landing page on the website, or a personal website.", "type": "string" }, "version": { "$ref": "#/definitions/traits_trait_version_json" } }, "required": [ "type", "name" ], "title": "An author of a piece of content.", "type": "object" }, "utils_auxiliary_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a auxiliary used in targeting a piece of content.", "properties": { "_id": { "description": "The unique identifier for this auxiliary.", "type": "string" }, "name": { "description": "The general name for this auxiliary.", "type": "string" }, "uid": { "description": "A short identifier for this auxiliary. Usually used in cases where a long form id cannot work.", "type": "string" } }, "required": [ "_id", "uid" ], "title": "Auxiliary", "type": "object" }, "utils_dictionary_json": { "$schema": "http://json-schema.org/draft-04/schema#", "patternProperties": { ".*": { "type": "string" } }, "properties": { "basic": { "type": "string" } }, "required": [ "basic" ] }, "utils_keyword_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a keyword used in describing a piece of content.", "properties": { "frequency": { "description": "An optional count of the frequency of the keyword as it appears in the content it describes", "type": "integer" }, "keyword": { "description": "The keyword used to describe a piece of content", "type": "string" }, "score": { "description": "An arbitrary weighting to give the keyword", "type": "number" }, "tag": { "description": "The Part of Speech tag for this keyword.", "type": "string" } }, "required": [ "keyword", "score" ], "title": "Keyword", "type": "object" }, "utils_named_entity_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a named entity (i.e. name of a person, place, or organization) used in a piece of content.", "properties": { "_id": { "description": "A unique identifier for the concept of the named entity.", "type": "string" }, "name": { "description": "The actual string of text that was identified as a named entity.", "type": "string" }, "score": { "decription": "An optional relevancy for this named entitiy.", "type": "number" }, "type": { "description": "A description of what the named entity is. E.g. 'organization', 'person', or 'location'.", "type": "string" } }, "required": [ "_id", "name", "type" ], "title": "Named Entity", "type": "object" }, "utils_reference_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "This represents a reference to external content that should be denormalized", "properties": { "_id": { "$ref": "#/definitions/traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/traits_trait_alignment_json" }, "channels": { "$ref": "#/definitions/traits_trait_channel_json" }, "referent": { "additionalProperties": false, "dependencies": { "website": { "properties": { "type": { "enum": [ "section" ], "type": "string" } } } }, "properties": { "id": { "description": "The id passed to the provider to retrieve an ANS document", "type": "string" }, "provider": { "description": "A URL that can resolve the id into an ANS element", "type": "string" }, "referent_properties": { "additionalProperties": {}, "description": "An object for key-value pairs that should override the values of keys with the same name in the denormalized object", "type": "object" }, "service": { "description": "The type of interaction the provider expects. E.g., 'oembed'", "type": "string" }, "type": { "description": "The ANS type that the provider should return.", "type": "string" }, "website": { "description": "The website which the referenced id belongs to. Currently supported only for sections.", "type": "string" } }, "required": [ "id" ], "type": "object" }, "subtype": { "$ref": "#/definitions/traits_trait_subtype_json" }, "type": { "enum": [ "reference" ], "type": "string" } }, "required": [ "type", "referent" ], "title": "Representation of a normalized element", "type": "object" }, "utils_section_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A hierarchical section in a taxonomy. In the Arc ecosystem, these are stored in the arc-site-service.", "properties": { "_id": { "$ref": "#/definitions/traits_trait_id_json" }, "_website": { "$ref": "#/definitions/traits_trait_website_json" }, "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "description": { "description": "A short description or tagline about this site", "type": "string" }, "name": { "description": "The name of this site", "type": "string" }, "parent": { "description": "The id of this section's parent section in various commonly-used hierarchies, where available.", "properties": { "default": { "type": "string" } }, "type": "object" }, "parent_id": { "description": "The id of this section's parent section in the default hierarchy, if any.", "type": "string" }, "path": { "description": "The url path to this site", "type": "string" }, "primary": { "description": "Is this the primary site?", "type": "boolean" }, "type": { "enum": [ "section" ] }, "version": { "$ref": "#/definitions/traits_trait_version_json" } }, "required": [ "type", "version", "name" ], "title": "Section", "type": "object" }, "utils_site_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A hierarchical section or 'site' in a taxonomy. In the Arc ecosystem, these are stored in the arc-site-service.", "properties": { "_id": { "$ref": "#/definitions/traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "description": { "description": "A short description or tagline about this site", "type": "string" }, "name": { "description": "The name of this site", "type": "string" }, "parent_id": { "description": "The id of this section's parent site, if any", "type": "string" }, "path": { "description": "The url path to this site", "type": "string" }, "primary": { "description": "Is this the primary site?", "type": "boolean" }, "type": { "enum": [ "site" ] }, "version": { "$ref": "#/definitions/traits_trait_version_json" } }, "required": [ "type", "version", "name" ], "title": "Site", "type": "object" }, "utils_tag_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a keyword used in describing a piece of content.", "properties": { "_id": { "$ref": "#/definitions/traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/traits_trait_additional_properties_json" }, "description": { "description": "A more detailed description of the tag.", "type": "string" }, "slug": { "$ref": "#/definitions/traits_trait_slug_json" }, "subtype": { "$ref": "#/definitions/traits_trait_subtype_json" }, "text": { "description": "The text of the tag as displayed to users.", "type": "string" }, "type": { "enum": [ "tag" ] } }, "required": [ "text" ], "title": "Tag", "type": "object" }, "utils_topic_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "Models a topic used in describing a piece of content.", "properties": { "_id": { "description": "The unique identifier for this topic.", "type": "string" }, "name": { "description": "The general name for this topic.", "type": "string" }, "score": { "description": "An arbitrary weighting to give the topic", "type": "number" }, "uid": { "description": "A short identifier for this topic. Usually used in cases where a long form id cannot work.", "type": "string" } }, "required": [ "_id", "score", "uid" ], "title": "Topic", "type": "object" } }, "description": "An operation on an image", "type": "object" }
wp_9_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "___traits_trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" }, "___traits_trait_alignment_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A property used to determine horizontal positioning of a content element relative to the elements that immediately follow it in the element sequence.", "enum": [ "left", "right", "center" ], "title": "Alignment", "type": "string" }, "___traits_trait_block_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "Block properties for style formatting content elements", "properties": { "dropcap": { "description": "Style the first letter of the first word with a dropcap", "enum": [ "letter" ], "title": "Dropcap", "type": "string" } }, "title": "Block properties", "type": "object" }, "___traits_trait_channel_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "An optional list of output types for which this element should be visible", "items": { "type": "string" }, "title": "Channel trait", "type": "array" }, "___traits_trait_id_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A globally unique identifier of the content in the ANS repository.", "title": "Globally Unique ID trait", "type": "string" }, "___traits_trait_subtype_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.", "title": "Subtype or Template", "type": "string" }, "list_element_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "anyOf": [ { "$ref": "#" }, { "$ref": "#/definitions/text_json" } ], "description": "Lists the schemas we allow as 'list elements' in our collection schema.", "title": "A valid list element.", "type": "object" }, "text_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "description": "A textual content element", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/___traits_trait_alignment_json" }, "block_properties": { "$ref": "#/definitions/___traits_trait_block_properties_json" }, "channels": { "$ref": "#/definitions/___traits_trait_channel_json" }, "content": { "description": "The text of the paragraph.", "type": "string" }, "subtype": { "$ref": "#/definitions/___traits_trait_subtype_json" }, "type": { "enum": [ "text" ], "type": "string" } }, "required": [ "type", "content" ], "type": "object" } }, "description": " list of text items or other lists", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "alignment": { "$ref": "#/definitions/___traits_trait_alignment_json" }, "channels": { "$ref": "#/definitions/___traits_trait_channel_json" }, "items": { "description": "The items in this list.", "items": { "$ref": "#/definitions/list_element_json" }, "type": "array" }, "list_type": { "description": "The type of list to render as (ordered, unordered, etc)", "type": "string" }, "subtype": { "$ref": "#/definitions/___traits_trait_subtype_json" }, "type": { "enum": [ "list" ] } }, "required": [ "type" ], "title": "A list.", "type": "object" }
wp_28_Normalized
{ "properties": { "from_date": { "description": "The starting date of news articles", "format": "date", "type": "string" }, "keywords": { "description": "The keywords for news search", "items": { "type": "string" }, "type": "array" }, "language": { "description": "The language of the news articles", "type": "string" }, "to_date": { "description": "The ending date of news articles", "format": "date", "type": "string" } }, "required": [ "keywords" ], "type": "object" }
search_news_9dd9ef7f
{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "debug": { "type": "boolean" }, "router-config": { "type": "string" }, "cache-dir": { "type": "string" }, "logger-dir": { "type": "string" }, "template-dir": { "type": "string" }, "template-file-extension": { "type": "string" }, "serializer-model-dir": { "type": "string" }, "schema-dir": { "type": "string" }, "support-contact": { "type": "string" }, "database": { "type": "object", "properties": { "host": { "type": "string" }, "port": { "type": "number" }, "database": { "type": "string" }, "user": { "type": "string" }, "password": { "type": "string" } } }, "smtp": { "type": "object", "properties": { "host": { "type": "string" }, "port": { "type": "number" }, "user": { "type": "string" }, "password": { "type": "string" }, "security": { "type": "string" } } } }, "required": [ "debug", "router-config", "logger-dir", "support-contact", "serializer-model-dir", "schema-dir" ] }
o33687
{ "id": "http://schemas.triniti.io/json-schema/triniti/curator/mixin/blogroll-widget/1-0-0.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "_id": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single", "overridable": true } }, "status": { "type": "string", "default": "draft", "enum": [ "unknown", "published", "scheduled", "pending", "draft", "expired", "archived", "deleted" ], "pbj": { "type": "string-enum", "rule": "single" } }, "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$", "pbj": { "type": "string", "rule": "single" } }, "created_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$", "pbj": { "type": "microtime", "rule": "single" } }, "creator_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A fully qualified reference to what created this node. This is intentionally a message-ref and not a user id because it is often a program that creates nodes, not a user.", "pbj": { "type": "message-ref", "rule": "single" } }, "updated_at": { "type": "string", "pattern": "^[1-9]{1}[0-9]{12,15}$", "pbj": { "type": "microtime", "rule": "single", "useTypeDefault": false } }, "updater_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A fully qualified reference to what updated this node. This is intentionally a message-ref and not a user id because it is often a program that updates nodes, not a user. E.g. \"acme:iam:node:app:cli-scheduler\" or \"acme:iam:node:user:60c71df0-fda8-11e5-bfb9-30342d363854\"", "pbj": { "type": "message-ref", "rule": "single" } }, "last_event_ref": { "type": "object", "properties": { "curie": { "type": "string", "pattern": "^([a-z0-9-]+):([a-z0-9\\.-]+):([a-z0-9-]+)?:([a-z0-9-]+)$", "minLength": 0, "maxLength": 146 }, "id": { "type": "string", "pattern": "^[A-Za-z0-9:_\\-]+$", "minLength": 0, "maxLength": 255 }, "tag": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255 } }, "required": [ "curie", "id" ], "additionalProperties": false, "description": "A reference to the last event that changed the state of this node. E.g. \"acme:blog:event:article-published:60c71df0-fda8-11e5-bfb9-30342d363854\"", "pbj": { "type": "message-ref", "rule": "single" } }, "title": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "pre_render_code": { "type": "string", "minLength": 0, "maxLength": 65535, "description": "A string containing HTML that is injected into the application before the widget renders.", "pbj": { "type": "text", "rule": "single" } }, "post_render_code": { "type": "string", "minLength": 0, "maxLength": 65535, "description": "A string containing HTML that is injected into the application after the widget renders.", "pbj": { "type": "text", "rule": "single" } }, "show_border": { "type": "boolean", "pbj": { "type": "boolean", "rule": "single" } }, "show_header": { "type": "boolean", "default": true, "pbj": { "type": "boolean", "rule": "single" } }, "header_text": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "partner_url": { "type": "string", "pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$", "pbj": { "type": "text", "rule": "single", "format": "url" } }, "partner_text": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "view_all_url": { "type": "string", "pattern": "^(https?:\\/\\/)?([\\da-z\\.-]+)\\.([a-z\\.]{2,6})([\\/\\w \\.-]*)*\\/?$", "pbj": { "type": "text", "rule": "single", "format": "url" } }, "view_all_text": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "promotion_slot_prefix": { "type": "string", "pattern": "^([\\w\\/-]|[\\w-][\\w\\/-]*[\\w-])$", "minLength": 0, "maxLength": 255, "description": "A prefix for the promotion slots that will be injected in between (aka \"separators\") items in the blogroll.", "pbj": { "type": "string", "rule": "single", "format": "slug" } } }, "required": [ "_id" ], "additionalProperties": true }
o82738
{ "$id": "https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-schema-2.1.0.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "address": { "description": "A physical or virtual address, or a range of addresses, in an 'addressable region' (memory or a binary file).", "additionalProperties": false, "type": "object", "properties": { "absoluteAddress": { "description": "The address expressed as a byte offset from the start of the addressable region.", "type": "integer", "minimum": -1, "default": -1 }, "relativeAddress": { "description": "The address expressed as a byte offset from the absolute address of the top-most parent object.", "type": "integer" }, "length": { "description": "The number of bytes in this range of addresses.", "type": "integer" }, "kind": { "description": "An open-ended string that identifies the address kind. 'data', 'function', 'header','instruction', 'module', 'page', 'section', 'segment', 'stack', 'stackFrame', 'table' are well-known values.", "type": "string" }, "name": { "description": "A name that is associated with the address, e.g., '.text'.", "type": "string" }, "fullyQualifiedName": { "description": "A human-readable fully qualified name that is associated with the address.", "type": "string" }, "offsetFromParent": { "description": "The byte offset of this address from the absolute or relative address of the parent object.", "type": "integer" }, "index": { "description": "The index within run.addresses of the cached object for this address.", "type": "integer", "default": -1, "minimum": -1 }, "parentIndex": { "description": "The index within run.addresses of the parent object.", "type": "integer", "default": -1, "minimum": -1 }, "properties": { "description": "Key/value pairs that provide additional information about the address.", "$ref": "#/definitions/propertyBag" } } }, "artifact": { "description": "A single artifact. In some cases, this artifact might be nested within another artifact.", "additionalProperties": false, "type": "object", "properties": { "description": { "description": "A short description of the artifact.", "$ref": "#/definitions/message" }, "location": { "description": "The location of the artifact.", "$ref": "#/definitions/artifactLocation" }, "parentIndex": { "description": "Identifies the index of the immediate parent of the artifact, if this artifact is nested.", "type": "integer", "default": -1, "minimum": -1 }, "offset": { "description": "The offset in bytes of the artifact within its containing artifact.", "type": "integer", "minimum": 0 }, "length": { "description": "The length of the artifact in bytes.", "type": "integer", "default": -1, "minimum": -1 }, "roles": { "description": "The role or roles played by the artifact in the analysis.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "enum": [ "analysisTarget", "attachment", "responseFile", "resultFile", "standardStream", "tracedFile", "unmodified", "modified", "added", "deleted", "renamed", "uncontrolled", "driver", "extension", "translation", "taxonomy", "policy", "referencedOnCommandLine", "memoryContents", "directory", "userSpecifiedConfiguration", "toolSpecifiedConfiguration", "debugOutputFile" ] } }, "mimeType": { "description": "The MIME type (RFC 2045) of the artifact.", "type": "string", "pattern": "[^/]+/.+" }, "contents": { "description": "The contents of the artifact.", "$ref": "#/definitions/artifactContent" }, "encoding": { "description": "Specifies the encoding for an artifact object that refers to a text file.", "type": "string" }, "sourceLanguage": { "description": "Specifies the source language for any artifact object that refers to a text file that contains source code.", "type": "string" }, "hashes": { "description": "A dictionary, each of whose keys is the name of a hash function and each of whose values is the hashed value of the artifact produced by the specified hash function.", "type": "object", "additionalProperties": { "type": "string" } }, "lastModifiedTimeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which the artifact was most recently modified. See \"Date/time properties\" in the SARIF spec for the required format.", "type": "string", "format": "date-time" }, "properties": { "description": "Key/value pairs that provide additional information about the artifact.", "$ref": "#/definitions/propertyBag" } } }, "artifactChange": { "description": "A change to a single artifact.", "additionalProperties": false, "type": "object", "properties": { "artifactLocation": { "description": "The location of the artifact to change.", "$ref": "#/definitions/artifactLocation" }, "replacements": { "description": "An array of replacement objects, each of which represents the replacement of a single region in a single artifact specified by 'artifactLocation'.", "type": "array", "minItems": 1, "uniqueItems": false, "items": { "$ref": "#/definitions/replacement" } }, "properties": { "description": "Key/value pairs that provide additional information about the change.", "$ref": "#/definitions/propertyBag" } }, "required": ["artifactLocation", "replacements"] }, "artifactContent": { "description": "Represents the contents of an artifact.", "type": "object", "additionalProperties": false, "properties": { "text": { "description": "UTF-8-encoded content from a text artifact.", "type": "string" }, "binary": { "description": "MIME Base64-encoded content from a binary artifact, or from a text artifact in its original encoding.", "type": "string" }, "rendered": { "description": "An alternate rendered representation of the artifact (e.g., a decompiled representation of a binary region).", "$ref": "#/definitions/multiformatMessageString" }, "properties": { "description": "Key/value pairs that provide additional information about the artifact content.", "$ref": "#/definitions/propertyBag" } } }, "artifactLocation": { "description": "Specifies the location of an artifact.", "additionalProperties": false, "type": "object", "properties": { "uri": { "description": "A string containing a valid relative or absolute URI.", "type": "string", "format": "uri-reference" }, "uriBaseId": { "description": "A string which indirectly specifies the absolute URI with respect to which a relative URI in the \"uri\" property is interpreted.", "type": "string" }, "index": { "description": "The index within the run artifacts array of the artifact object associated with the artifact location.", "type": "integer", "default": -1, "minimum": -1 }, "description": { "description": "A short description of the artifact location.", "$ref": "#/definitions/message" }, "properties": { "description": "Key/value pairs that provide additional information about the artifact location.", "$ref": "#/definitions/propertyBag" } } }, "attachment": { "description": "An artifact relevant to a result.", "type": "object", "additionalProperties": false, "properties": { "description": { "description": "A message describing the role played by the attachment.", "$ref": "#/definitions/message" }, "artifactLocation": { "description": "The location of the attachment.", "$ref": "#/definitions/artifactLocation" }, "regions": { "description": "An array of regions of interest within the attachment.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/region" } }, "rectangles": { "description": "An array of rectangles specifying areas of interest within the image.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/rectangle" } }, "properties": { "description": "Key/value pairs that provide additional information about the attachment.", "$ref": "#/definitions/propertyBag" } }, "required": ["artifactLocation"] }, "codeFlow": { "description": "A set of threadFlows which together describe a pattern of code execution relevant to detecting a result.", "additionalProperties": false, "type": "object", "properties": { "message": { "description": "A message relevant to the code flow.", "$ref": "#/definitions/message" }, "threadFlows": { "description": "An array of one or more unique threadFlow objects, each of which describes the progress of a program through a thread of execution.", "type": "array", "minItems": 1, "uniqueItems": false, "items": { "$ref": "#/definitions/threadFlow" } }, "properties": { "description": "Key/value pairs that provide additional information about the code flow.", "$ref": "#/definitions/propertyBag" } }, "required": ["threadFlows"] }, "configurationOverride": { "description": "Information about how a specific rule or notification was reconfigured at runtime.", "type": "object", "additionalProperties": false, "properties": { "configuration": { "description": "Specifies how the rule or notification was configured during the scan.", "$ref": "#/definitions/reportingConfiguration" }, "descriptor": { "description": "A reference used to locate the descriptor whose configuration was overridden.", "$ref": "#/definitions/reportingDescriptorReference" }, "properties": { "description": "Key/value pairs that provide additional information about the configuration override.", "$ref": "#/definitions/propertyBag" } }, "required": ["configuration", "descriptor"] }, "conversion": { "description": "Describes how a converter transformed the output of a static analysis tool from the analysis tool's native output format into the SARIF format.", "additionalProperties": false, "type": "object", "properties": { "tool": { "description": "A tool object that describes the converter.", "$ref": "#/definitions/tool" }, "invocation": { "description": "An invocation object that describes the invocation of the converter.", "$ref": "#/definitions/invocation" }, "analysisToolLogFiles": { "description": "The locations of the analysis tool's per-run log files.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/artifactLocation" } }, "properties": { "description": "Key/value pairs that provide additional information about the conversion.", "$ref": "#/definitions/propertyBag" } }, "required": ["tool"] }, "edge": { "description": "Represents a directed edge in a graph.", "type": "object", "additionalProperties": false, "properties": { "id": { "description": "A string that uniquely identifies the edge within its graph.", "type": "string" }, "label": { "description": "A short description of the edge.", "$ref": "#/definitions/message" }, "sourceNodeId": { "description": "Identifies the source node (the node at which the edge starts).", "type": "string" }, "targetNodeId": { "description": "Identifies the target node (the node at which the edge ends).", "type": "string" }, "properties": { "description": "Key/value pairs that provide additional information about the edge.", "$ref": "#/definitions/propertyBag" } }, "required": ["id", "sourceNodeId", "targetNodeId"] }, "edgeTraversal": { "description": "Represents the traversal of a single edge during a graph traversal.", "type": "object", "additionalProperties": false, "properties": { "edgeId": { "description": "Identifies the edge being traversed.", "type": "string" }, "message": { "description": "A message to display to the user as the edge is traversed.", "$ref": "#/definitions/message" }, "finalState": { "description": "The values of relevant expressions after the edge has been traversed.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "stepOverEdgeCount": { "description": "The number of edge traversals necessary to return from a nested graph.", "type": "integer", "minimum": 0 }, "properties": { "description": "Key/value pairs that provide additional information about the edge traversal.", "$ref": "#/definitions/propertyBag" } }, "required": ["edgeId"] }, "exception": { "description": "Describes a runtime exception encountered during the execution of an analysis tool.", "type": "object", "additionalProperties": false, "properties": { "kind": { "type": "string", "description": "A string that identifies the kind of exception, for example, the fully qualified type name of an object that was thrown, or the symbolic name of a signal." }, "message": { "description": "A message that describes the exception.", "type": "string" }, "stack": { "description": "The sequence of function calls leading to the exception.", "$ref": "#/definitions/stack" }, "innerExceptions": { "description": "An array of exception objects each of which is considered a cause of this exception.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/exception" } }, "properties": { "description": "Key/value pairs that provide additional information about the exception.", "$ref": "#/definitions/propertyBag" } } }, "externalProperties": { "description": "The top-level element of an external property file.", "type": "object", "additionalProperties": false, "properties": { "schema": { "description": "The URI of the JSON schema corresponding to the version of the external property file format.", "type": "string", "format": "uri" }, "version": { "description": "The SARIF format version of this external properties object.", "enum": ["2.1.0"] }, "guid": { "description": "A stable, unique identifer for this external properties object, in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "runGuid": { "description": "A stable, unique identifer for the run associated with this external properties object, in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "conversion": { "description": "A conversion object that will be merged with a separate run.", "$ref": "#/definitions/conversion" }, "graphs": { "description": "An array of graph objects that will be merged with a separate run.", "type": "array", "minItems": 0, "default": [], "uniqueItems": true, "items": { "$ref": "#/definitions/graph" } }, "externalizedProperties": { "description": "Key/value pairs that provide additional information that will be merged with a separate run.", "$ref": "#/definitions/propertyBag" }, "artifacts": { "description": "An array of artifact objects that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/artifact" } }, "invocations": { "description": "Describes the invocation of the analysis tool that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/invocation" } }, "logicalLocations": { "description": "An array of logical locations such as namespaces, types or functions that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/logicalLocation" } }, "threadFlowLocations": { "description": "An array of threadFlowLocation objects that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/threadFlowLocation" } }, "results": { "description": "An array of result objects that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/result" } }, "taxonomies": { "description": "Tool taxonomies that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "driver": { "description": "The analysis tool object that will be merged with a separate run.", "$ref": "#/definitions/toolComponent" }, "extensions": { "description": "Tool extensions that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "policies": { "description": "Tool policies that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "translations": { "description": "Tool translations that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "addresses": { "description": "Addresses that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/address" } }, "webRequests": { "description": "Requests that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/webRequest" } }, "webResponses": { "description": "Responses that will be merged with a separate run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/webResponse" } }, "properties": { "description": "Key/value pairs that provide additional information about the external properties.", "$ref": "#/definitions/propertyBag" } } }, "externalPropertyFileReference": { "description": "Contains information that enables a SARIF consumer to locate the external property file that contains the value of an externalized property associated with the run.", "type": "object", "additionalProperties": false, "properties": { "location": { "description": "The location of the external property file.", "$ref": "#/definitions/artifactLocation" }, "guid": { "description": "A stable, unique identifer for the external property file in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "itemCount": { "description": "A non-negative integer specifying the number of items contained in the external property file.", "type": "integer", "default": -1, "minimum": -1 }, "properties": { "description": "Key/value pairs that provide additional information about the external property file.", "$ref": "#/definitions/propertyBag" } }, "anyOf": [ { "required": ["location"] }, { "required": ["guid"] } ] }, "externalPropertyFileReferences": { "description": "References to external property files that should be inlined with the content of a root log file.", "additionalProperties": false, "type": "object", "properties": { "conversion": { "description": "An external property file containing a run.conversion object to be merged with the root log file.", "$ref": "#/definitions/externalPropertyFileReference" }, "graphs": { "description": "An array of external property files containing a run.graphs object to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "externalizedProperties": { "description": "An external property file containing a run.properties object to be merged with the root log file.", "$ref": "#/definitions/externalPropertyFileReference" }, "artifacts": { "description": "An array of external property files containing run.artifacts arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "invocations": { "description": "An array of external property files containing run.invocations arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "logicalLocations": { "description": "An array of external property files containing run.logicalLocations arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "threadFlowLocations": { "description": "An array of external property files containing run.threadFlowLocations arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "results": { "description": "An array of external property files containing run.results arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "taxonomies": { "description": "An array of external property files containing run.taxonomies arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "addresses": { "description": "An array of external property files containing run.addresses arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "driver": { "description": "An external property file containing a run.driver object to be merged with the root log file.", "$ref": "#/definitions/externalPropertyFileReference" }, "extensions": { "description": "An array of external property files containing run.extensions arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "policies": { "description": "An array of external property files containing run.policies arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "translations": { "description": "An array of external property files containing run.translations arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "webRequests": { "description": "An array of external property files containing run.requests arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "webResponses": { "description": "An array of external property files containing run.responses arrays to be merged with the root log file.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/externalPropertyFileReference" } }, "properties": { "description": "Key/value pairs that provide additional information about the external property files.", "$ref": "#/definitions/propertyBag" } } }, "fix": { "description": "A proposed fix for the problem represented by a result object. A fix specifies a set of artifacts to modify. For each artifact, it specifies a set of bytes to remove, and provides a set of new bytes to replace them.", "additionalProperties": false, "type": "object", "properties": { "description": { "description": "A message that describes the proposed fix, enabling viewers to present the proposed change to an end user.", "$ref": "#/definitions/message" }, "artifactChanges": { "description": "One or more artifact changes that comprise a fix for a result.", "type": "array", "minItems": 1, "uniqueItems": true, "items": { "$ref": "#/definitions/artifactChange" } }, "properties": { "description": "Key/value pairs that provide additional information about the fix.", "$ref": "#/definitions/propertyBag" } }, "required": ["artifactChanges"] }, "graph": { "description": "A network of nodes and directed edges that describes some aspect of the structure of the code (for example, a call graph).", "type": "object", "additionalProperties": false, "properties": { "description": { "description": "A description of the graph.", "$ref": "#/definitions/message" }, "nodes": { "description": "An array of node objects representing the nodes of the graph.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/node" } }, "edges": { "description": "An array of edge objects representing the edges of the graph.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/edge" } }, "properties": { "description": "Key/value pairs that provide additional information about the graph.", "$ref": "#/definitions/propertyBag" } } }, "graphTraversal": { "description": "Represents a path through a graph.", "type": "object", "additionalProperties": false, "properties": { "runGraphIndex": { "description": "The index within the run.graphs to be associated with the result.", "type": "integer", "default": -1, "minimum": -1 }, "resultGraphIndex": { "description": "The index within the result.graphs to be associated with the result.", "type": "integer", "default": -1, "minimum": -1 }, "description": { "description": "A description of this graph traversal.", "$ref": "#/definitions/message" }, "initialState": { "description": "Values of relevant expressions at the start of the graph traversal that may change during graph traversal.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "immutableState": { "description": "Values of relevant expressions at the start of the graph traversal that remain constant for the graph traversal.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "edgeTraversals": { "description": "The sequences of edges traversed by this graph traversal.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/edgeTraversal" } }, "properties": { "description": "Key/value pairs that provide additional information about the graph traversal.", "$ref": "#/definitions/propertyBag" } }, "oneOf": [ { "required": ["runGraphIndex"] }, { "required": ["resultGraphIndex"] } ] }, "invocation": { "description": "The runtime environment of the analysis tool run.", "additionalProperties": false, "type": "object", "properties": { "commandLine": { "description": "The command line used to invoke the tool.", "type": "string" }, "arguments": { "description": "An array of strings, containing in order the command line arguments passed to the tool from the operating system.", "type": "array", "minItems": 0, "uniqueItems": false, "items": { "type": "string" } }, "responseFiles": { "description": "The locations of any response files specified on the tool's command line.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/artifactLocation" } }, "startTimeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which the invocation started. See \"Date/time properties\" in the SARIF spec for the required format.", "type": "string", "format": "date-time" }, "endTimeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which the invocation ended. See \"Date/time properties\" in the SARIF spec for the required format.", "type": "string", "format": "date-time" }, "exitCode": { "description": "The process exit code.", "type": "integer" }, "ruleConfigurationOverrides": { "description": "An array of configurationOverride objects that describe rules related runtime overrides.", "type": "array", "minItems": 0, "default": [], "uniqueItems": true, "items": { "$ref": "#/definitions/configurationOverride" } }, "notificationConfigurationOverrides": { "description": "An array of configurationOverride objects that describe notifications related runtime overrides.", "type": "array", "minItems": 0, "default": [], "uniqueItems": true, "items": { "$ref": "#/definitions/configurationOverride" } }, "toolExecutionNotifications": { "description": "A list of runtime conditions detected by the tool during the analysis.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/notification" } }, "toolConfigurationNotifications": { "description": "A list of conditions detected by the tool that are relevant to the tool's configuration.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/notification" } }, "exitCodeDescription": { "description": "The reason for the process exit.", "type": "string" }, "exitSignalName": { "description": "The name of the signal that caused the process to exit.", "type": "string" }, "exitSignalNumber": { "description": "The numeric value of the signal that caused the process to exit.", "type": "integer" }, "processStartFailureMessage": { "description": "The reason given by the operating system that the process failed to start.", "type": "string" }, "executionSuccessful": { "description": "Specifies whether the tool's execution completed successfully.", "type": "boolean" }, "machine": { "description": "The machine on which the invocation occurred.", "type": "string" }, "account": { "description": "The account under which the invocation occurred.", "type": "string" }, "processId": { "description": "The id of the process in which the invocation occurred.", "type": "integer" }, "executableLocation": { "description": "An absolute URI specifying the location of the executable that was invoked.", "$ref": "#/definitions/artifactLocation" }, "workingDirectory": { "description": "The working directory for the invocation.", "$ref": "#/definitions/artifactLocation" }, "environmentVariables": { "description": "The environment variables associated with the analysis tool process, expressed as key/value pairs.", "type": "object", "additionalProperties": { "type": "string" } }, "stdin": { "description": "A file containing the standard input stream to the process that was invoked.", "$ref": "#/definitions/artifactLocation" }, "stdout": { "description": "A file containing the standard output stream from the process that was invoked.", "$ref": "#/definitions/artifactLocation" }, "stderr": { "description": "A file containing the standard error stream from the process that was invoked.", "$ref": "#/definitions/artifactLocation" }, "stdoutStderr": { "description": "A file containing the interleaved standard output and standard error stream from the process that was invoked.", "$ref": "#/definitions/artifactLocation" }, "properties": { "description": "Key/value pairs that provide additional information about the invocation.", "$ref": "#/definitions/propertyBag" } }, "required": ["executionSuccessful"] }, "location": { "description": "A location within a programming artifact.", "additionalProperties": false, "type": "object", "properties": { "id": { "description": "Value that distinguishes this location from all other locations within a single result object.", "type": "integer", "minimum": -1, "default": -1 }, "physicalLocation": { "description": "Identifies the artifact and region.", "$ref": "#/definitions/physicalLocation" }, "logicalLocations": { "description": "The logical locations associated with the result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/logicalLocation" } }, "message": { "description": "A message relevant to the location.", "$ref": "#/definitions/message" }, "annotations": { "description": "A set of regions relevant to the location.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/region" } }, "relationships": { "description": "An array of objects that describe relationships between this location and others.", "type": "array", "default": [], "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/locationRelationship" } }, "properties": { "description": "Key/value pairs that provide additional information about the location.", "$ref": "#/definitions/propertyBag" } } }, "locationRelationship": { "description": "Information about the relation of one location to another.", "type": "object", "additionalProperties": false, "properties": { "target": { "description": "A reference to the related location.", "type": "integer", "minimum": 0 }, "kinds": { "description": "A set of distinct strings that categorize the relationship. Well-known kinds include 'includes', 'isIncludedBy' and 'relevant'.", "type": "array", "default": ["relevant"], "uniqueItems": true, "items": { "type": "string" } }, "description": { "description": "A description of the location relationship.", "$ref": "#/definitions/message" }, "properties": { "description": "Key/value pairs that provide additional information about the location relationship.", "$ref": "#/definitions/propertyBag" } }, "required": ["target"] }, "logicalLocation": { "description": "A logical location of a construct that produced a result.", "additionalProperties": false, "type": "object", "properties": { "name": { "description": "Identifies the construct in which the result occurred. For example, this property might contain the name of a class or a method.", "type": "string" }, "index": { "description": "The index within the logical locations array.", "type": "integer", "default": -1, "minimum": -1 }, "fullyQualifiedName": { "description": "The human-readable fully qualified name of the logical location.", "type": "string" }, "decoratedName": { "description": "The machine-readable name for the logical location, such as a mangled function name provided by a C++ compiler that encodes calling convention, return type and other details along with the function name.", "type": "string" }, "parentIndex": { "description": "Identifies the index of the immediate parent of the construct in which the result was detected. For example, this property might point to a logical location that represents the namespace that holds a type.", "type": "integer", "default": -1, "minimum": -1 }, "kind": { "description": "The type of construct this logical location component refers to. Should be one of 'function', 'member', 'module', 'namespace', 'parameter', 'resource', 'returnType', 'type', 'variable', 'object', 'array', 'property', 'value', 'element', 'text', 'attribute', 'comment', 'declaration', 'dtd' or 'processingInstruction', if any of those accurately describe the construct.", "type": "string" }, "properties": { "description": "Key/value pairs that provide additional information about the logical location.", "$ref": "#/definitions/propertyBag" } } }, "message": { "description": "Encapsulates a message intended to be read by the end user.", "type": "object", "additionalProperties": false, "properties": { "text": { "description": "A plain text message string.", "type": "string" }, "markdown": { "description": "A Markdown message string.", "type": "string" }, "id": { "description": "The identifier for this message.", "type": "string" }, "arguments": { "description": "An array of strings to substitute into the message string.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "type": "string" } }, "properties": { "description": "Key/value pairs that provide additional information about the message.", "$ref": "#/definitions/propertyBag" } }, "anyOf": [ { "required": ["text"] }, { "required": ["id"] } ] }, "multiformatMessageString": { "description": "A message string or message format string rendered in multiple formats.", "type": "object", "additionalProperties": false, "properties": { "text": { "description": "A plain text message string or format string.", "type": "string" }, "markdown": { "description": "A Markdown message string or format string.", "type": "string" }, "properties": { "description": "Key/value pairs that provide additional information about the message.", "$ref": "#/definitions/propertyBag" } }, "required": ["text"] }, "node": { "description": "Represents a node in a graph.", "type": "object", "additionalProperties": false, "properties": { "id": { "description": "A string that uniquely identifies the node within its graph.", "type": "string" }, "label": { "description": "A short description of the node.", "$ref": "#/definitions/message" }, "location": { "description": "A code location associated with the node.", "$ref": "#/definitions/location" }, "children": { "description": "Array of child nodes.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/node" } }, "properties": { "description": "Key/value pairs that provide additional information about the node.", "$ref": "#/definitions/propertyBag" } }, "required": ["id"] }, "notification": { "description": "Describes a condition relevant to the tool itself, as opposed to being relevant to a target being analyzed by the tool.", "type": "object", "additionalProperties": false, "properties": { "locations": { "description": "The locations relevant to this notification.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/location" } }, "message": { "description": "A message that describes the condition that was encountered.", "$ref": "#/definitions/message" }, "level": { "description": "A value specifying the severity level of the notification.", "default": "warning", "enum": ["none", "note", "warning", "error"] }, "threadId": { "description": "The thread identifier of the code that generated the notification.", "type": "integer" }, "timeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which the analysis tool generated the notification.", "type": "string", "format": "date-time" }, "exception": { "description": "The runtime exception, if any, relevant to this notification.", "$ref": "#/definitions/exception" }, "descriptor": { "description": "A reference used to locate the descriptor relevant to this notification.", "$ref": "#/definitions/reportingDescriptorReference" }, "associatedRule": { "description": "A reference used to locate the rule descriptor associated with this notification.", "$ref": "#/definitions/reportingDescriptorReference" }, "properties": { "description": "Key/value pairs that provide additional information about the notification.", "$ref": "#/definitions/propertyBag" } }, "required": ["message"] }, "physicalLocation": { "description": "A physical location relevant to a result. Specifies a reference to a programming artifact together with a range of bytes or characters within that artifact.", "additionalProperties": false, "type": "object", "properties": { "address": { "description": "The address of the location.", "$ref": "#/definitions/address" }, "artifactLocation": { "description": "The location of the artifact.", "$ref": "#/definitions/artifactLocation" }, "region": { "description": "Specifies a portion of the artifact.", "$ref": "#/definitions/region" }, "contextRegion": { "description": "Specifies a portion of the artifact that encloses the region. Allows a viewer to display additional context around the region.", "$ref": "#/definitions/region" }, "properties": { "description": "Key/value pairs that provide additional information about the physical location.", "$ref": "#/definitions/propertyBag" } }, "anyOf": [ { "required": ["address"] }, { "required": ["artifactLocation"] } ] }, "propertyBag": { "description": "Key/value pairs that provide additional information about the object.", "type": "object", "additionalProperties": true, "properties": { "tags": { "description": "A set of distinct strings that provide additional information.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "type": "string" } } } }, "rectangle": { "description": "An area within an image.", "additionalProperties": false, "type": "object", "properties": { "top": { "description": "The Y coordinate of the top edge of the rectangle, measured in the image's natural units.", "type": "number" }, "left": { "description": "The X coordinate of the left edge of the rectangle, measured in the image's natural units.", "type": "number" }, "bottom": { "description": "The Y coordinate of the bottom edge of the rectangle, measured in the image's natural units.", "type": "number" }, "right": { "description": "The X coordinate of the right edge of the rectangle, measured in the image's natural units.", "type": "number" }, "message": { "description": "A message relevant to the rectangle.", "$ref": "#/definitions/message" }, "properties": { "description": "Key/value pairs that provide additional information about the rectangle.", "$ref": "#/definitions/propertyBag" } } }, "region": { "description": "A region within an artifact where a result was detected.", "additionalProperties": false, "type": "object", "properties": { "startLine": { "description": "The line number of the first character in the region.", "type": "integer", "minimum": 1 }, "startColumn": { "description": "The column number of the first character in the region.", "type": "integer", "minimum": 1 }, "endLine": { "description": "The line number of the last character in the region.", "type": "integer", "minimum": 1 }, "endColumn": { "description": "The column number of the character following the end of the region.", "type": "integer", "minimum": 1 }, "charOffset": { "description": "The zero-based offset from the beginning of the artifact of the first character in the region.", "type": "integer", "default": -1, "minimum": -1 }, "charLength": { "description": "The length of the region in characters.", "type": "integer", "minimum": 0 }, "byteOffset": { "description": "The zero-based offset from the beginning of the artifact of the first byte in the region.", "type": "integer", "default": -1, "minimum": -1 }, "byteLength": { "description": "The length of the region in bytes.", "type": "integer", "minimum": 0 }, "snippet": { "description": "The portion of the artifact contents within the specified region.", "$ref": "#/definitions/artifactContent" }, "message": { "description": "A message relevant to the region.", "$ref": "#/definitions/message" }, "sourceLanguage": { "description": "Specifies the source language, if any, of the portion of the artifact specified by the region object.", "type": "string" }, "properties": { "description": "Key/value pairs that provide additional information about the region.", "$ref": "#/definitions/propertyBag" } } }, "replacement": { "description": "The replacement of a single region of an artifact.", "additionalProperties": false, "type": "object", "properties": { "deletedRegion": { "description": "The region of the artifact to delete.", "$ref": "#/definitions/region" }, "insertedContent": { "description": "The content to insert at the location specified by the 'deletedRegion' property.", "$ref": "#/definitions/artifactContent" }, "properties": { "description": "Key/value pairs that provide additional information about the replacement.", "$ref": "#/definitions/propertyBag" } }, "required": ["deletedRegion"] }, "reportingDescriptor": { "description": "Metadata that describes a specific report produced by the tool, as part of the analysis it provides or its runtime reporting.", "additionalProperties": false, "type": "object", "properties": { "id": { "description": "A stable, opaque identifier for the report.", "type": "string" }, "deprecatedIds": { "description": "An array of stable, opaque identifiers by which this report was known in some previous version of the analysis tool.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "type": "string" } }, "guid": { "description": "A unique identifer for the reporting descriptor in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "deprecatedGuids": { "description": "An array of unique identifies in the form of a GUID by which this report was known in some previous version of the analysis tool.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" } }, "name": { "description": "A report identifier that is understandable to an end user.", "type": "string" }, "deprecatedNames": { "description": "An array of readable identifiers by which this report was known in some previous version of the analysis tool.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "type": "string" } }, "shortDescription": { "description": "A concise description of the report. Should be a single sentence that is understandable when visible space is limited to a single line of text.", "$ref": "#/definitions/multiformatMessageString" }, "fullDescription": { "description": "A description of the report. Should, as far as possible, provide details sufficient to enable resolution of any problem indicated by the result.", "$ref": "#/definitions/multiformatMessageString" }, "messageStrings": { "description": "A set of name/value pairs with arbitrary names. Each value is a multiformatMessageString object, which holds message strings in plain text and (optionally) Markdown format. The strings can include placeholders, which can be used to construct a message in combination with an arbitrary number of additional string arguments.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "defaultConfiguration": { "description": "Default reporting configuration information.", "$ref": "#/definitions/reportingConfiguration" }, "helpUri": { "description": "A URI where the primary documentation for the report can be found.", "type": "string", "format": "uri" }, "help": { "description": "Provides the primary documentation for the report, useful when there is no online documentation.", "$ref": "#/definitions/multiformatMessageString" }, "relationships": { "description": "An array of objects that describe relationships between this reporting descriptor and others.", "type": "array", "default": [], "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/reportingDescriptorRelationship" } }, "properties": { "description": "Key/value pairs that provide additional information about the report.", "$ref": "#/definitions/propertyBag" } }, "required": ["id"] }, "reportingConfiguration": { "description": "Information about a rule or notification that can be configured at runtime.", "type": "object", "additionalProperties": false, "properties": { "enabled": { "description": "Specifies whether the report may be produced during the scan.", "type": "boolean", "default": true }, "level": { "description": "Specifies the failure level for the report.", "default": "warning", "enum": ["none", "note", "warning", "error"] }, "rank": { "description": "Specifies the relative priority of the report. Used for analysis output only.", "type": "number", "default": -1, "minimum": -1, "maximum": 100 }, "parameters": { "description": "Contains configuration information specific to a report.", "$ref": "#/definitions/propertyBag" }, "properties": { "description": "Key/value pairs that provide additional information about the reporting configuration.", "$ref": "#/definitions/propertyBag" } } }, "reportingDescriptorReference": { "description": "Information about how to locate a relevant reporting descriptor.", "type": "object", "additionalProperties": false, "properties": { "id": { "description": "The id of the descriptor.", "type": "string" }, "index": { "description": "The index into an array of descriptors in toolComponent.ruleDescriptors, toolComponent.notificationDescriptors, or toolComponent.taxonomyDescriptors, depending on context.", "type": "integer", "default": -1, "minimum": -1 }, "guid": { "description": "A guid that uniquely identifies the descriptor.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "toolComponent": { "description": "A reference used to locate the toolComponent associated with the descriptor.", "$ref": "#/definitions/toolComponentReference" }, "properties": { "description": "Key/value pairs that provide additional information about the reporting descriptor reference.", "$ref": "#/definitions/propertyBag" } }, "anyOf": [ { "required": ["index"] }, { "required": ["guid"] }, { "required": ["id"] } ] }, "reportingDescriptorRelationship": { "description": "Information about the relation of one reporting descriptor to another.", "type": "object", "additionalProperties": false, "properties": { "target": { "description": "A reference to the related reporting descriptor.", "$ref": "#/definitions/reportingDescriptorReference" }, "kinds": { "description": "A set of distinct strings that categorize the relationship. Well-known kinds include 'canPrecede', 'canFollow', 'willPrecede', 'willFollow', 'superset', 'subset', 'equal', 'disjoint', 'relevant', and 'incomparable'.", "type": "array", "default": ["relevant"], "uniqueItems": true, "items": { "type": "string" } }, "description": { "description": "A description of the reporting descriptor relationship.", "$ref": "#/definitions/message" }, "properties": { "description": "Key/value pairs that provide additional information about the reporting descriptor reference.", "$ref": "#/definitions/propertyBag" } }, "required": ["target"] }, "result": { "description": "A result produced by an analysis tool.", "additionalProperties": false, "type": "object", "properties": { "ruleId": { "description": "The stable, unique identifier of the rule, if any, to which this result is relevant.", "type": "string" }, "ruleIndex": { "description": "The index within the tool component rules array of the rule object associated with this result.", "type": "integer", "default": -1, "minimum": -1 }, "rule": { "description": "A reference used to locate the rule descriptor relevant to this result.", "$ref": "#/definitions/reportingDescriptorReference" }, "kind": { "description": "A value that categorizes results by evaluation state.", "default": "fail", "enum": [ "notApplicable", "pass", "fail", "review", "open", "informational" ] }, "level": { "description": "A value specifying the severity level of the result.", "default": "warning", "enum": ["none", "note", "warning", "error"] }, "message": { "description": "A message that describes the result. The first sentence of the message only will be displayed when visible space is limited.", "$ref": "#/definitions/message" }, "analysisTarget": { "description": "Identifies the artifact that the analysis tool was instructed to scan. This need not be the same as the artifact where the result actually occurred.", "$ref": "#/definitions/artifactLocation" }, "locations": { "description": "The set of locations where the result was detected. Specify only one location unless the problem indicated by the result can only be corrected by making a change at every specified location.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/location" } }, "guid": { "description": "A stable, unique identifer for the result in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "correlationGuid": { "description": "A stable, unique identifier for the equivalence class of logically identical results to which this result belongs, in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "occurrenceCount": { "description": "A positive integer specifying the number of times this logically unique result was observed in this run.", "type": "integer", "minimum": 1 }, "partialFingerprints": { "description": "A set of strings that contribute to the stable, unique identity of the result.", "type": "object", "additionalProperties": { "type": "string" } }, "fingerprints": { "description": "A set of strings each of which individually defines a stable, unique identity for the result.", "type": "object", "additionalProperties": { "type": "string" } }, "stacks": { "description": "An array of 'stack' objects relevant to the result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/stack" } }, "codeFlows": { "description": "An array of 'codeFlow' objects relevant to the result.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/codeFlow" } }, "graphs": { "description": "An array of zero or more unique graph objects associated with the result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/graph" } }, "graphTraversals": { "description": "An array of one or more unique 'graphTraversal' objects.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/graphTraversal" } }, "relatedLocations": { "description": "A set of locations relevant to this result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/location" } }, "suppressions": { "description": "A set of suppressions relevant to this result.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/suppression" } }, "baselineState": { "description": "The state of a result relative to a baseline of a previous run.", "enum": ["new", "unchanged", "updated", "absent"] }, "rank": { "description": "A number representing the priority or importance of the result.", "type": "number", "default": -1, "minimum": -1, "maximum": 100 }, "attachments": { "description": "A set of artifacts relevant to the result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/attachment" } }, "hostedViewerUri": { "description": "An absolute URI at which the result can be viewed.", "type": "string", "format": "uri" }, "workItemUris": { "description": "The URIs of the work items associated with this result.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "type": "string", "format": "uri" } }, "provenance": { "description": "Information about how and when the result was detected.", "$ref": "#/definitions/resultProvenance" }, "fixes": { "description": "An array of 'fix' objects, each of which represents a proposed fix to the problem indicated by the result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/fix" } }, "taxa": { "description": "An array of references to taxonomy reporting descriptors that are applicable to the result.", "type": "array", "default": [], "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/reportingDescriptorReference" } }, "webRequest": { "description": "A web request associated with this result.", "$ref": "#/definitions/webRequest" }, "webResponse": { "description": "A web response associated with this result.", "$ref": "#/definitions/webResponse" }, "properties": { "description": "Key/value pairs that provide additional information about the result.", "$ref": "#/definitions/propertyBag" } }, "required": ["message"] }, "resultProvenance": { "description": "Contains information about how and when a result was detected.", "additionalProperties": false, "type": "object", "properties": { "firstDetectionTimeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which the result was first detected. See \"Date/time properties\" in the SARIF spec for the required format.", "type": "string", "format": "date-time" }, "lastDetectionTimeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which the result was most recently detected. See \"Date/time properties\" in the SARIF spec for the required format.", "type": "string", "format": "date-time" }, "firstDetectionRunGuid": { "description": "A GUID-valued string equal to the automationDetails.guid property of the run in which the result was first detected.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "lastDetectionRunGuid": { "description": "A GUID-valued string equal to the automationDetails.guid property of the run in which the result was most recently detected.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "invocationIndex": { "description": "The index within the run.invocations array of the invocation object which describes the tool invocation that detected the result.", "type": "integer", "default": -1, "minimum": -1 }, "conversionSources": { "description": "An array of physicalLocation objects which specify the portions of an analysis tool's output that a converter transformed into the result.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/physicalLocation" } }, "properties": { "description": "Key/value pairs that provide additional information about the result.", "$ref": "#/definitions/propertyBag" } } }, "run": { "description": "Describes a single run of an analysis tool, and contains the reported output of that run.", "additionalProperties": false, "type": "object", "properties": { "tool": { "description": "Information about the tool or tool pipeline that generated the results in this run. A run can only contain results produced by a single tool or tool pipeline. A run can aggregate results from multiple log files, as long as context around the tool run (tool command-line arguments and the like) is identical for all aggregated files.", "$ref": "#/definitions/tool" }, "invocations": { "description": "Describes the invocation of the analysis tool.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/invocation" } }, "conversion": { "description": "A conversion object that describes how a converter transformed an analysis tool's native reporting format into the SARIF format.", "$ref": "#/definitions/conversion" }, "language": { "description": "The language of the messages emitted into the log file during this run (expressed as an ISO 639-1 two-letter lowercase culture code) and an optional region (expressed as an ISO 3166-1 two-letter uppercase subculture code associated with a country or region). The casing is recommended but not required (in order for this data to conform to RFC5646).", "type": "string", "default": "en-US", "pattern": "^[a-zA-Z]{2}|^[a-zA-Z]{2}-[a-zA-Z]{2}?$" }, "versionControlProvenance": { "description": "Specifies the revision in version control of the artifacts that were scanned.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/versionControlDetails" } }, "originalUriBaseIds": { "description": "The artifact location specified by each uriBaseId symbol on the machine where the tool originally ran.", "type": "object", "additionalProperties": { "$ref": "#/definitions/artifactLocation" } }, "artifacts": { "description": "An array of artifact objects relevant to the run.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/artifact" } }, "logicalLocations": { "description": "An array of logical locations such as namespaces, types or functions.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/logicalLocation" } }, "graphs": { "description": "An array of zero or more unique graph objects associated with the run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/graph" } }, "results": { "description": "The set of results contained in an SARIF log. The results array can be omitted when a run is solely exporting rules metadata. It must be present (but may be empty) if a log file represents an actual scan.", "type": "array", "minItems": 0, "uniqueItems": false, "items": { "$ref": "#/definitions/result" } }, "automationDetails": { "description": "Automation details that describe this run.", "$ref": "#/definitions/runAutomationDetails" }, "runAggregates": { "description": "Automation details that describe the aggregate of runs to which this run belongs.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/runAutomationDetails" } }, "baselineGuid": { "description": "The 'guid' property of a previous SARIF 'run' that comprises the baseline that was used to compute result 'baselineState' properties for the run.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "redactionTokens": { "description": "An array of strings used to replace sensitive information in a redaction-aware property.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "type": "string" } }, "defaultEncoding": { "description": "Specifies the default encoding for any artifact object that refers to a text file.", "type": "string" }, "defaultSourceLanguage": { "description": "Specifies the default source language for any artifact object that refers to a text file that contains source code.", "type": "string" }, "newlineSequences": { "description": "An ordered list of character sequences that were treated as line breaks when computing region information for the run.", "type": "array", "minItems": 1, "uniqueItems": true, "default": ["\r\n", "\n"], "items": { "type": "string" } }, "columnKind": { "description": "Specifies the unit in which the tool measures columns.", "enum": ["utf16CodeUnits", "unicodeCodePoints"] }, "externalPropertyFileReferences": { "description": "References to external property files that should be inlined with the content of a root log file.", "$ref": "#/definitions/externalPropertyFileReferences" }, "threadFlowLocations": { "description": "An array of threadFlowLocation objects cached at run level.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/threadFlowLocation" } }, "taxonomies": { "description": "An array of toolComponent objects relevant to a taxonomy in which results are categorized.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "addresses": { "description": "Addresses associated with this run instance, if any.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "$ref": "#/definitions/address" } }, "translations": { "description": "The set of available translations of the localized data provided by the tool.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "policies": { "description": "Contains configurations that may potentially override both reportingDescriptor.defaultConfiguration (the tool's default severities) and invocation.configurationOverrides (severities established at run-time from the command line).", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "webRequests": { "description": "An array of request objects cached at run level.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/webRequest" } }, "webResponses": { "description": "An array of response objects cached at run level.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/webResponse" } }, "specialLocations": { "description": "A specialLocations object that defines locations of special significance to SARIF consumers.", "$ref": "#/definitions/specialLocations" }, "properties": { "description": "Key/value pairs that provide additional information about the run.", "$ref": "#/definitions/propertyBag" } }, "required": ["tool"] }, "runAutomationDetails": { "description": "Information that describes a run's identity and role within an engineering system process.", "additionalProperties": false, "type": "object", "properties": { "description": { "description": "A description of the identity and role played within the engineering system by this object's containing run object.", "$ref": "#/definitions/message" }, "id": { "description": "A hierarchical string that uniquely identifies this object's containing run object.", "type": "string" }, "guid": { "description": "A stable, unique identifer for this object's containing run object in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "correlationGuid": { "description": "A stable, unique identifier for the equivalence class of runs to which this object's containing run object belongs in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "properties": { "description": "Key/value pairs that provide additional information about the run automation details.", "$ref": "#/definitions/propertyBag" } } }, "specialLocations": { "description": "Defines locations of special significance to SARIF consumers.", "type": "object", "additionalProperties": false, "properties": { "displayBase": { "description": "Provides a suggestion to SARIF consumers to display file paths relative to the specified location.", "$ref": "#/definitions/artifactLocation" }, "properties": { "description": "Key/value pairs that provide additional information about the special locations.", "$ref": "#/definitions/propertyBag" } } }, "stack": { "description": "A call stack that is relevant to a result.", "additionalProperties": false, "type": "object", "properties": { "message": { "description": "A message relevant to this call stack.", "$ref": "#/definitions/message" }, "frames": { "description": "An array of stack frames that represents a sequence of calls, rendered in reverse chronological order, that comprise the call stack.", "type": "array", "minItems": 0, "uniqueItems": false, "items": { "$ref": "#/definitions/stackFrame" } }, "properties": { "description": "Key/value pairs that provide additional information about the stack.", "$ref": "#/definitions/propertyBag" } }, "required": ["frames"] }, "stackFrame": { "description": "A function call within a stack trace.", "additionalProperties": false, "type": "object", "properties": { "location": { "description": "The location to which this stack frame refers.", "$ref": "#/definitions/location" }, "module": { "description": "The name of the module that contains the code of this stack frame.", "type": "string" }, "threadId": { "description": "The thread identifier of the stack frame.", "type": "integer" }, "parameters": { "description": "The parameters of the call that is executing.", "type": "array", "minItems": 0, "uniqueItems": false, "default": [], "items": { "type": "string", "default": [] } }, "properties": { "description": "Key/value pairs that provide additional information about the stack frame.", "$ref": "#/definitions/propertyBag" } } }, "suppression": { "description": "A suppression that is relevant to a result.", "additionalProperties": false, "type": "object", "properties": { "guid": { "description": "A stable, unique identifer for the suppression in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "kind": { "description": "A string that indicates where the suppression is persisted.", "enum": ["inSource", "external"] }, "status": { "description": "A string that indicates the review status of the suppression.", "enum": ["accepted", "underReview", "rejected"] }, "justification": { "description": "A string representing the justification for the suppression.", "type": "string" }, "location": { "description": "Identifies the location associated with the suppression.", "$ref": "#/definitions/location" }, "properties": { "description": "Key/value pairs that provide additional information about the suppression.", "$ref": "#/definitions/propertyBag" } }, "required": ["kind"] }, "threadFlow": { "description": "Describes a sequence of code locations that specify a path through a single thread of execution such as an operating system or fiber.", "type": "object", "additionalProperties": false, "properties": { "id": { "description": "An string that uniquely identifies the threadFlow within the codeFlow in which it occurs.", "type": "string" }, "message": { "description": "A message relevant to the thread flow.", "$ref": "#/definitions/message" }, "initialState": { "description": "Values of relevant expressions at the start of the thread flow that may change during thread flow execution.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "immutableState": { "description": "Values of relevant expressions at the start of the thread flow that remain constant.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "locations": { "description": "A temporally ordered array of 'threadFlowLocation' objects, each of which describes a location visited by the tool while producing the result.", "type": "array", "minItems": 1, "uniqueItems": false, "items": { "$ref": "#/definitions/threadFlowLocation" } }, "properties": { "description": "Key/value pairs that provide additional information about the thread flow.", "$ref": "#/definitions/propertyBag" } }, "required": ["locations"] }, "threadFlowLocation": { "description": "A location visited by an analysis tool while simulating or monitoring the execution of a program.", "additionalProperties": false, "type": "object", "properties": { "index": { "description": "The index within the run threadFlowLocations array.", "type": "integer", "default": -1, "minimum": -1 }, "location": { "description": "The code location.", "$ref": "#/definitions/location" }, "stack": { "description": "The call stack leading to this location.", "$ref": "#/definitions/stack" }, "kinds": { "description": "A set of distinct strings that categorize the thread flow location. Well-known kinds include 'acquire', 'release', 'enter', 'exit', 'call', 'return', 'branch', 'implicit', 'false', 'true', 'caution', 'danger', 'unknown', 'unreachable', 'taint', 'function', 'handler', 'lock', 'memory', 'resource', 'scope' and 'value'.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "type": "string" } }, "taxa": { "description": "An array of references to rule or taxonomy reporting descriptors that are applicable to the thread flow location.", "type": "array", "default": [], "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/reportingDescriptorReference" } }, "module": { "description": "The name of the module that contains the code that is executing.", "type": "string" }, "state": { "description": "A dictionary, each of whose keys specifies a variable or expression, the associated value of which represents the variable or expression value. For an annotation of kind 'continuation', for example, this dictionary might hold the current assumed values of a set of global variables.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "nestingLevel": { "description": "An integer representing a containment hierarchy within the thread flow.", "type": "integer", "minimum": 0 }, "executionOrder": { "description": "An integer representing the temporal order in which execution reached this location.", "type": "integer", "default": -1, "minimum": -1 }, "executionTimeUtc": { "description": "The Coordinated Universal Time (UTC) date and time at which this location was executed.", "type": "string", "format": "date-time" }, "importance": { "description": "Specifies the importance of this location in understanding the code flow in which it occurs. The order from most to least important is \"essential\", \"important\", \"unimportant\". Default: \"important\".", "enum": ["important", "essential", "unimportant"], "default": "important" }, "webRequest": { "description": "A web request associated with this thread flow location.", "$ref": "#/definitions/webRequest" }, "webResponse": { "description": "A web response associated with this thread flow location.", "$ref": "#/definitions/webResponse" }, "properties": { "description": "Key/value pairs that provide additional information about the threadflow location.", "$ref": "#/definitions/propertyBag" } } }, "tool": { "description": "The analysis tool that was run.", "additionalProperties": false, "type": "object", "properties": { "driver": { "description": "The analysis tool that was run.", "$ref": "#/definitions/toolComponent" }, "extensions": { "description": "Tool extensions that contributed to or reconfigured the analysis tool that was run.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponent" } }, "properties": { "description": "Key/value pairs that provide additional information about the tool.", "$ref": "#/definitions/propertyBag" } }, "required": ["driver"] }, "toolComponent": { "description": "A component, such as a plug-in or the driver, of the analysis tool that was run.", "additionalProperties": false, "type": "object", "properties": { "guid": { "description": "A unique identifer for the tool component in the form of a GUID.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "name": { "description": "The name of the tool component.", "type": "string" }, "organization": { "description": "The organization or company that produced the tool component.", "type": "string" }, "product": { "description": "A product suite to which the tool component belongs.", "type": "string" }, "productSuite": { "description": "A localizable string containing the name of the suite of products to which the tool component belongs.", "type": "string" }, "shortDescription": { "description": "A brief description of the tool component.", "$ref": "#/definitions/multiformatMessageString" }, "fullDescription": { "description": "A comprehensive description of the tool component.", "$ref": "#/definitions/multiformatMessageString" }, "fullName": { "description": "The name of the tool component along with its version and any other useful identifying information, such as its locale.", "type": "string" }, "version": { "description": "The tool component version, in whatever format the component natively provides.", "type": "string" }, "semanticVersion": { "description": "The tool component version in the format specified by Semantic Versioning 2.0.", "type": "string" }, "dottedQuadFileVersion": { "description": "The binary version of the tool component's primary executable file expressed as four non-negative integers separated by a period (for operating systems that express file versions in this way).", "type": "string", "pattern": "[0-9]+(\\.[0-9]+){3}" }, "releaseDateUtc": { "description": "A string specifying the UTC date (and optionally, the time) of the component's release.", "type": "string" }, "downloadUri": { "description": "The absolute URI from which the tool component can be downloaded.", "type": "string", "format": "uri" }, "informationUri": { "description": "The absolute URI at which information about this version of the tool component can be found.", "type": "string", "format": "uri" }, "globalMessageStrings": { "description": "A dictionary, each of whose keys is a resource identifier and each of whose values is a multiformatMessageString object, which holds message strings in plain text and (optionally) Markdown format. The strings can include placeholders, which can be used to construct a message in combination with an arbitrary number of additional string arguments.", "type": "object", "additionalProperties": { "$ref": "#/definitions/multiformatMessageString" } }, "notifications": { "description": "An array of reportingDescriptor objects relevant to the notifications related to the configuration and runtime execution of the tool component.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/reportingDescriptor" } }, "rules": { "description": "An array of reportingDescriptor objects relevant to the analysis performed by the tool component.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/reportingDescriptor" } }, "taxa": { "description": "An array of reportingDescriptor objects relevant to the definitions of both standalone and tool-defined taxonomies.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/reportingDescriptor" } }, "locations": { "description": "An array of the artifactLocation objects associated with the tool component.", "type": "array", "minItems": 0, "default": [], "items": { "$ref": "#/definitions/artifactLocation" } }, "language": { "description": "The language of the messages emitted into the log file during this run (expressed as an ISO 639-1 two-letter lowercase language code) and an optional region (expressed as an ISO 3166-1 two-letter uppercase subculture code associated with a country or region). The casing is recommended but not required (in order for this data to conform to RFC5646).", "type": "string", "default": "en-US", "pattern": "^[a-zA-Z]{2}|^[a-zA-Z]{2}-[a-zA-Z]{2}?$" }, "contents": { "description": "The kinds of data contained in this object.", "type": "array", "uniqueItems": true, "default": ["localizedData", "nonLocalizedData"], "items": { "enum": ["localizedData", "nonLocalizedData"] } }, "isComprehensive": { "description": "Specifies whether this object contains a complete definition of the localizable and/or non-localizable data for this component, as opposed to including only data that is relevant to the results persisted to this log file.", "type": "boolean", "default": false }, "localizedDataSemanticVersion": { "description": "The semantic version of the localized strings defined in this component; maintained by components that provide translations.", "type": "string" }, "minimumRequiredLocalizedDataSemanticVersion": { "description": "The minimum value of localizedDataSemanticVersion required in translations consumed by this component; used by components that consume translations.", "type": "string" }, "associatedComponent": { "description": "The component which is strongly associated with this component. For a translation, this refers to the component which has been translated. For an extension, this is the driver that provides the extension's plugin model.", "$ref": "#/definitions/toolComponentReference" }, "translationMetadata": { "description": "Translation metadata, required for a translation, not populated by other component types.", "$ref": "#/definitions/translationMetadata" }, "supportedTaxonomies": { "description": "An array of toolComponentReference objects to declare the taxonomies supported by the tool component.", "type": "array", "minItems": 0, "uniqueItems": true, "default": [], "items": { "$ref": "#/definitions/toolComponentReference" } }, "properties": { "description": "Key/value pairs that provide additional information about the tool component.", "$ref": "#/definitions/propertyBag" } }, "required": ["name"] }, "toolComponentReference": { "description": "Identifies a particular toolComponent object, either the driver or an extension.", "type": "object", "additionalProperties": false, "properties": { "name": { "description": "The 'name' property of the referenced toolComponent.", "type": "string" }, "index": { "description": "An index into the referenced toolComponent in tool.extensions.", "type": "integer", "default": -1, "minimum": -1 }, "guid": { "description": "The 'guid' property of the referenced toolComponent.", "type": "string", "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$" }, "properties": { "description": "Key/value pairs that provide additional information about the toolComponentReference.", "$ref": "#/definitions/propertyBag" } } }, "translationMetadata": { "description": "Provides additional metadata related to translation.", "type": "object", "additionalProperties": false, "properties": { "name": { "description": "The name associated with the translation metadata.", "type": "string" }, "fullName": { "description": "The full name associated with the translation metadata.", "type": "string" }, "shortDescription": { "description": "A brief description of the translation metadata.", "$ref": "#/definitions/multiformatMessageString" }, "fullDescription": { "description": "A comprehensive description of the translation metadata.", "$ref": "#/definitions/multiformatMessageString" }, "downloadUri": { "description": "The absolute URI from which the translation metadata can be downloaded.", "type": "string", "format": "uri" }, "informationUri": { "description": "The absolute URI from which information related to the translation metadata can be downloaded.", "type": "string", "format": "uri" }, "properties": { "description": "Key/value pairs that provide additional information about the translation metadata.", "$ref": "#/definitions/propertyBag" } }, "required": ["name"] }, "versionControlDetails": { "description": "Specifies the information necessary to retrieve a desired revision from a version control system.", "type": "object", "additionalProperties": false, "properties": { "repositoryUri": { "description": "The absolute URI of the repository.", "type": "string", "format": "uri" }, "revisionId": { "description": "A string that uniquely and permanently identifies the revision within the repository.", "type": "string" }, "branch": { "description": "The name of a branch containing the revision.", "type": "string" }, "revisionTag": { "description": "A tag that has been applied to the revision.", "type": "string" }, "asOfTimeUtc": { "description": "A Coordinated Universal Time (UTC) date and time that can be used to synchronize an enlistment to the state of the repository at that time.", "type": "string", "format": "date-time" }, "mappedTo": { "description": "The location in the local file system to which the root of the repository was mapped at the time of the analysis.", "$ref": "#/definitions/artifactLocation" }, "properties": { "description": "Key/value pairs that provide additional information about the version control details.", "$ref": "#/definitions/propertyBag" } }, "required": ["repositoryUri"] }, "webRequest": { "description": "Describes an HTTP request.", "type": "object", "additionalProperties": false, "properties": { "index": { "description": "The index within the run.webRequests array of the request object associated with this result.", "type": "integer", "default": -1, "minimum": -1 }, "protocol": { "description": "The request protocol. Example: 'http'.", "type": "string" }, "version": { "description": "The request version. Example: '1.1'.", "type": "string" }, "target": { "description": "The target of the request.", "type": "string" }, "method": { "description": "The HTTP method. Well-known values are 'GET', 'PUT', 'POST', 'DELETE', 'PATCH', 'HEAD', 'OPTIONS', 'TRACE', 'CONNECT'.", "type": "string" }, "headers": { "description": "The request headers.", "type": "object", "additionalProperties": { "type": "string" } }, "parameters": { "description": "The request parameters.", "type": "object", "additionalProperties": { "type": "string" } }, "body": { "description": "The body of the request.", "$ref": "#/definitions/artifactContent" }, "properties": { "description": "Key/value pairs that provide additional information about the request.", "$ref": "#/definitions/propertyBag" } } }, "webResponse": { "description": "Describes the response to an HTTP request.", "type": "object", "additionalProperties": false, "properties": { "index": { "description": "The index within the run.webResponses array of the response object associated with this result.", "type": "integer", "default": -1, "minimum": -1 }, "protocol": { "description": "The response protocol. Example: 'http'.", "type": "string" }, "version": { "description": "The response version. Example: '1.1'.", "type": "string" }, "statusCode": { "description": "The response status code. Example: 451.", "type": "integer" }, "reasonPhrase": { "description": "The response reason. Example: 'Not found'.", "type": "string" }, "headers": { "description": "The response headers.", "type": "object", "additionalProperties": { "type": "string" } }, "body": { "description": "The body of the response.", "$ref": "#/definitions/artifactContent" }, "noResponseReceived": { "description": "Specifies whether a response was received from the server.", "type": "boolean", "default": false }, "properties": { "description": "Key/value pairs that provide additional information about the response.", "$ref": "#/definitions/propertyBag" } } } }, "description": "Static Analysis Results Format (SARIF) Version 2.1.0 JSON Schema: a standard format for the output of static analysis tools.", "properties": { "$schema": { "description": "The URI of the JSON schema corresponding to the version.", "type": "string", "format": "uri" }, "version": { "description": "The SARIF format version of this log file.", "enum": ["2.1.0"] }, "runs": { "description": "The set of runs contained in this log file.", "type": "array", "minItems": 0, "uniqueItems": false, "items": { "$ref": "#/definitions/run" } }, "inlineExternalProperties": { "description": "References to external property files that share data between runs.", "type": "array", "minItems": 0, "uniqueItems": true, "items": { "$ref": "#/definitions/externalProperties" } }, "properties": { "description": "Key/value pairs that provide additional information about the log file.", "$ref": "#/definitions/propertyBag" } }, "required": ["version", "runs"], "title": "Static Analysis Results Format (SARIF) Version 2.1.0 JSON Schema", "type": "object" }
sarif-2
{ "properties": { "distance_travelled": { "description": "The distance travelled in kilometers", "type": "number" }, "fuel_type": { "description": "The type of fuel used", "type": "string" }, "passenger_count": { "description": "The number of passengers in the vehicle", "type": "integer" }, "vehicle_type": { "description": "The type of vehicle used", "type": "string" } }, "required": [ "distance_travelled", "vehicle_type", "fuel_type" ], "type": "object" }
calculate_carbon_footprint_d6ee8c6a
{ "properties": { "dimensions": { "properties": { "height": { "description": "The height of the object", "type": "number" }, "length": { "description": "The length of the object", "type": "number" }, "radius": { "description": "The radius of the object", "type": "number" }, "width": { "description": "The width of the object", "type": "number" } }, "required": [ "length", "width", "height", "radius" ], "type": "object" }, "object": { "description": "The type of object, e.g. cube, sphere, cylinder", "type": "string" } }, "required": [ "object", "dimensions" ], "type": "object" }
calculate_volume_48347ef8
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Action", "type": "object", "properties": { "target": { "type": "string", "description": "The **generatedIdentifier** given by iFLUX Server. See the API `GET actionTargets` or GET `actionTargets/:id`" }, "type": { "type": "string", "description": "Valid URL defining the action type." }, "properties": { "type": "object", "description": "Free object that contains the transformation done by the rule evaluation. If no transformation, the event is sent as the properties. In this case, refers to `POST /events`.", "properties": { "*": { "type": "object" } } } }, "required": [ "target", "type", "properties" ] }
o14490
{ "$defs": { "ansible.builtin.import_playbook": { "additionalProperties": false, "oneOf": [ { "not": { "required": [ "import_playbook" ] }, "required": [ "ansible.builtin.import_playbook" ] }, { "not": { "required": [ "ansible.builtin.import_playbook" ] }, "required": [ "import_playbook" ] } ], "patternProperties": { "^(ansible\\.builtin\\.)?import_playbook$": { "markdownDescription": "* Includes a file with a list of plays to be executed.\n * Files with a list of plays can only be included at the top level.\n * You cannot use this action inside a play.\n\nSee [import_playbook](https://docs.ansible.com/ansible/latest/collections/ansible/builtin/import_playbook_module.html)", "title": "Import Playbook", "type": "string" }, "name": { "title": "Name", "type": "string" }, "tags": { "$ref": "#/$defs/tags" }, "vars": { "title": "Vars", "type": "object" }, "when": { "$ref": "#/$defs/complex_conditional", "title": "When" } }, "type": "object" }, "become_method": { "anyOf": [ { "enum": [ "ansible.builtin.sudo", "ansible.builtin.su", "community.general.pbrun", "community.general.pfexec", "ansible.builtin.runas", "community.general.dzdo", "community.general.ksu", "community.general.doas", "community.general.machinectl", "community.general.pmrun", "community.general.sesu", "community.general.sudosu" ], "type": "string" }, { "$ref": "#/$defs/full-jinja" }, { "pattern": "[A-Za-z0-9_\\.]+", "type": "string" } ], "markdownDescription": "See [become](https://docs.ansible.com/ansible/latest/user_guide/become.html)", "title": "Become Method" }, "block": { "properties": { "always": { "items": { "anyOf": [ { "$ref": "#/$defs/task" }, { "$ref": "#/$defs/block" } ] }, "title": "Always", "type": "array" }, "any_errors_fatal": { "$ref": "#/$defs/templated-boolean", "title": "Any Errors Fatal" }, "become": { "$ref": "#/$defs/templated-boolean", "title": "Become" }, "become_exe": { "title": "Become Exe", "type": "string" }, "become_flags": { "title": "Become Flags", "type": "string" }, "become_method": { "$ref": "#/$defs/become_method" }, "become_user": { "title": "Become User", "type": "string" }, "block": { "items": { "anyOf": [ { "$ref": "#/$defs/task" }, { "$ref": "#/$defs/block" } ] }, "markdownDescription": "Blocks create logical groups of tasks. Blocks also offer ways to handle task errors, similar to exception handling in many programming languages. See [blocks](https://docs.ansible.com/ansible/latest/user_guide/playbooks_blocks.html)", "title": "Block", "type": "array" }, "check_mode": { "$ref": "#/$defs/complex_conditional", "title": "Check Mode" }, "collections": { "items": { "type": "string" }, "title": "Collections", "type": "array" }, "connection": { "title": "Connection", "type": "string" }, "debugger": { "title": "Debugger", "type": "string" }, "delegate_facts": { "title": "Delegate Facts", "type": "boolean" }, "delegate_to": { "title": "Delegate To", "type": "string" }, "diff": { "$ref": "#/$defs/templated-boolean", "title": "Diff" }, "environment": { "$ref": "#/$defs/environment" }, "ignore_errors": { "$ref": "#/$defs/ignore_errors" }, "ignore_unreachable": { "title": "Ignore Unreachable", "type": "boolean" }, "module_defaults": { "title": "Module Defaults" }, "name": { "title": "Name", "type": "string" }, "no_log": { "$ref": "#/$defs/templated-boolean" }, "port": { "$ref": "#/$defs/templated-integer" }, "remote_user": { "title": "Remote User", "type": "string" }, "rescue": { "items": { "anyOf": [ { "$ref": "#/$defs/task" }, { "$ref": "#/$defs/block" } ] }, "title": "Rescue", "type": "array" }, "run_once": { "$ref": "#/$defs/templated-boolean", "title": "Run Once" }, "tags": { "$ref": "#/$defs/tags", "title": "Tags" }, "throttle": { "$ref": "#/$defs/templated-integer", "title": "Throttle" }, "timeout": { "$ref": "#/$defs/templated-integer", "title": "Timeout" }, "vars": { "title": "Vars", "type": "object" }, "when": { "$ref": "#/$defs/complex_conditional", "title": "When" } }, "required": [ "block" ], "type": "object" }, "complex_conditional": { "oneOf": [ { "type": "boolean" }, { "type": "string" }, { "items": { "anyOf": [ { "type": "boolean" }, { "type": "string" } ] }, "type": "array" } ] }, "environment": { "anyOf": [ { "additionalProperties": { "type": "string" }, "type": "object" }, { "$ref": "#/$defs/full-jinja" } ], "title": "Environment" }, "full-jinja": { "pattern": "^\\{[\\{%](.|[\r\n])*[\\}%]\\}$", "type": "string" }, "ignore_errors": { "$ref": "#/$defs/templated-boolean", "markdownDescription": "See [ignore_errors](https://docs.ansible.com/ansible/latest/user_guide/playbooks_error_handling.html#ignoring-failed-commands)", "title": "Ignore Errors" }, "no_log": { "$ref": "#/$defs/templated-boolean", "markdownDescription": "Use for protecting sensitive data. See [no_log](https://docs.ansible.com/ansible/latest/reference_appendices/logging.html)", "title": "no_log" }, "play": { "additionalProperties": false, "allOf": [ { "not": { "required": [ "ansible.builtin.import_playbook" ] } }, { "not": { "required": [ "import_playbook" ] } } ], "properties": { "any_errors_fatal": { "$ref": "#/$defs/templated-boolean", "title": "Any Errors Fatal" }, "become": { "$ref": "#/$defs/templated-boolean", "title": "Become" }, "become_exe": { "title": "Become Exe", "type": "string" }, "become_flags": { "title": "Become Flags", "type": "string" }, "become_method": { "$ref": "#/$defs/become_method" }, "become_user": { "title": "Become User", "type": "string" }, "check_mode": { "$ref": "#/$defs/complex_conditional", "title": "Check Mode" }, "collections": { "items": { "type": "string" }, "title": "Collections", "type": "array" }, "connection": { "title": "Connection", "type": "string" }, "debugger": { "title": "Debugger", "type": "string" }, "diff": { "$ref": "#/$defs/templated-boolean", "title": "Diff" }, "environment": { "$ref": "#/$defs/environment" }, "fact_path": { "title": "Fact Path", "type": "string" }, "force_handlers": { "title": "Force Handlers", "type": "boolean" }, "gather_facts": { "$ref": "#/$defs/templated-boolean", "title": "Gather Facts" }, "gather_subset": { "items": { "anyOf": [ { "enum": [ "all", "min", "all_ipv4_addresses", "all_ipv6_addresses", "apparmor", "architecture", "caps", "chroot,cmdline", "date_time", "default_ipv4", "default_ipv6", "devices", "distribution", "distribution_major_version", "distribution_release", "distribution_version", "dns", "effective_group_ids", "effective_user_id", "env", "facter", "fips", "hardware", "interfaces", "is_chroot", "iscsi", "kernel", "local", "lsb", "machine", "machine_id", "mounts", "network", "ohai", "os_family", "pkg_mgr", "platform", "processor", "processor_cores", "processor_count", "python", "python_version", "real_user_id", "selinux", "service_mgr", "ssh_host_key_dsa_public", "ssh_host_key_ecdsa_public", "ssh_host_key_ed25519_public", "ssh_host_key_rsa_public", "ssh_host_pub_keys", "ssh_pub_keys", "system", "system_capabilities", "system_capabilities_enforced", "user", "user_dir", "user_gecos", "user_gid", "user_id", "user_shell", "user_uid", "virtual", "virtualization_role", "virtualization_type" ], "type": "string" }, { "enum": [ "!all", "!min", "!all_ipv4_addresses", "!all_ipv6_addresses", "!apparmor", "!architecture", "!caps", "!chroot,cmdline", "!date_time", "!default_ipv4", "!default_ipv6", "!devices", "!distribution", "!distribution_major_version", "!distribution_release", "!distribution_version", "!dns", "!effective_group_ids", "!effective_user_id", "!env", "!facter", "!fips", "!hardware", "!interfaces", "!is_chroot", "!iscsi", "!kernel", "!local", "!lsb", "!machine", "!machine_id", "!mounts", "!network", "!ohai", "!os_family", "!pkg_mgr", "!platform", "!processor", "!processor_cores", "!processor_count", "!python", "!python_version", "!real_user_id", "!selinux", "!service_mgr", "!ssh_host_key_dsa_public", "!ssh_host_key_ecdsa_public", "!ssh_host_key_ed25519_public", "!ssh_host_key_rsa_public", "!ssh_host_pub_keys", "!ssh_pub_keys", "!system", "!system_capabilities", "!system_capabilities_enforced", "!user", "!user_dir", "!user_gecos", "!user_gid", "!user_id", "!user_shell", "!user_uid", "!virtual", "!virtualization_role", "!virtualization_type" ], "type": "string" } ] }, "title": "Gather Subset", "type": "array" }, "gather_timeout": { "$ref": "#/$defs/templated-integer", "title": "Gather Timeout" }, "handlers": { "$ref": "#/$defs/tasks" }, "hosts": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "Hosts" }, "ignore_errors": { "$ref": "#/$defs/ignore_errors" }, "ignore_unreachable": { "title": "Ignore Unreachable", "type": "boolean" }, "max_fail_percentage": { "title": "Max Fail Percentage", "type": "number" }, "module_defaults": { "title": "Module Defaults" }, "name": { "title": "Name", "type": "string" }, "no_log": { "$ref": "#/$defs/templated-boolean" }, "order": { "enum": [ "default", "sorted", "reverse_sorted", "reverse_inventory", "shuffle" ], "title": "Order", "type": "string" }, "port": { "$ref": "#/$defs/templated-integer", "title": "Port" }, "post_tasks": { "$ref": "#/$defs/tasks" }, "pre_tasks": { "$ref": "#/$defs/tasks" }, "remote_user": { "title": "Remote User", "type": "string" }, "roles": { "items": { "anyOf": [ { "$ref": "#/$defs/play-role" }, { "type": "string" } ] }, "markdownDescription": "Roles let you automatically load related vars, files, tasks, handlers, and other Ansible artifacts based on a known file structure. After you group your content in roles, you can easily reuse them and share them with other users.\n See [roles](https://docs.ansible.com/ansible/latest/user_guide/playbooks_reuse_roles.html#roles)", "title": "Roles", "type": "array" }, "run_once": { "$ref": "#/$defs/templated-boolean", "title": "Run Once" }, "serial": { "anyOf": [ { "$ref": "#/$defs/templated-integer-or-percent" }, { "items": { "$ref": "#/$defs/templated-integer-or-percent" }, "type": "array" } ], "markdownDescription": "Integer, percentage or list of those. See [Setting the batch size with serial](https://docs.ansible.com/ansible/latest/user_guide/playbooks_strategies.html#setting-the-batch-size-with-serial)", "title": "Batch size" }, "strategy": { "title": "Strategy", "type": "string" }, "tags": { "$ref": "#/$defs/tags", "title": "Tags" }, "tasks": { "$ref": "#/$defs/tasks" }, "throttle": { "$ref": "#/$defs/templated-integer", "title": "Throttle" }, "timeout": { "$ref": "#/$defs/templated-integer", "title": "Timeout" }, "user": { "title": "Remote User", "type": "string" }, "vars": { "title": "Vars", "type": "object" }, "vars_files": { "items": { "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "title": "Vars Files", "type": [ "array", "string", "null" ] }, "vars_prompt": { "items": { "$ref": "#/$defs/vars_prompt" }, "markdownDescription": "See [vars_prompt](https://docs.ansible.com/ansible/latest/user_guide/playbooks_prompts.html)", "title": "vars_prompt", "type": "array" }, "when": { "$ref": "#/$defs/complex_conditional", "title": "When" } }, "required": [ "hosts" ], "title": "play", "type": "object" }, "play-role": { "markdownDescription": "See [roles](https://docs.ansible.com/ansible/latest/user_guide/playbooks_reuse_roles.html#roles)", "properties": { "any_errors_fatal": { "$ref": "#/$defs/templated-boolean", "title": "Any Errors Fatal" }, "become": { "$ref": "#/$defs/templated-boolean", "title": "Become" }, "become_exe": { "title": "Become Exe", "type": "string" }, "become_flags": { "title": "Become Flags", "type": "string" }, "become_method": { "$ref": "#/$defs/become_method" }, "become_user": { "title": "Become User", "type": "string" }, "check_mode": { "$ref": "#/$defs/complex_conditional", "title": "Check Mode" }, "collections": { "items": { "type": "string" }, "title": "Collections", "type": "array" }, "connection": { "title": "Connection", "type": "string" }, "debugger": { "title": "Debugger", "type": "string" }, "delegate_to": { "title": "Delegate To", "type": "string" }, "diff": { "$ref": "#/$defs/templated-boolean", "title": "Diff" }, "environment": { "$ref": "#/$defs/environment" }, "ignore_errors": { "$ref": "#/$defs/ignore_errors" }, "ignore_unreachable": { "title": "Ignore Unreachable", "type": "boolean" }, "module_defaults": { "title": "Module Defaults" }, "name": { "title": "Name", "type": "string" }, "no_log": { "$ref": "#/$defs/templated-boolean" }, "port": { "$ref": "#/$defs/templated-integer", "title": "Port" }, "remote_user": { "title": "Remote User", "type": "string" }, "role": { "title": "Role", "type": "string" }, "run_once": { "$ref": "#/$defs/templated-boolean", "title": "Run Once" }, "tags": { "$ref": "#/$defs/tags", "title": "Tags" }, "throttle": { "$ref": "#/$defs/templated-integer", "title": "Throttle" }, "timeout": { "$ref": "#/$defs/templated-integer", "title": "Timeout" }, "vars": { "title": "Vars", "type": "object" }, "when": { "$ref": "#/$defs/complex_conditional", "title": "When" } }, "required": [ "role" ], "title": "play-role", "type": "object" }, "playbook": { "examples": [ "playbooks/*.yml", "playbooks/*.yaml" ], "items": { "oneOf": [ { "$ref": "#/$defs/ansible.builtin.import_playbook" }, { "$ref": "#/$defs/play" } ] }, "title": "Ansible Playbook", "type": "array" }, "tags": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "Tags" }, "task": { "additionalProperties": true, "allOf": [ { "not": { "required": [ "hosts" ] } }, { "not": { "required": [ "tasks" ] } }, { "not": { "required": [ "import_playbook" ] } }, { "not": { "required": [ "block" ] } } ], "properties": { "action": { "title": "Action", "type": "string" }, "any_errors_fatal": { "$ref": "#/$defs/templated-boolean", "title": "Any Errors Fatal" }, "args": { "$ref": "#/$defs/templated-object", "title": "Args" }, "async": { "$ref": "#/$defs/templated-integer", "title": "Async" }, "become": { "$ref": "#/$defs/templated-boolean", "title": "Become" }, "become_exe": { "title": "Become Exe", "type": "string" }, "become_flags": { "title": "Become Flags", "type": "string" }, "become_method": { "$ref": "#/$defs/become_method" }, "become_user": { "title": "Become User", "type": "string" }, "changed_when": { "$ref": "#/$defs/complex_conditional", "markdownDescription": "See [changed_when](https://docs.ansible.com/ansible/latest/user_guide/playbooks_error_handling.html#defining-changed)", "title": "Changed When" }, "check_mode": { "$ref": "#/$defs/complex_conditional", "title": "Check Mode" }, "collections": { "items": { "type": "string" }, "title": "Collections", "type": "array" }, "connection": { "title": "Connection", "type": "string" }, "debugger": { "title": "Debugger", "type": "string" }, "delay": { "$ref": "#/$defs/templated-integer", "title": "Delay" }, "delegate_facts": { "title": "Delegate Facts", "type": "boolean" }, "delegate_to": { "title": "Delegate To", "type": "string" }, "diff": { "$ref": "#/$defs/templated-boolean", "title": "Diff" }, "environment": { "$ref": "#/$defs/environment" }, "failed_when": { "$ref": "#/$defs/complex_conditional", "title": "Failed When" }, "ignore_errors": { "$ref": "#/$defs/ignore_errors" }, "ignore_unreachable": { "title": "Ignore Unreachable", "type": "boolean" }, "listen": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "markdownDescription": "Applies only to handlers. See [listen](https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_handlers.html)", "title": "Listen" }, "local_action": { "title": "Local Action", "type": [ "string", "object" ] }, "loop": { "title": "Loop", "type": [ "string", "array" ] }, "loop_control": { "title": "Loop Control" }, "module_defaults": { "title": "Module Defaults" }, "name": { "title": "Name", "type": "string" }, "no_log": { "$ref": "#/$defs/no_log" }, "notify": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ], "title": "Notify" }, "poll": { "$ref": "#/$defs/templated-integer", "title": "Poll" }, "port": { "$ref": "#/$defs/templated-integer", "title": "Port" }, "register": { "title": "Register", "type": "string" }, "remote_user": { "title": "Remote User", "type": "string" }, "retries": { "$ref": "#/$defs/templated-integer", "title": "Retries" }, "run_once": { "$ref": "#/$defs/templated-boolean", "title": "Run Once" }, "tags": { "$ref": "#/$defs/tags", "title": "Tags" }, "throttle": { "$ref": "#/$defs/templated-integer", "title": "Throttle" }, "timeout": { "$ref": "#/$defs/templated-integer", "title": "Timeout" }, "until": { "$ref": "#/$defs/complex_conditional", "title": "Until" }, "vars": { "title": "Vars", "type": "object" }, "when": { "$ref": "#/$defs/complex_conditional", "title": "When" }, "with_dict": { "title": "With Dict" }, "with_fileglob": { "title": "With Fileglob" }, "with_filetree": { "title": "With Filetree" }, "with_first_found": { "title": "With First Found" }, "with_indexed_items": { "title": "With Indexed Items" }, "with_ini": { "title": "With Ini" }, "with_inventory_hostnames": { "title": "With Inventory Hostnames" }, "with_items": { "anyOf": [ { "$ref": "#/$defs/full-jinja" }, { "type": "array" } ], "markdownDescription": "See [loops](https://docs.ansible.com/ansible/latest/user_guide/playbooks_loops.html#loops)", "title": "With Items" }, "with_lines": { "title": "With Lines" }, "with_random_choice": { "title": "With Random Choice" }, "with_sequence": { "title": "With Sequence" }, "with_subelements": { "title": "With Subelements" }, "with_together": { "title": "With Together" } }, "title": "task", "type": "object" }, "tasks": { "$schema": "http://json-schema.org/draft-07/schema", "examples": [ "tasks/*.yml", "handlers/*.yml" ], "items": { "anyOf": [ { "$ref": "#/$defs/block" }, { "$ref": "#/$defs/task" } ] }, "title": "Ansible Tasks Schema", "type": [ "array", "null" ] }, "templated-boolean": { "oneOf": [ { "type": "boolean" }, { "$ref": "#/$defs/full-jinja", "type": "string" } ] }, "templated-integer": { "oneOf": [ { "type": "integer" }, { "$ref": "#/$defs/full-jinja", "type": "string" } ] }, "templated-integer-or-percent": { "oneOf": [ { "type": "integer" }, { "pattern": "^\\d+\\.?\\d*%?$", "type": "string" }, { "$ref": "#/$defs/full-jinja", "type": "string" } ] }, "templated-object": { "oneOf": [ { "type": "object" }, { "$ref": "#/$defs/full-jinja", "type": "string" } ] }, "vars_prompt": { "additionalProperties": false, "properties": { "confirm": { "title": "Confirm", "type": "boolean" }, "default": { "title": "Default", "type": "string" }, "encrypt": { "enum": [ "des_crypt", "bsdi_crypt", "bigcrypt", "crypt16", "md5_crypt", "bcrypt", "sha1_crypt", "sun_md5_crypt", "sha256_crypt", "sha512_crypt", "apr_md5_crypt", "phpass", "pbkdf2_digest", "cta_pbkdf2_sha1", "dlitz_pbkdf2_sha1", "scram", "bsd_nthash" ], "title": "Encrypt", "type": "string" }, "name": { "title": "Name", "type": "string" }, "private": { "default": true, "title": "Private", "type": "boolean" }, "prompt": { "title": "Prompt", "type": "string" }, "salt_size": { "default": 8, "title": "Salt Size", "type": "integer" }, "unsafe": { "default": false, "markdownDescription": "See [unsafe](https://docs.ansible.com/ansible/latest/user_guide/playbooks_prompts.html#allowing-special-characters-in-vars-prompt-values)", "title": "Unsafe", "type": "boolean" } }, "required": [ "name", "prompt" ], "type": "object" } }, "$id": "https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/ansible.json", "$schema": "http://json-schema.org/draft-07/schema", "additionalProperties": false, "examples": [], "title": "Ansible Schemas Bundle 22.4", "properties": { "$defs.ansible.builtin.import_playbook": { "$ref": "#/$defs/ansible.builtin.import_playbook" }, "$defs.become_method": { "$ref": "#/$defs/become_method" }, "$defs.block": { "$ref": "#/$defs/block" }, "$defs.complex_conditional": { "$ref": "#/$defs/complex_conditional" }, "$defs.environment": { "$ref": "#/$defs/environment" }, "$defs.full-jinja": { "$ref": "#/$defs/full-jinja" }, "$defs.ignore_errors": { "$ref": "#/$defs/ignore_errors" }, "$defs.no_log": { "$ref": "#/$defs/no_log" }, "$defs.play": { "$ref": "#/$defs/play" }, "$defs.play-role": { "$ref": "#/$defs/play-role" }, "$defs.playbook": { "$ref": "#/$defs/playbook" }, "$defs.tags": { "$ref": "#/$defs/tags" }, "$defs.task": { "$ref": "#/$defs/task" }, "$defs.tasks": { "$ref": "#/$defs/tasks" }, "$defs.templated-boolean": { "$ref": "#/$defs/templated-boolean" }, "$defs.templated-integer": { "$ref": "#/$defs/templated-integer" }, "$defs.templated-integer-or-percent": { "$ref": "#/$defs/templated-integer-or-percent" }, "$defs.templated-object": { "$ref": "#/$defs/templated-object" }, "$defs.vars_prompt": { "$ref": "#/$defs/vars_prompt" } }, "required": [ "$defs.ansible.builtin.import_playbook", "$defs.become_method", "$defs.block", "$defs.complex_conditional", "$defs.environment", "$defs.full-jinja", "$defs.ignore_errors", "$defs.no_log", "$defs.play", "$defs.play-role", "$defs.playbook", "$defs.tags", "$defs.task", "$defs.tasks", "$defs.templated-boolean", "$defs.templated-integer", "$defs.templated-integer-or-percent", "$defs.templated-object", "$defs.vars_prompt" ] }
ansible
{ "properties": { "database": { "description": "Kong database configuration properties", "properties": { "database": { "default": "postgres", "description": "The database backend type", "type": "string" }, "host": { "default": "postgresql.marathon.l4lb.thisdcos.directory", "description": "The DNS name of the internal MLB", "type": "string" }, "password": { "default": "kong", "description": "The postgresdb password", "type": "string" }, "port": { "default": 5432, "description": "The service port for the postgresdb", "type": "integer" }, "user": { "default": "kong", "description": "The postgresdb username", "type": "string" } }, "required": [ "password", "host", "user", "port", "database" ], "type": "object" }, "kong": { "description": "DC/OS service configuration properties", "properties": { "cpus": { "default": 1, "description": "CPU shares to allocate to each instance.", "minimum": 1, "type": "number" }, "instances": { "default": 1, "description": "Number of instances to run.", "minimum": 1, "type": "integer" }, "mem": { "default": 512, "description": "Memory (MB) to allocate to each task.", "minimum": 512, "type": "number" }, "name": { "default": "kong", "description": "Name for this application", "type": "string" }, "role": { "default": "*", "description": "Deploy crm only on nodes with this role.", "type": "string" } }, "required": [ "cpus", "mem", "instances", "name" ], "type": "object" }, "marathon-lb": { "description": "Marathon-LB service configuration properties", "properties": { "group0": { "default": "external", "description": "The MLB name for HAPROXY_0_GROUP", "type": "string" }, "group1": { "default": "external", "description": "The MLB name for HAPROXY_1_GROUP", "type": "string" }, "port0": { "default": 10001, "description": "The service port for port0", "type": "integer" }, "port1": { "default": 10002, "description": "The service port for port1", "type": "integer" }, "port2": { "default": 10003, "description": "The service port for port2", "type": "integer" }, "port3": { "default": 10004, "description": "The service port for port3", "type": "integer" } }, "required": [ "port0", "port1", "port2", "port3", "group0", "group1" ], "type": "object" } }, "type": "object" }
o90711
{ "$schema": "http://json-schema.org/draft-04/schema#", "default": { "IsEncrypted": false, "Values": { "AzureWebJobsStorage": "", "FUNCTIONS_WORKER_RUNTIME": "" } }, "id": "https://json.schemastore.org/local.settings.json", "properties": { "IsEncrypted": { "type": "boolean", "description": "When this setting is set to true, all values are encrypted with a local machine key. Used with func settings commands. Default value is false. You might want to encrypt the local.settings.json file on your local computer when it contains secrets, such as service connection strings. The host automatically decrypts settings when it runs. Use the func settings decrypt command before trying to read locally encrypted settings.", "default": false }, "Values": { "type": "object", "description": "Application settings and connection strings used when a project is running locally. These key-value (string-string) pairs correspond to application settings in your function app in Azure, like AzureWebJobsStorage. Many triggers and bindings have a property that refers to a connection string app setting, like Connection for the Blob storage trigger. For these properties, you need an application setting defined in the Values array. See the subsequent table for a list of commonly used settings. Values must be strings and not JSON objects or arrays. Setting names can't include a colon (:) or a double underline (__). Double underline characters are reserved by the runtime, and the colon is reserved to support dependency injection.", "properties": { "FUNCTIONS_WORKER_RUNTIME": { "type": "string", "enum": [ "custom", "dotnet", "dotnet-isolated", "node", "java", "powershell", "python" ], "description": "Indicates the targeted language of the Functions runtime. Required for version 2.x and higher of the Functions runtime. This setting is generated for your project by Core Tools. To learn more, see the FUNCTIONS_WORKER_RUNTIME reference." }, "AzureWebJobsStorage": { "type": "string", "description": "Contains the connection string for an Azure storage account. Required when using triggers other than HTTP. For more information, see the AzureWebJobsStorage reference. When you have the Azure storage emulator installed locally and you set AzureWebJobsStorage to UseDevelopmentStorage=true, Core Tools uses the emulator. The emulator is useful during development, but you should test with an actual storage connection before deployment.", "examples": ["", "UseDevelopmentStorage=true"] }, "AzureWebJobsDashboard": { "type": "string", "description": "DEPRECATED. Legacy Storage connection string for storing logs. May impact performance and increase Storage transactions/costs." }, "FUNCTIONS_WORKER_RUNTIME_VERSION": { "type": "string", "description": "Indicates that PowerShell 7 be used when running locally. If not set, then PowerShell Core 6 is used. This setting is only used when running locally. When running in Azure, the PowerShell runtime version is determined by the powerShellVersion site configuration setting, which can be set in the portal." } } }, "Host": { "type": "object", "description": "Settings in this section customize the Functions host process when you run projects locally. These settings are separate from the host.json settings, which also apply when you run projects in Azure.", "properties": { "LocalHttpPort": { "type": "integer", "description": "Settings in this section customize the Functions host process when you run projects locally. These settings are separate from the host.json settings, which also apply when you run projects in Azure." }, "CORS": { "type": "string", "description": "Defines the origins allowed for cross-origin resource sharing (CORS). Origins are supplied as a comma-separated list with no spaces. The wildcard value (*) is supported, which allows requests from any origin." }, "CORSCredentials": { "type": "boolean", "description": "When set to true, allows withCredentials requests." } } }, "ConnectionStrings": { "type": "object", "description": "A collection. Don't use this collection for the connection strings used by your function bindings. This collection is used only by frameworks that typically get connection strings from the ConnectionStrings section of a configuration file, like Entity Framework. Connection strings in this object are added to the environment with the provider type of System.Data.SqlClient. Items in this collection aren't published to Azure with other app settings. You must explicitly add these values to the Connection strings collection of your function app settings. If you're creating a SqlConnection in your function code, you should store the connection string value with your other connections in Application Settings in the portal." } }, "title": "JSON schema for Azure Functions local.settings.json files", "type": "object" }
local
{ "additionalProperties": false, "description": "Schema for a data load succeeding", "properties": { "error": { "maxLength": 255, "type": "string" } }, "self": { "format": "jsonschema", "name": "load_failed", "vendor": "com.snowplowanalytics.monitoring.batch", "version": "1-0-0" }, "type": "object" }
sp_233_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://naplan.edu.au/parent2", "type": "object", "title": "NAPLAN Parent 2 validation schema", "description": "Schema for validating parent 2 dependencies in student registrations for NAPLAN SRM", "name": "/", "properties": { "Parent2LOTE": { "id": "http://naplan.edu.au/Parent2LOTE", "type": "string", "title": "Parent2LOTE schema.", "name": "Parent2LOTE" }, "Parent2NonSchoolEducation": { "id": "http://naplan.edu.au/Parent2NonSchoolEducation", "type": "string", "title": "Parent2NonSchoolEducation schema.", "description": "Description", "name": "Parent2NonSchoolEducation" }, "Parent2Occupation": { "id": "http://naplan.edu.au/Parent2Occupation", "type": "string", "title": "Parent2Occupation schema.", "description": "Description", "name": "Parent2Occupation" }, "Parent2SchoolEducation": { "id": "http://naplan.edu.au/Parent2SchoolEducation", "type": "string", "title": "Parent2SchoolEducation schema.", "description": "Description", "name": "Parent2SchoolEducation" } }, "dependencies": { "Parent2LOTE": [ "Parent2NonSchoolEducation", "Parent2Occupation", "Parent2SchoolEducation" ], "Parent2NonSchoolEducation": [ "Parent2LOTE", "Parent2Occupation", "Parent2SchoolEducation" ], "Parent2Occupation": [ "Parent2LOTE", "Parent2NonSchoolEducation", "Parent2SchoolEducation" ], "Parent2SchoolEducation": [ "Parent2LOTE", "Parent2NonSchoolEducation", "Parent2Occupation" ] } }
o64557
{ "additionalProperties": false, "properties": { "key": { "maxLength": 12, "pattern": "^[a-zA-Z0-9_\\.]+$", "type": "string" } }, "required": [ "key" ], "title": "ExtractRequest", "type": "object" }
o10018
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "status": { "type": "string", "enum": [ "active", "inactive" ] } }, "additionalProperties": false }
o9765
{ "$comment": "This schema should be ported to https://github.com/jesseduffield/lazygit repository and be autogenerated", "$id": "https://json.schemastore.org/lazygit.json", "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "color": { "type": "string", "oneOf": [ { "enum": [ "black", "red", "green", "yellow", "blue", "magenta", "cyan", "white", "bold", "default", "reverse", "underline", "strikethrough" ] }, { "pattern": "^#[0-9a-fA-F]{6}$", "examples": ["#ff00ff"] } ] }, "keybinding": { "type": ["string", "null"], "examples": ["<enter>", "<c-b>", "g"] }, "custom-commands-prompts-type-property": { "title": "type", "description": "A type\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#common-fields", "type": "string", "enum": ["input", "confirm", "menu", "menuFromCommand"] }, "custom-commands-prompts-title-property": { "title": "title", "description": "A title\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#common-fields", "type": "string", "examples": ["Remote branch:"] }, "custom-commands-prompts-key-property": { "title": "key", "description": "A key\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#common-fields", "type": "string", "examples": ["Branch"] } }, "description": "UI settings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "properties": { "gui": { "title": "gui", "description": "Settings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "windowSize": { "title": "window size", "description": "A window size\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "enum": ["normal", "half", "full"], "default": "normal" }, "scrollHeight": { "title": "scroll height", "description": "A scroll height\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "integer", "minimum": 1, "default": 2 }, "scrollPastBottom": { "title": "scroll past bottom", "description": "Whether to allow scrolling past bottom of the current window\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": true }, "sidePanelWidth": { "title": "side panel width", "description": "A width of the current side panel\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "number", "minimum": 0, "maximum": 1, "default": 0.3333 }, "expandFocusedSidePanel": { "title": "expand focused side panel", "description": "Whether to expand focused side panel\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false }, "mainPanelSplitMode": { "title": "main panel split mode", "description": "A split mode of the current main panel\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "enum": ["horizontal", "flexible", "vertical"], "default": "flexible" }, "language": { "title": "language", "description": "A language\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "enum": [ "auto", "en", "zh-CN", "zh-TW", "pl", "nl", "ja", "ko", "ru" ], "default": "auto" }, "timeFormat": { "title": "time format", "description": "A time format\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "default": "02 Jan 06" }, "shortTimeFormat": { "title": "short time format", "description": "A short time format\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "default": "3:04PM" }, "theme": { "title": "theme", "description": "Settings of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "activeBorderColor": { "title": "active border color", "description": "Active border colors of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "array", "uniqueItems": true, "minItems": 1, "items": { "description": "An active border color of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/color" } }, "inactiveBorderColor": { "title": "inactive border color", "description": "Inactive border colors of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "array", "uniqueItems": true, "minItems": 1, "items": { "description": "An inactive border color of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/color" } }, "searchingActiveBorderColor": { "title": "searching active border color", "description": "Searching active border colors of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "array", "uniqueItems": true, "minItems": 1, "items": { "description": "A searching active border color of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/color" } }, "optionsTextColor": { "title": "options text color", "description": "Option text colors of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "array", "uniqueItems": true, "minItems": 1, "items": { "description": "An option text color of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/color" } }, "selectedLineBgColor": { "title": "selected line bg color", "description": "Selected line background colors of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "array", "uniqueItems": true, "minItems": 1, "items": { "description": "A selected line background color of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/color" } }, "selectedRangeBgColor": { "title": "selected range bg color", "description": "Selected range background colors of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "array", "uniqueItems": true, "minItems": 1, "items": { "description": "A selected range background color of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/color" } }, "cherryPickedCommitBgColor": { "title": "cherry picked commit bg color", "description": "Cherry picked commit background colors of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "array", "uniqueItems": true, "minItems": 1, "items": { "description": "A cherry picked commit background color of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/color" } }, "cherryPickedCommitFgColor": { "title": "cherry picked commit fg color", "description": "Cherry picked commit foreground colors of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "array", "uniqueItems": true, "minItems": 1, "items": { "description": "A cherry picked commit foreground color of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/color" } }, "unstagedChangesColor": { "title": "unstaged changes color", "description": "Unstaged changes colors of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "array", "uniqueItems": true, "minItems": 1, "items": { "description": "An unstaged changes color of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/color" } }, "defaultFgColor": { "title": "default fg color", "description": "Default foreground colors of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "array", "uniqueItems": true, "minItems": 1, "items": { "description": "A default foreground color of the current theme\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/color" } } }, "additionalProperties": false }, "commitLength": { "title": "commit length", "description": "Settings of the current commit length\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "show": { "title": "show", "description": "Whether to show the current commit length\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": true } }, "additionalProperties": false }, "mouseEvents": { "title": "mouse events", "description": "Whether to enable mouse events\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": true }, "skipDiscardChangeWarning": { "title": "skip discard change warning", "description": "Whether to disable change warning\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false }, "skipStashWarning": { "title": "skip stash warning", "description": "Whether to disable stash warning\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false }, "showFileTree": { "title": "show file tree", "description": "Whether to render render files in a tree format\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": true }, "showListFooter": { "title": "show list footer", "description": "Whether to show list footer\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": true }, "showRandomTip": { "title": "show random tip", "description": "Whether to show a random tip\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": true }, "showBranchCommitHash": { "title": "show branch commit hash", "description": "Whether to show a branch commit hash\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false }, "showBottomLine": { "title": "show bottom line", "description": "Whether to show a bottom line unless there is an important information\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": true }, "showCommandLog": { "title": "show command log", "description": "Whether to show command log\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": true }, "nerdFontsVersion": { "title": "nerd fonts version", "description": "A nerd font version\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "enum": ["2", "3", ""], "default": "" }, "commandLogSize": { "title": "command log size", "description": "A command log size\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "integer", "minimum": 0, "default": 8 }, "splitDiff": { "title": "split diff", "description": "Whether to skip diff\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "enum": ["auto", "always"], "default": "auto" }, "skipRewordInEditorWarning": { "title": "skip reword in editor warning", "description": "Whether to skip a confirmation before launching a reword editor\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false }, "border": { "title": "border", "description": "A border style\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "enum": ["single", "double", "rounded", "hidden"], "default": "single" }, "animateExplosion": { "title": "animate explosion", "description": "Whether to show explosion animation while nuking working tree\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": true }, "authorColors": { "title": "author colors", "description": "Author colors\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-author-color", "type": "object", "patternProperties": { ".": { "title": "author color", "description": "An author color\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-author-color", "$ref": "#/definitions/color" } }, "additionalProperties": false }, "branchColors": { "title": "branch colors", "description": "Branch colors\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-branch-color", "type": "object", "patternProperties": { ".": { "title": "branch color", "description": "A branch color\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-branch-color", "$ref": "#/definitions/color" } }, "additionalProperties": false } }, "additionalProperties": false }, "git": { "title": "git", "description": "Git settings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "paging": { "title": "paging", "description": "Pager settings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Pagers.md", "type": "object", "properties": { "colorArg": { "title": "color argument", "description": "A pager color argument\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Pagers.md", "type": "string", "enum": ["always", "never"], "default": "always" }, "useConfig": { "title": "use config", "description": "Whether to use a config\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Pagers.md", "type": "boolean", "default": false }, "pager": { "title": "pager", "description": "A pager\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Pagers.md", "type": "string", "minLength": 1, "examples": [ "delta --dark --paging=never", "diff-so-fancy", "ydiff -p cat -s --wrap --width={{columnWidth}}" ] } }, "additionalProperties": false }, "commit": { "title": "commit", "description": "Commit settings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "signOff": { "title": "sign off", "description": "Whether to sign commits off\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false } }, "additionalProperties": false }, "merging": { "title": "merging", "description": "Merging settings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "manualCommit": { "title": "manual commit", "description": "Whether to use manual commits\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false }, "args": { "title": "arguments", "description": "Additional CLI arguments for 'git merge'\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "default": "", "examples": ["--no-ff"] } }, "additionalProperties": false }, "log": { "title": "log", "description": "Log settings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "order": { "title": "order", "description": "A commit order\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "enum": [ "date-order", "author-date-order", "topo-order", "default" ], "default": "topo-order" }, "showGraph": { "title": "show graph", "description": "Whether to show a graph\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "enum": ["always", "never", "when-maximised"], "default": "when-maximised" }, "showWholeGraph": { "title": "show whole graph", "description": "Whether to show the whole graph\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false } }, "additionalProperties": false }, "skipHookPrefix": { "title": "skip hook prefix", "description": "A prefix to skip\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "default": "WIP" }, "mainBranches": { "title": "main branches", "description": "Main branches\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "array", "uniqueItems": true, "items": { "description": "A main branch\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "minLength": 1, "examples": ["main", "master"] }, "default": ["main", "master"] }, "autoFetch": { "title": "auto fetch", "description": "Whether to automatically fetch\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": true }, "autoRefresh": { "title": "auto refresh", "description": "Whether to automatically refresh\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": true }, "fetchAll": { "title": "fetch all", "description": "Whether to fetch everything\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": true }, "branchLogCmd": { "title": "branch log cmd", "description": "A log command\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "default": "git log --graph --color=always --abbrev-commit --decorate --date=relative --pretty=medium {{branchName}} --" }, "allBranchesLogCmd": { "title": "all branches log cmd", "description": "A log command\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "default": "git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium" }, "overrideGpg": { "title": "override gpg", "description": "Whether not to spawn a separate process while using GPG\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false }, "disableForcePushing": { "title": "disable force pushing", "description": "Whether to disable force pushing\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false }, "parseEmoji": { "title": "parse emoji", "description": "Whether to parse emoji\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false }, "diffContextSize": { "title": "diff context size", "description": "how many lines of context are shown around a change in diffs\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "integer", "default": 3 }, "commitPrefixes": { "title": "commit prefixes", "description": "Commit prefixes\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#predefined-commit-message-prefix", "type": "object", "patternProperties": { ".": { "title": "repository path", "description": "A repository path\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#predefined-commit-message-prefix", "type": "object", "required": ["pattern", "replace"], "properties": { "pattern": { "title": "pattern", "description": "A pattern\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#predefined-commit-message-prefix", "type": "string", "minLength": 1, "examples": ["^\\w+\\/(\\w+-\\w+).*"] }, "replace": { "title": "replace", "description": "A replacement\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#predefined-commit-message-prefix", "type": "string", "minLength": 1, "examples": ["[$1] "] } }, "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false }, "os": { "title": "os", "description": "OS settings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#configuring-file-editing", "type": "object", "properties": { "copyToClipboardCmd": { "title": "copy to clipboard cmd", "description": "A copy to clipboard command\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#configuring-file-editing", "type": "string", "default": "", "examples": [ "printf \"\\033]52;c;$(printf {{text}} | base64)\\a\" > /dev/tty" ] }, "editPreset": { "title": "edit preset", "description": "An edit preset\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#configuring-file-editing", "type": "string", "oneOf": [ { "enum": [ "vim", "nvim", "emacs", "nano", "vscode", "sublime", "bbedit", "kakoune", "helix", "xcode" ] }, { "const": "" } ], "default": "" }, "edit": { "title": "edit", "description": "An editor command\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#configuring-file-editing", "type": "string", "default": "", "examples": [ "vim", "nvim", "emacs", "nano", "vscode", "sublime", "bbedit", "kakoune", "helix", "xcode" ] }, "editAtLine": { "title": "edit at line", "description": "An editor command to open at specific line\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#configuring-file-editing", "type": "string", "default": "", "examples": [ "vim +{{line}} {{filename}}", "nvim +{{line}} {{filename}}", "emacs +{{line}} {{filename}}", "nano +{{line}} {{filename}}", "vscode -g {{filename}}:{{line}}", "vscode --goto {{filename}}:{{line}}", "sublime {{filename}}:{{line}}" ] }, "editAtLineAndWait": { "title": "edit at line and wait", "description": "An editor command to open at specific line and wait\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#configuring-file-editing", "type": "string", "default": "", "examples": [ "vim +{{line}} {{filename}}", "nvim +{{line}} {{filename}}", "emacs +{{line}} {{filename}}", "nano +{{line}} {{filename}}", "vscode -g {{filename}}:{{line}} -w", "vscode --goto {{filename}}:{{line}} --wait", "sublime {{filename}}:{{line}} -w", "sublime {{filename}}:{{line}} --wait" ] }, "open": { "title": "open", "description": "An editor command for non-text files\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#configuring-file-editing", "type": "string", "default": "" }, "openLink": { "title": "open link", "description": "An open link\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "default": "" } }, "additionalProperties": false }, "refresher": { "title": "refresher", "description": "Refresh settings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "refreshInterval": { "title": "refresh interval", "description": "A file/submodule refresh interval in seconds\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "integer", "minimum": 0, "default": 10 }, "fetchInterval": { "title": "fetch interval", "description": "A re-fetch interval in seconds\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "integer", "minimum": 0, "default": 60 } }, "additionalProperties": false }, "update": { "title": "update", "description": "Update settings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "method": { "title": "method", "description": "A method\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "enum": ["prompt", "background", "never"], "default": "prompt" }, "days": { "title": "days", "description": "A day count\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "integer", "minimum": 0, "default": 14 } }, "additionalProperties": false }, "confirmOnQuit": { "title": "confirm on quit", "description": "Whether to confirm on on quit\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false }, "quitOnTopLevelReturn": { "title": "quit on top level return", "description": "Whether to quit on 'esc' press while there is nothing to cancel/close\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false }, "disableStartupPopups": { "title": "disable startup popups", "description": "Whether to disable startup popups\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": false }, "notARepository": { "title": "not a repository", "description": "An action for non-repositories\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "string", "enum": ["prompt", "create", "skip", "quit"], "default": "prompt" }, "promptToReturnFromSubprocess": { "title": "prompt to return from subprocess", "description": "Whether to show confirmation on subprocess termination\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "boolean", "default": true }, "keybinding": { "title": "keybinding", "description": "Keybinding settings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "universal": { "title": "universal", "description": "Universal keybindings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "quit": { "title": "quit", "description": "A quit keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "q" }, "quit-alt1": { "title": "quit-alt1", "description": "A quit-alt1 keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-c>" }, "return": { "title": "return", "description": "A return keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<esc>" }, "quitWithoutChangingDirectory": { "title": "quit without changing directory", "description": "A quit without changing directory keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "Q" }, "togglePanel": { "title": "toggle panel", "description": "A toggle panel keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<tab>" }, "prevItem": { "title": "prev item", "description": "A previous item keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<up>" }, "nextItem": { "title": "next item", "description": "A next item keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<down>" }, "prevItem-alt": { "title": "prev item-alt", "description": "A previous item-alt keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "k" }, "nextItem-alt": { "title": "next item-alt", "description": "A next item-alt keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "j" }, "prevPage": { "title": "prev page", "description": "A previous page keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "," }, "nextPage": { "title": "next page", "description": "A next page keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "." }, "gotoTop": { "title": "goto top", "description": "A goto top keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<" }, "gotoBottom": { "title": "goto bottom", "description": "A goto bottom keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": ">" }, "scrollLeft": { "title": "scroll left", "description": "A scroll left keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "H" }, "scrollRight": { "title": "scroll right", "description": "A scroll right keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "L" }, "prevBlock": { "title": "prev block", "description": "A previous block keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<left>" }, "nextBlock": { "title": "next block", "description": "A next block keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<right>" }, "prevBlock-alt": { "title": "prev block-alt", "description": "A previous block-alt keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "h" }, "nextBlock-alt": { "title": "next block-alt", "description": "A next block-alt keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "l" }, "jumpToBlock": { "title": "jump to block", "description": "A jump to block keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "array", "default": ["1", "2", "3", "4", "5"] }, "nextMatch": { "title": "next match", "description": "A next match keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "n" }, "prevMatch": { "title": "prev match", "description": "A previous match keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "N" }, "optionMenu": { "title": "option menu", "description": "An option menu keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "null", "default": null }, "optionMenu-alt1": { "title": "option menu-alt1", "description": "An option menu-alt1 keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "?" }, "select": { "title": "select", "description": "A select keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<space>" }, "goInto": { "title": "go into", "description": "A go into keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<enter>" }, "openRecentRepos": { "title": "open recent repos", "description": "An open recent repos keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-r>" }, "confirm": { "title": "confirm", "description": "A confirm keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<enter>" }, "remove": { "title": "remove", "description": "A remove keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "d" }, "new": { "title": "new", "description": "A new keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "n" }, "edit": { "title": "edit", "description": "A edit keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "e" }, "openFile": { "title": "open file", "description": "An open file keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "o" }, "scrollUpMain": { "title": "scroll up main", "description": "A scroll up main keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<pgup>" }, "scrollDownMain": { "title": "scroll down main", "description": "A scroll down main keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<pgdown>" }, "scrollUpMain-alt1": { "title": "scroll up main-alt1", "description": "A scroll up main-alt1 keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "K" }, "scrollDownMain-alt1": { "title": "scroll down main-alt1", "description": "A scroll down main-alt1 keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "J" }, "scrollUpMain-alt2": { "title": "scroll up main-alt2", "description": "A scroll up main-alt2 keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-u>" }, "scrollDownMain-alt2": { "title": "scroll down main-alt2", "description": "A scroll down main-alt2 keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-d>" }, "executeCustomCommand": { "title": "execute custom command", "description": "A execute custom command keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": ":" }, "createRebaseOptionsMenu": { "title": "create rebase options menu", "description": "A create rebase options menu keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "m" }, "pushFiles": { "title": "push files", "description": "A push files keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "P" }, "pullFiles": { "title": "pull files", "description": "A pull files keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "p" }, "refresh": { "title": "refresh", "description": "A refresh keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "R" }, "createPatchOptionsMenu": { "title": "create patch options menu", "description": "A create patch options menu keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-p>" }, "nextTab": { "title": "next tab", "description": "A next tab keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "]" }, "prevTab": { "title": "prev tab", "description": "A previous tab keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "[" }, "nextScreenMode": { "title": "next screen mode", "description": "A next screen mode keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "+" }, "prevScreenMode": { "title": "prev screen mode", "description": "A previous screen mode keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "_" }, "undo": { "title": "undo", "description": "An undo keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "z" }, "redo": { "title": "redo", "description": "A redo keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-z>" }, "filteringMenu": { "title": "filtering menu", "description": "A filtering menu keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-s>" }, "diffingMenu": { "title": "diffing menu", "description": "A diffing menu keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "W" }, "diffingMenu-alt": { "title": "diffing menu-alt", "description": "A diffing menu-alt keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-e>" }, "copyToClipboard": { "title": "copy to clipboard", "description": "A copy to clipboard keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-o>" }, "submitEditorText": { "title": "submit editor text", "description": "A submit editor text keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<enter>" }, "extrasMenu": { "title": "extras menu", "description": "A extras menu keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "@" }, "toggleWhitespaceInDiffView": { "title": "toggle whitespace in diff view", "description": "A toggle whitespace in diff view keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-w>" }, "increaseContextInDiffView": { "title": "increase context in diff view", "description": "A increase context in diff view keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "}" }, "decreaseContextInDiffView": { "title": "decrease context in diff view", "description": "A decrease context in diff view keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "{" } }, "additionalProperties": false }, "status": { "title": "status", "description": "Status keybindings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "checkForUpdate": { "title": "check for update", "description": "A check for update keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "u" }, "recentRepos": { "title": "recent repos", "description": "A recent repos keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<enter>" } }, "additionalProperties": false }, "files": { "title": "files", "description": "File keybindings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "commitChanges": { "title": "commit changes", "description": "A commit changes keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "c" }, "commitChangesWithoutHook": { "title": "commit changes without hook", "description": "A commit changes without hook keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "w" }, "amendLastCommit": { "title": "amend last commit", "description": "A amend last commit keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "A" }, "commitChangesWithEditor": { "title": "commit changes with editor", "description": "A commit changes with editor keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "C" }, "ignoreFile": { "title": "ignore file", "description": "A ignore file keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "i" }, "refreshFiles": { "title": "refresh files", "description": "A refresh files keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "r" }, "stashAllChanges": { "title": "stash all changes", "description": "A stash all changes keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "s" }, "viewStashOptions": { "title": "view stash options", "description": "A view stash options keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "S" }, "toggleStagedAll": { "title": "toggle staged all", "description": "A toggle staged all keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "a" }, "viewResetOptions": { "title": "view reset options", "description": "A view reset options keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "D" }, "fetch": { "title": "fetch", "description": "A fetch keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "f" }, "toggleTreeView": { "title": "toggle tree view", "description": "A toggle tree view keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "`" }, "openMergeTool": { "title": "open merge tool", "description": "A open merge tool keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "M" }, "openStatusFilter": { "title": "open status filter", "description": "A open status filter keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-b>" } }, "additionalProperties": false }, "branches": { "title": "branches", "description": "Branch keybindings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "createPullRequest": { "title": "create pull request", "description": "A create pull request keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "o" }, "viewPullRequestOptions": { "title": "view pull request options", "description": "A view pull request options keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "O" }, "checkoutBranchByName": { "title": "checkout branch by name", "description": "A checkout branch by name keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "c" }, "forceCheckoutBranch": { "title": "force checkout branch", "description": "A force checkout branch keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "F" }, "rebaseBranch": { "title": "rebase branch", "description": "A rebase branch keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "r" }, "renameBranch": { "title": "rename branch", "description": "A rename branch keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "R" }, "mergeIntoCurrentBranch": { "title": "merge into current branch", "description": "A merge into current branch keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "M" }, "viewGitFlowOptions": { "title": "view git flow options", "description": "A view git flow options keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "i" }, "fastForward": { "title": "fast forward", "description": "A fast forward keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "f" }, "createTag": { "title": "create tag", "description": "A create tag keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "T" }, "pushTag": { "title": "push tag", "description": "A push tag keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "P" }, "setUpstream": { "title": "set upstream", "description": "A set upstream keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "u" }, "fetchRemote": { "title": "fetch remote", "description": "A fetch remote keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "f" } }, "additionalProperties": false }, "commits": { "title": "commits", "description": "Commit keybindings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "squashDown": { "title": "squash down", "description": "A squash down keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "s" }, "renameCommit": { "title": "rename commit", "description": "A rename commit keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "r" }, "renameCommitWithEditor": { "title": "rename commit with editor", "description": "A rename commit with editor keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "R" }, "viewResetOptions": { "title": "view reset options", "description": "A view reset options keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "g" }, "markCommitAsFixup": { "title": "mark commit as fixup", "description": "A mark commit as fixup keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "f" }, "createFixupCommit": { "title": "create fixup commit", "description": "A create fixup commit keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "F" }, "squashAboveCommits": { "title": "squash above commits", "description": "A squash above commits keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "S" }, "moveDownCommit": { "title": "move down commit", "description": "A move down commit keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-j>" }, "moveUpCommit": { "title": "move up commit", "description": "A move up commit keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-k>" }, "amendToCommit": { "title": "amend to commit", "description": "A amend to commit keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "A" }, "pickCommit": { "title": "pick commit", "description": "A pick commit keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "p" }, "revertCommit": { "title": "revert commit", "description": "A revert commit keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "t" }, "cherryPickCopy": { "title": "cherry pick copy", "description": "A cherry pick copy keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "c" }, "cherryPickCopyRange": { "title": "cherry pick copy range", "description": "A cherry pick copy range keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "C" }, "pasteCommits": { "title": "paste commits", "description": "A paste commits keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "v" }, "tagCommit": { "title": "tag commit", "description": "A tag commit keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "T" }, "checkoutCommit": { "title": "checkout commit", "description": "A checkout commit keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<space>" }, "resetCherryPick": { "title": "reset cherry pick", "description": "A reset cherry pick keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-R>" }, "copyCommitMessageToClipboard": { "title": "copy commit message to clipboard", "description": "A copy commit message to clipboard keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-y>" }, "openLogMenu": { "title": "open log menu", "description": "A open log menu keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "<c-l>" }, "viewBisectOptions": { "title": "view bisect options", "description": "A view bisect options keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "b" } }, "additionalProperties": false }, "stash": { "title": "stash", "description": "Stash keybindings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "popStash": { "title": "pop stash", "description": "A pop stash keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "g" }, "renameStash": { "title": "rename stash", "description": "A rename stash keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "r" } }, "additionalProperties": false }, "commitFiles": { "title": "commit files", "description": "Commit file keybindings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "checkoutCommitFile": { "title": "checkout commit file", "description": "A checkout commit file keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "c" } }, "additionalProperties": false }, "main": { "title": "main", "description": "Main keybindings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "toggleDragSelect": { "title": "toggle drag select", "description": "A toggle drag select keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "v" }, "toggleDragSelect-alt": { "title": "toggle drag select-alt", "description": "A toggle drag select-alt keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "V" }, "toggleSelectHunk": { "title": "toggle select hunk", "description": "A toggle select hunk keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "a" }, "pickBothHunks": { "title": "pick both hunks", "description": "A pick both hunks keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "b" } }, "additionalProperties": false }, "submodules": { "title": "submodules", "description": "Submodules keybindings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "type": "object", "properties": { "init": { "title": "init", "description": "An init keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "i" }, "update": { "title": "update", "description": "An update keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "u" }, "bulkMenu": { "title": "bulk menu", "description": "A bulk menu keybinding\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#default", "$ref": "#/definitions/keybinding", "default": "b" } }, "additionalProperties": false } }, "additionalProperties": false }, "services": { "title": "services", "description": "Service settings\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-pull-request-urls", "type": "object", "patternProperties": { ".": { "title": "service", "description": "A service\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#custom-pull-request-urls", "type": "string", "pattern": "^[^:]+:[^:]+$" } }, "additionalProperties": false }, "customCommands": { "title": "custom commands", "description": "Custom commands\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "type": "array", "uniqueItems": true, "items": { "description": "A custom command\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "type": "object", "required": ["key", "command", "context"], "properties": { "key": { "title": "key", "description": "A command trigger\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "$ref": "#/definitions/keybinding" }, "command": { "title": "command", "description": "A command\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "type": "string", "default": "", "examples": [ "git fetch {{.Form.Remote}} {{.Form.Branch}} && git checkout FETCH_HEAD" ] }, "context": { "title": "context", "description": "A context\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "type": "string", "enum": [ "status", "files", "worktrees", "localBranches", "remotes", "remoteBranches", "tags", "commits", "reflogCommits", "subCommits", "commitFiles", "stash", "global" ] }, "subprocess": { "title": "subprocess", "description": "Whether to run command in subprocess\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "type": "boolean", "default": false }, "prompts": { "title": "prompts", "description": "Prompts before running a command\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "type": "array", "items": { "description": "A prompt before running a command\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "type": "object", "required": ["type", "title", "key"], "properties": { "type": { "$ref": "#/definitions/custom-commands-prompts-type-property" }, "title": { "$ref": "#/definitions/custom-commands-prompts-title-property" }, "key": { "$ref": "#/definitions/custom-commands-prompts-key-property" } }, "allOf": [ { "if": { "properties": { "type": { "const": "input" } } }, "then": { "properties": { "type": { "$ref": "#/definitions/custom-commands-prompts-type-property" }, "title": { "$ref": "#/definitions/custom-commands-prompts-title-property" }, "key": { "$ref": "#/definitions/custom-commands-prompts-key-property" }, "initialValue": { "title": "initial value", "description": "An initial value\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#input", "type": "string" }, "suggestions": { "title": "suggestions", "description": "Whether to show suggestions as the input is entered\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#input", "type": "object", "oneOf": [ { "properties": { "preset": { "title": "preset", "description": "A preset\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#input", "type": "string", "enum": [ "authors", "branches", "files", "refs", "remotes", "remoteBranches", "tags" ] } }, "additionalProperties": false }, { "properties": { "command": { "title": "command", "description": "A command where each line in the output is suggestion\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#input", "type": "string", "default": "", "examples": [ "git branch --format='%(refname:short)'" ] } }, "additionalProperties": false } ] } }, "additionalProperties": false } }, { "if": { "properties": { "type": { "const": "confirm" } } }, "then": { "properties": { "type": { "$ref": "#/definitions/custom-commands-prompts-type-property" }, "title": { "$ref": "#/definitions/custom-commands-prompts-title-property" }, "key": { "$ref": "#/definitions/custom-commands-prompts-key-property" }, "body": { "title": "body", "description": "A body\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#confirm", "type": "string", "examples": [ "Are you sure you want to push to the remote?" ] } }, "additionalProperties": false } }, { "if": { "properties": { "type": { "const": "menu" } } }, "then": { "required": ["options"], "properties": { "type": { "$ref": "#/definitions/custom-commands-prompts-type-property" }, "title": { "$ref": "#/definitions/custom-commands-prompts-title-property" }, "key": { "$ref": "#/definitions/custom-commands-prompts-key-property" }, "options": { "title": "options", "description": "Options\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#menu", "type": "array", "uniqueItems": true, "items": { "description": "An option", "type": "object", "required": ["value"], "properties": { "name": { "title": "name", "description": "A first label part\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#menu", "type": "string", "default": "" }, "description": { "title": "description", "description": "A second label part\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#menu", "type": "string", "default": "" }, "value": { "title": "value", "description": "the value that will be used in the command\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#menu", "type": "string", "minLength": 1, "examples": ["feature"] } }, "additionalProperties": false } } }, "additionalProperties": false } }, { "if": { "properties": { "type": { "const": "menuFromCommand" } } }, "then": { "required": ["command"], "properties": { "type": { "$ref": "#/definitions/custom-commands-prompts-type-property" }, "title": { "$ref": "#/definitions/custom-commands-prompts-title-property" }, "key": { "$ref": "#/definitions/custom-commands-prompts-key-property" }, "command": { "title": "command", "description": "A command to generate options\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#menu-from-command", "type": "string", "default": "", "examples": [ "git branch -r --list {{.SelectedRemote.Name }}/*" ] }, "filter": { "title": "filter", "description": "A regex specifying groups which kept from command output\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#menu-from-command", "type": "string", "default": "", "examples": [ ".*{{.SelectedRemote.Name }}/(?P<branch>.*)" ] }, "valueFormat": { "title": "valueFormat", "description": "A value format\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#menu-from-command", "type": "string", "default": "", "examples": ["{{ .branch }}"] }, "labelFormat": { "title": "labelFormat", "description": "A label format\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#menu-from-command", "type": "string", "default": "", "examples": ["{{ .branch | green }}"] } }, "additionalProperties": false } } ] } }, "loadingText": { "title": "loading text", "description": "Text to display while waiting for command to finish\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "type": "string", "default": "", "examples": ["Loading..."] }, "description": { "title": "description", "description": "A description\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "type": "string", "default": "", "examples": ["Checkout a remote branch as FETCH_HEAD"] }, "stream": { "title": "stream", "description": "Whether to stream command output to Command Log panel\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "type": "boolean", "default": false }, "showOutput": { "title": "show output", "description": "Whether to show the command output in popup\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "type": "boolean", "default": false }, "after": { "title": "after", "description": "Actions to take after the command has completed\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "type": "object", "properties": { "checkForConflicts": { "title": "check for conflicts", "description": "Whether to check for conflicts before running command\nhttps://github.com/jesseduffield/lazygit/blob/master/docs/Custom_Command_Keybindings.md#custom-command-keybindings", "type": "boolean", "default": false } }, "additionalProperties": false } }, "additionalProperties": false } } }, "title": "ui settings", "type": "object" }
lazygit
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Taxation Id", "description": "Identification number for taxation purposes", "type": "object", "properties": { "name": { "type": "string" }, "ssn": { "type": "string", "pattern": "^[0-9]{3}-[0-9]{2}-[0-9]{4}$" }, "ein": { "type": "string", "pattern": "^[0-9]{2}-[0-9]{7}$" }, "itin": { "type": "string", "pattern": "^9[0-9]{2}-[0-9]{2}-[0-9]{4}$" } }, "required": [ "name" ], "additionalProperties": false, "oneOf": [ { "required": [ "ssn" ] }, { "required": [ "ein" ] }, { "required": [ "itin" ] } ] }
o83719
{ "$schema": "http://json-schema.org/draft-04/schema#", "allOf": [ { "$ref": "#/definitions/coreProperties" }, { "anyOf": [ { "properties": { "env": { "description": "Sets the extractStyles property based on the value of NODE_ENV", "type": "object", "properties": { "development": { "$ref": "#/definitions/extractStyling" }, "production": { "$ref": "#/definitions/extractStyling" } } } }, "not": { "properties": { "extractStyles": {} }, "required": ["extractStyles"] } }, { "properties": { "extractStyles": { "$ref": "#/definitions/extractStyling/properties/extractStyles" } }, "not": { "properties": { "env": {} }, "required": ["env"] } } ] }, { "required": ["bootstrapVersion", "styleLoaders"] } ], "definitions": { "extractStyling": { "type": "object", "properties": { "extractStyles": { "default": false, "description": "Enables/disables extraction of styles to a standalone CSS file using extract-text-webpack-plugin", "type": "boolean" } } }, "coreProperties": { "type": "object", "properties": { "appStyles": { "description": "Import your custom styles here. Usually this endpoint file contains a list of @imports of your application styles.", "type": "string" }, "bootstrapCustomizations": { "description": "The .scss file path to be loaded after Bootstrap's _variables.scss file", "type": "string" }, "bootstrapVersion": { "default": 3, "description": "The major version of Bootstrap being used", "enum": [3, 4], "type": "integer" }, "loglevel": { "description": "The verbosity of logging. Exclude this property to disable.", "enum": ["debug"], "type": "string" }, "preBootstrapCustomizations": { "description": "The .scss file path to be loaded before Bootstrap's _variables.scss file", "type": "string" }, "scripts": { "description": "Excludes/includes Bootstrap's JavaScript modules", "type": ["boolean", "object"] }, "styleLoaders": { "default": ["style", "css", "sass"], "description": "An array of Webpack loader names. Order matters, and sass-loader is required.", "items": { "type": "string" }, "minItems": 1, "type": "array", "uniqueItems": true }, "styles": { "description": "Excludes/includes Bootstrap's CSS modules", "type": ["boolean", "object"] }, "useCustomIconFontPath": { "default": false, "description": "Set to true if using a custom icon font and you need to specify its path in your Sass files", "type": "boolean" }, "useFlexbox": { "default": true, "description": "Enables/disables the flexbox model available in Bootstrap 4", "type": "boolean" } } } }, "id": "https://json.schemastore.org/bootstraprc.json", "title": "JSON schema for Webpack's bootstrap-loader configuration file", "type": "object" }
bootstraprc
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "base": { "description": "The base length of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "side_length": { "description": "The side length of the square", "type": "number" } }, "required": [ "radius", "side_length", "base", "height" ], "type": "object" }, "shape": { "description": "The shape, e.g. circle, square, triangle", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_9c16dc5e
{ "properties": { "append": { "default": false, "description": "Whether to append to the output or whether to overwrite it.", "type": "boolean" }, "minSeverity": { "default": "POTENTIALLY_BREAKING", "enum": [ "NON_BREAKING", "POTENTIALLY_BREAKING", "BREAKING" ] }, "output": { "default": "out", "type": "string" }, "template": { "type": "string" } }, "type": "object" }
o70020
{ "properties": { "dimensions": { "properties": { "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "height", "radius" ], "type": "object" }, "shape": { "description": "The shape (e.g., cube, sphere, cylinder)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_volume_63ef66d4
{ "$id": "https://json.schemastore.org/packer.json", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "builder-type": { "enum": [ "alicloud-ecs", "amazon-ebs", "azure-arm", "azure-chroot", "cloudstack", "custom", "digitalocean", "docker", "file", "googlecompute", "hcloud", "hyperone", "hyperv-iso", "hyperv-vmcx", "jdcloud", "linode", "lxc", "lxd", "ncloud", "null", "ocs-chroot", "oneandone", "openstack", "oracle-classic", "oracle-oci", "osc-bsu", "osc-bsusurrogate", "parallels-iso", "parallels-pvm", "profitbricks", "proxmox", "qemu", "scaleway", "tencentcloud-cvm", "triton", "ucloud-uhost", "vagrant", "virtualbox-iso", "virtualbox-ovf", "virtualbox-vm", "vmware-iso", "vmware-vmx", "vsphere-clone", "vsphere-iso", "yandex" ] }, "builder-vagrant": { "type": "object", "properties": { "type": { "const": "vagrant" }, "add_cacert": { "type": "string" }, "add_capath": { "type": "string" }, "add_clean": { "type": "boolean" }, "add_force": { "type": "boolean" }, "add_insecure": { "type": "boolean" }, "box_name": { "type": "string" }, "box_version": { "type": "string" }, "checksum": { "type": "string" }, "checksum_type": { "type": "string" }, "global_id": { "type": "string" }, "output_dir": { "type": "string" }, "output_vagrantfile": { "type": "string" }, "package_include": { "type": "string" }, "provider": { "type": "string" }, "skip_add": { "type": "boolean" }, "source_path": { "type": "string" }, "teardown_method": { "type": "string" }, "template": { "type": "string" } } }, "builder-virtualbox-iso": { "type": "object", "properties": { "bundle_iso": { "type": "boolean" }, "communicator": { "type": "string" }, "disk_size": { "type": "integer" }, "export_opts": { "type": "array", "items": { "type": "string" } }, "format": { "type": "string" }, "guest_additions_interface": { "type": "string" }, "guest_additions_mode": { "type": "string" }, "guest_additions_path": { "type": "string" }, "guest_additions_sha256": { "type": "string" }, "guest_additions_url": { "type": "string" }, "guest_os_type": { "type": "string" }, "hard_drive_interface": { "type": "string" }, "hard_drive_nonrotational": { "type": "boolean" }, "hard_driver_discard": { "type": "boolean" }, "headless": { "type": "boolean" }, "http_bind_address": { "type": "integer" }, "http_directory": { "type": "string" }, "http_port_max": { "type": "integer" }, "http_port_min": { "type": "integer" }, "iso_checksum": { "type": "string" }, "iso_interface": { "type": "string" }, "iso_target_extension": { "type": "string" }, "iso_target_path": { "type": "string" }, "iso_url": { "type": "string" }, "iso_urls": { "type": "array", "items": { "type": "string" } }, "keep_registered": { "type": "boolean" }, "nvme_port_count": { "type": "integer" }, "output_directory": { "type": "string" }, "output_filename": { "type": "string" }, "sata_port_count": { "type": "integer" }, "shutdown_command": { "type": "string" }, "skip_export": { "type": "boolean" }, "type": { "const": "virtualbox-iso" }, "virtualbox_version_file": { "type": "string" }, "vm_name": { "type": "string" } } }, "provisioner-ansible-local": { "type": "object", "properties": { "playbook_file": { "type": "string" } }, "required": ["playbook_file"] }, "provisioner-shell": { "type": "object", "properties": { "inline": { "type": "array", "items": { "type": "string" } } } }, "provisioner": { "type": "object", "properties": { "type": { "type": "string", "enum": ["shell", "ansible-local"] } }, "oneOf": [ { "$ref": "#/definitions/provisioner-ansible-local" }, { "$ref": "#/definitions/provisioner-shell" } ], "required": ["type"] }, "post-processor": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string", "enum": ["compress", "upload"] }, "endpoint": { "type": "string" }, "keep_input_artifact": { "type": "boolean" }, "only": { "type": "array", "items": { "type": "string" } }, "format": { "type": "string", "enum": ["tar.gz"] }, "compression_level": { "type": "number" } } } }, "properties": { "min_packer_version": { "type": "string" }, "description": { "type": "string" }, "variables": { "type": "object", "patternProperties": { "[a-zA-Z0-9_-]": { "type": "string" } } }, "builders": { "type": "array", "items": { "anyOf": [ { "$ref": "#/definitions/builder-vagrant" }, { "$ref": "#/definitions/builder-virtualbox-iso" } ] } }, "provisioners": { "type": "array", "items": { "$ref": "#/definitions/provisioner" } }, "post-processors": { "type": "array", "items": { "anyOf": [ { "type": "string", "enum": ["vagrant", "compress"] }, { "$ref": "#/definitions/post-processor" } ] } } }, "required": ["builders"], "type": "object" }
packer
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://raw.githubusercontent.com/washingtonpost/ans-schema/master/src/main/resources/schema/ans/0.6.0/traits/trait_owner.json", "title": "Owner information ", "description": "Various unrelated fields that should be preserved for backwards-compatibility reasons. See also trait_source.", "type": "object", "properties": { "id": { "description": "The machine-readable unique identifier of the organization whose database this content is stored in. In Arc, this is equivalent to ARC_ORG_NAME.", "type": "string" }, "name": { "description": "Human-readable name of original producer of content. Distinguishes between Wires, Staff and other sources. See also trait_source.type and trait_source.name", "type": "string" }, "sponsored": { "description": "Necessary for including/excluding advertorial and native content in search results, story card features.", "type": "boolean" } } }
o86808
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Traffic signals", "description": "List of traffic signal colors", "type": "array", "items": { "type": "string" }, "additionalItems": false }
o83710
{ "additionalProperties": false, "description": "Schema for a Snowplow unstructured event", "properties": { "data": {}, "schema": { "pattern": "^iglu:[a-zA-Z0-9-_.]+/[a-zA-Z0-9-_]+/[a-zA-Z0-9-_]+/[0-9]+-[0-9]+-[0-9]+$", "type": "string" } }, "required": [ "schema", "data" ], "self": { "format": "jsonschema", "name": "unstruct_event", "vendor": "com.snowplowanalytics.snowplow", "version": "1-0-0" }, "type": "object" }
sp_324_Normalized
{ "description": "EndpointConditions represents the current condition of an endpoint.", "properties": { "ready": { "description": "ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready.", "type": [ "boolean", "null" ] } }, "type": "object" }
kb_297_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Sparkplug B Payload", "description": "A Sparkplug B payload", "definitions": { "parameter": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "value": { "type": [ "string", "number", "integer", "boolean" ] } }, "additionalProperties": false }, "template": { "type": "object", "properties": { "version": { "type": "string" }, "reference": { "type": "string" }, "isDefinition": { "type": "boolean" }, "parameters": { "type": "array", "items": { "$ref": "#/definitions/parameter" } }, "metrics": { "type": "array", "items": { "$ref": "#/definitions/metric" } } }, "additionalProperties": false }, "dataset": { "type": "object", "properties": { "numberOfColumns": { "type": "integer" }, "columnNames": { "type": "array", "items": { "type": "string" } }, "types": { "type": "array", "items": { "type": "string" } }, "rows": { "type": "array", "items": { "type": "array", "items": { "type": [ "string", "number", "integer", "boolean" ] } } } }, "additionalProperties": false }, "property": { "type": "object", "properties": { "type": { "type": "string" }, "value": { "oneOf": [ { "type": [ "string", "number", "integer", "boolean", "null" ] }, { "$ref": "#/definitions/propertySet" }, { "type": "array", "items": { "$ref": "#/definitions/propertySet" } } ] } }, "additionalProperties": false }, "propertySet": { "type": "object", "additionalProperties": { "$ref": "#/definitions/property" } }, "metadata": { "type": "object", "properties": { "contentType": { "type": "string" }, "isMultiPart": { "type": "boolean" }, "seq": { "type": "integer" }, "size": { "type": "integer" }, "fileName": { "type": "string" }, "fileType": { "type": "string" }, "md5": { "type": "string" }, "description": { "type": "string" } } }, "metric": { "type": "object", "properties": { "name": { "type": "string" }, "alias": { "type": "integer" }, "timestamp": { "type": "integer" }, "datatype": { "type": "string" }, "isHistorical": { "type": "boolean" }, "isTransient": { "type": "boolean" }, "metadata": { "$ref": "#/definitions/metadata" }, "properties": { "$ref": "#/definitions/propertySet" }, "value": { "oneOf": [ { "type": [ "string", "number", "integer", "boolean", "null" ] }, { "$ref": "#/definitions/dataset" }, { "$ref": "#/definitions/template" } ] } } } }, "type": "object", "properties": { "timestamp": { "description": "A timestamp in milliseconds", "type": "integer" }, "seq": { "description": "A sequence number", "type": "integer" }, "uuid": { "description": "A unique identifier", "type": "string" }, "body": { "description": "A UTF-8 encoded string representing a byte array", "type": "string" }, "metrics": { "description": "An array of metrics", "type": "array", "items": { "$ref": "#/definitions/metric" } } } }
o3446
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": { "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field", "properties": { "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported." }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'", "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported." } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": { "description": "ObjectFieldSelector selects an APIVersioned field of an object.", "properties": { "apiVersion": { "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".", "type": "string" }, "fieldPath": { "description": "Path of the field to select in the specified API version.", "type": "string" } }, "required": [ "fieldPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": { "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format", "properties": { "containerName": { "description": "Container name: required for volumes, optional for env vars", "type": "string" }, "divisor": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Specifies the output format of the exposed resources, defaults to \"1\"" }, "resource": { "description": "Required: resource to select", "type": "string" } }, "required": [ "resource" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "format": "int32", "type": [ "integer", "null" ] }, "items": { "description": "Items is a list of downward API volume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": [ "array", "null" ] } }, "type": "object" }
kb_289_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": true, "properties": { "change_history": { "$ref": "#/definitions/change_history" } }, "type": "object" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "govuk_request_id": { "type": [ "string", "null" ] }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "payload_version": { "description": "Counter to indicate when the payload was generated", "type": "integer" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "route": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } }, "required": [ "path", "type" ], "type": "object" }, "routes": { "items": { "$ref": "#/definitions/route" }, "minItems": 1, "type": "array" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "content_purpose_document_supertype": { "description": "DEPRECATED. Use `content_purpose_subgroup`.", "type": "string" }, "content_purpose_subgroup": { "description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.", "type": "string" }, "content_purpose_supergroup": { "description": "Document supergroup grouping documents by a purpose", "type": "string" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "knowledge_alpha" ], "type": "string" }, "email_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "expanded_links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" } }, "type": "object" }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "government_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "govuk_request_id": { "$ref": "#/definitions/govuk_request_id" }, "links": { "additionalProperties": false, "properties": {}, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "navigation_document_supertype": { "description": "Document type grouping powering the new taxonomy-based navigation pages", "type": "string" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "payload_version": { "$ref": "#/definitions/payload_version" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "redirects": { "additionalItems": false, "items": {}, "type": "array" }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "enum": [ "knowledge_alpha" ], "type": "string" }, "search_user_need_document_supertype": { "description": "Document supertype grouping core and government documents", "type": "string" }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" }, "user_journey_document_supertype": { "description": "Document type grouping powering analytics of user journeys", "type": "string" }, "user_need_document_supertype": { "description": "DEPRECATED. Use `content_purpose_document_supertype`.", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "analytics_identifier", "base_path", "content_id", "description", "details", "document_type", "email_document_supertype", "expanded_links", "first_published_at", "government_document_supertype", "govuk_request_id", "links", "locale", "navigation_document_supertype", "payload_version", "phase", "public_updated_at", "publishing_app", "redirects", "rendering_app", "routes", "schema_name", "title", "update_type", "user_journey_document_supertype" ], "type": "object" }
o21272
{ "properties": { "base": { "description": "The base of the triangle (if shape is triangle)", "type": "number" }, "height": { "description": "The height of the triangle (if shape is triangle)", "type": "number" }, "length": { "description": "The length of the rectangle (if shape is rectangle)", "type": "number" }, "radius": { "description": "The radius of the circle (if shape is circle)", "type": "number" }, "shape": { "description": "The shape type", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" }, "width": { "description": "The width of the rectangle (if shape is rectangle)", "type": "number" } }, "required": [ "shape" ], "type": "object" }
calculate_area_527a3c45
{ "properties": { "dimensions": { "properties": { "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "length", "width" ], "type": "object" }, "shape": { "description": "The type of geometric shape (e.g., circle, rectangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_116c40ab
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape (for triangle)", "type": "number" }, "height": { "description": "The height of the shape (for triangle)", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape (for circle)", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "The geometric shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_036f769a
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy": { "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.", "properties": { "partition": { "_format": "int32", "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.", "type": "integer" } }, "type": "object" } }, "description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.", "properties": { "rollingUpdate": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy", "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType." }, "type": { "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.", "type": [ "string", "null" ] } }, "type": "object" }
kb_1016_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" } }, "description": "Information about the original source and/or owner of this content", "properties": { "additional_properties": { "$ref": "#/definitions/trait_additional_properties_json" }, "edit_url": { "description": "A link to edit this content in its source CMS.", "type": "string" }, "name": { "description": "Deprecated in 0.10.9. See `distributor.name`. (Formerly: The human-readable name of the organization who first produced this content. E.g., 'Reuters'.)", "type": "string" }, "source_id": { "description": "The id of this content in a foreign CMS.", "type": "string" }, "source_type": { "description": "Deprecated in 0.10.9. See `distributor.category` and `distributor.subcategory`. (Formerly: The method used to enter this content. E.g. 'staff', 'wires'.)", "type": "string" }, "system": { "description": "The software (CMS or editor) that was used to enter this content. E.g., 'wordpress', 'ellipsis'.", "type": "string" } }, "title": "Source", "type": "object" }
wp_89_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "compilerArguments": { "type": "object", "help": "Compiler arguments are applied to all compilers, unless explicitly modified in post processing", "properties": { "entry": { "type": "string", "help": "main entry point for your program, across all contexts" }, "out": { "type": "string", "help": "destination for compiled bundle. If there are multiple, the destination of specific bundles will be decided by the --combinator" }, "watch": { "help": "monitor source files for changes and recompile.", "type": "boolean" }, "hot": { "help": "enable hot module replacement", "type": "boolean" }, "chunkFilename": { "help": "If provided, enables code splitting with webpack.require. Examples patterns include '[id].chunk.js', '[name].chunk.js'", "type": "string" }, "babelPresets": { "type": "array", "items": { "type": "string" }, "help": "add a preset to the babel loader, between es2015 and stage-0" }, "outCombinator": { "type": "string", "help": "string to combine arguments that \"define\" a compiler (environment, environment)", "default": "_" }, "outPrefix": { "type": "string", "help": "prefix for generated contextual modules. Appended to `out` directory" }, "modules": { "type": "string", "help": "where to look for modules" } } }, "cartesianArguments": { "type": "object", "help": "Cartesian arguments are array arguments that generate compilers equal to the unorderd cartesian product between them", "properties": { "environments": { "type": "array", "items": { "type": "string" }, "default": [], "help": "an application lifecycle environment {DEVELOPMENT, PRODUCTION, etc} this distribution will run in" }, "contexts": { "type": "array", "items": { "type": "string" }, "default": [], "help": "a context {NODE, BROWSER, etc} this distribution will run in. " } } }, "managerArguments": { "type": "object", "help": "Task arguments are arguments that are fed to the task manager ", "properties": { "task": { "help": "the task to run. If non is specified, it will be inferred from other arguments.", "type": "string" }, "run": { "help": "Which context to run on compilation, if any", "type": "string" }, "runner": { "help": "Which runner to run the selected compiler with, if any", "type": "string" }, "logLevel": { "default": "ERROR", "help": "VERBOSE will output webpack stats and warnings" } } }, "compilerList": { "type": "object", "properties": { "compilers": { "type": "array", "help": "List of simple compiler definitions, in case there are little or no shared compiler arguments.", "items": { "type": "object", "allOf": [ { "$ref": "#/definitions/compilerArguments" }, { "properties": { "environment": { "type": "string", "help": "an application lifecycle environment {DEVELOPMENT, PRODUCTION, etc} this distribution will run in. " }, "context": { "type": "string", "help": "a context {NODE, BROWSER, etc} this distribution will run in. " } } } ] } } } }, "presets": { "type": "object", "help": "Presets are functions that apply default or derived arguments at various stages of parsing, loaded from the module given as an argument from the export of the given preset.", "properties": { "compilerPreset": { "help": "Preset for compiler arguments, both simple and cartesian, applied before any other process", "type": "string" }, "managerPreset": { "help": "Preset for manager arguments, applied after compilerPresets are run", "type": "string" }, "argumentPreset": { "help": "combination of managerPreset and compilerPreset, runs after both are completed. If the given module doesn't export an argumentPreset, it's compilerPreset and managerPresets will be used in succession instead.", "type": "string" }, "compilerListPreset": { "help": "Preset for the compiler list, applied after the list has been generated", "type": "string" }, "postPreset": { "help": "Preset applied after all parsing processes have run", "type": "string" }, "preset": { "help": "module from which to import ALL of the potential presets (any missing presets will be identities)", "type": "string" } } } }, "type": "object", "allOf": [ { "allOf": [ { "$ref": "#/definitions/compilerArguments" }, { "$ref": "#/definitions/cartesianArguments" } ] }, { "$ref": "#/definitions/compilerList" }, { "$ref": "#/definitions/managerArguments" }, { "$ref": "#/definitions/presets" } ] }
o67450
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "number" }, "name": { "type": "string" }, "requirement": { "type": "string" }, "order": { "type": "number" }, "background": { "type": "string" }, "region": { "type": "string" }, "levels": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "instruction": { "type": "string" }, "icon": { "type": "string" }, "point_cost": { "type": "number" }, "exp_cost": { "type": "number" } }, "required": [ "name", "description", "instruction", "icon", "point_cost", "exp_cost" ] } } }, "required": [ "id", "name", "requirement", "order", "background", "region", "levels" ] }, "properties": {}, "additionalProperties": false }
o45190
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "account": { "properties": { "contact_name": { "type": "string", "minLength": 3, "maxLength": 255 }, "contact_email": { "type": "string", "format": "email" }, "contact_phone_number": { "type": "string", "minLength": 7, "maxLength": 20 }, "host": { "type": "string", "minLength": 3, "maxLength": 50 }, "name": { "type": "string", "minLength": 4, "maxLength": 255 } }, "required": [ "contact_name", "contact_email", "contact_phone_number", "name" ], "additionalProperties": false } }, "required": [ "account" ], "additionalProperties": false }
o58905
{ "properties": { "date_range": { "properties": { "end_date": { "description": "End date of the news articles", "format": "date", "type": "string" }, "start_date": { "description": "Start date of the news articles", "format": "date", "type": "string" } }, "type": "object" }, "keywords": { "description": "Keywords to search for", "items": { "type": "string" }, "type": "array" }, "language": { "description": "Language of the news articles", "type": "string" } }, "required": [ "keywords" ], "type": "object" }
search_news_8fefc2c7
{ "properties": { "dimensions": { "description": "The dimensions required to calculate the area", "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius" ], "type": "object" }, "shape": { "description": "The shape for which to calculate the area (e.g. rectangle, circle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_5d205199
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Table Schema", "description": "A Table Schema for this resource, compliant with the [Table Schema](/tableschema/) specification.", "type": "object", "required": [ "fields" ], "properties": { "fields": { "type": "array", "minItems": 1, "items": { "title": "Table Schema Field", "type": "object", "anyOf": [ { "type": "object", "title": "String Field", "description": "The field contains strings, that is, sequences of characters.", "required": [ "name" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `string`.", "enum": [ "string" ] }, "format": { "description": "The format keyword options for `string` are `default`, `email`, `uri`, `binary`, and `uuid`.", "context": "The following `format` options are supported:\n * **default**: any valid string.\n * **email**: A valid email address.\n * **uri**: A valid URI.\n * **binary**: A base64 encoded string representing binary data.\n * **uuid**: A string that is a uuid.", "enum": [ "default", "email", "uri", "binary", "uuid" ], "default": "default" }, "constraints": { "title": "Constraints", "description": "The following constraints are supported for `string` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "pattern": { "type": "string", "description": "A regular expression pattern to test each value of the property against, where a truthy response indicates validity.", "context": "Regular expressions `SHOULD` conform to the [XML Schema regular expression syntax](http://www.w3.org/TR/xmlschema-2/#regexs)." }, "enum": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, "minLength": { "type": "integer", "description": "An integer that specifies the minimum length of a value." }, "maxLength": { "type": "integer", "description": "An integer that specifies the maximum length of a value." } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"name\",\n \"type\": \"string\"\n}\n", "{\n \"name\": \"name\",\n \"type\": \"string\",\n \"format\": \"email\"\n}\n", "{\n \"name\": \"name\",\n \"type\": \"string\",\n \"constraints\": {\n \"minLength\": 3,\n \"maxLength\": 35\n }\n}\n" ] }, { "type": "object", "title": "Number Field", "description": "The field contains numbers of any kind including decimals.", "context": "The lexical formatting follows that of decimal in [XMLSchema](https://www.w3.org/TR/xmlschema-2/#decimal): a non-empty finite-length sequence of decimal digits separated by a period as a decimal indicator. An optional leading sign is allowed. If the sign is omitted, '+' is assumed. Leading and trailing zeroes are optional. If the fractional part is zero, the period and following zero(es) can be omitted. For example: '-1.23', '12678967.543233', '+100000.00', '210'.\n\nThe following special string values are permitted (case does not need to be respected):\n - NaN: not a number\n - INF: positive infinity\n - -INF: negative infinity\n\nA number `MAY` also have a trailing:\n - exponent: this `MUST` consist of an E followed by an optional + or - sign followed by one or more decimal digits (0-9)\n - percentage: the percentage sign: `%`. In conversion percentages should be divided by 100.\n\nIf both exponent and percentages are present the percentage `MUST` follow the exponent e.g. '53E10%' (equals 5.3).", "required": [ "name" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `number`.", "enum": [ "number" ] }, "format": { "description": "There are no format keyword options for `number`: only `default` is allowed.", "enum": [ "default" ], "default": "default" }, "decimalChar": { "type": "string", "description": "A string whose value is used to represent a decimal point within the number. The default value is `.`." }, "groupChar": { "type": "string", "description": "A string whose value is used to group digits within the number. The default value is `null`. A common value is `,` e.g. '100,000'." }, "currency": { "type": "string", "description": "A number that may include additional currency symbols." }, "constraints": { "title": "Constraints", "description": "The following constraints are supported for `number` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "pattern": { "type": "string", "description": "A regular expression pattern to test each value of the property against, where a truthy response indicates validity.", "context": "Regular expressions `SHOULD` conform to the [XML Schema regular expression syntax](http://www.w3.org/TR/xmlschema-2/#regexs)." }, "enum": { "oneOf": [ { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "number" } } ] }, "minimum": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "maximum": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"field-name\",\n \"type\": \"number\"\n}\n", "{\n \"name\": \"field-name\",\n \"type\": \"number\",\n \"constraints\": {\n \"enum\": [ \"1.00\", \"1.50\", \"2.00\" ]\n }\n}\n" ] }, { "type": "object", "title": "Integer Field", "description": "The field contains integers - that is whole numbers.", "context": "Integer values are indicated in the standard way for any valid integer.", "required": [ "name", "type" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `integer`.", "enum": [ "integer" ] }, "format": { "description": "There are no format keyword options for `integer`: only `default` is allowed.", "enum": [ "default" ], "default": "default" }, "constraints": { "title": "Constraints", "description": "The following constraints are supported for `integer` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "pattern": { "type": "string", "description": "A regular expression pattern to test each value of the property against, where a truthy response indicates validity.", "context": "Regular expressions `SHOULD` conform to the [XML Schema regular expression syntax](http://www.w3.org/TR/xmlschema-2/#regexs)." }, "enum": { "oneOf": [ { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "integer" } } ] }, "minimum": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] }, "maximum": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"age\",\n \"type\": \"integer\",\n \"constraints\": {\n \"unique\": true,\n \"minimum\": 100,\n \"maximum\": 9999\n }\n}\n" ] }, { "type": "object", "title": "Date Field", "description": "The field contains temporal date values.", "required": [ "name", "type" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `date`.", "enum": [ "date" ] }, "format": { "description": "The format keyword options for `date` are `default`, `any`, and `{PATTERN}`.", "context": "The following `format` options are supported:\n * **default**: An ISO8601 format string of YYYY-MM-DD.\n * **any**: Any parsable representation of a date. The implementing library can attempt to parse the datetime via a range of strategies.\n * **{PATTERN}**: The value can be parsed according to `{PATTERN}`, which `MUST` follow the date formatting syntax of C / Python [strftime](http://strftime.org/).", "default": "default" }, "constraints": { "title": "Constraints", "description": "The following constraints are supported for `date` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "enum": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, "minimum": { "type": "string" }, "maximum": { "type": "string" } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"date_of_birth\",\n \"type\": \"date\"\n}\n", "{\n \"name\": \"date_of_birth\",\n \"type\": \"date\",\n \"constraints\": {\n \"minimum\": \"01-01-1900\"\n }\n}\n", "{\n \"name\": \"date_of_birth\",\n \"type\": \"date\",\n \"format\": \"MM-DD-YYYY\"\n}\n" ] }, { "type": "object", "title": "Time Field", "description": "The field contains temporal time values.", "required": [ "name", "type" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `time`.", "enum": [ "time" ] }, "format": { "description": "The format keyword options for `time` are `default`, `any`, and `{PATTERN}`.", "context": "The following `format` options are supported:\n * **default**: An ISO8601 format string for time.\n * **any**: Any parsable representation of a date. The implementing library can attempt to parse the datetime via a range of strategies.\n * **{PATTERN}**: The value can be parsed according to `{PATTERN}`, which `MUST` follow the date formatting syntax of C / Python [strftime](http://strftime.org/).", "default": "default" }, "constraints": { "title": "Constraints", "description": "The following constraints are supported for `time` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "enum": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, "minimum": { "type": "string" }, "maximum": { "type": "string" } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"appointment_start\",\n \"type\": \"time\"\n}\n", "{\n \"name\": \"appointment_start\",\n \"type\": \"time\",\n \"format\": \"any\"\n}\n" ] }, { "type": "object", "title": "Date Time Field", "description": "The field contains temporal datetime values.", "required": [ "name", "type" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `datetime`.", "enum": [ "datetime" ] }, "format": { "description": "The format keyword options for `datetime` are `default`, `any`, and `{PATTERN}`.", "context": "The following `format` options are supported:\n * **default**: An ISO8601 format string for datetime.\n * **any**: Any parsable representation of a date. The implementing library can attempt to parse the datetime via a range of strategies.\n * **{PATTERN}**: The value can be parsed according to `{PATTERN}`, which `MUST` follow the date formatting syntax of C / Python [strftime](http://strftime.org/).", "default": "default" }, "constraints": { "title": "Constraints", "description": "The following constraints are supported for `datetime` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "enum": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, "minimum": { "type": "string" }, "maximum": { "type": "string" } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"timestamp\",\n \"type\": \"datetime\"\n}\n", "{\n \"name\": \"timestamp\",\n \"type\": \"datetime\",\n \"format\": \"default\"\n}\n" ] }, { "type": "object", "title": "Year Field", "description": "A calendar year, being an integer with 4 digits. Equivalent to [gYear in XML Schema](https://www.w3.org/TR/xmlschema-2/#gYear)", "required": [ "name", "type" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `year`.", "enum": [ "year" ] }, "format": { "description": "There are no format keyword options for `year`: only `default` is allowed.", "enum": [ "default" ], "default": "default" }, "constraints": { "title": "Constraints", "description": "The following constraints are supported for `year` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "enum": { "oneOf": [ { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "integer" } } ] }, "minimum": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] }, "maximum": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"year\",\n \"type\": \"year\"\n}\n", "{\n \"name\": \"year\",\n \"type\": \"year\",\n \"constraints\": {\n \"minimum\": 1970,\n \"maximum\": 2003\n }\n}\n" ] }, { "type": "object", "title": "Year Month Field", "description": "A calendar year month, being an integer with 1 or 2 digits. Equivalent to [gYearMonth in XML Schema](https://www.w3.org/TR/xmlschema-2/#gYearMonth)", "required": [ "name", "type" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `yearmonth`.", "enum": [ "yearmonth" ] }, "format": { "description": "There are no format keyword options for `yearmonth`: only `default` is allowed.", "enum": [ "default" ], "default": "default" }, "constraints": { "title": "Constraints", "description": "The following constraints are supported for `yearmonth` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "pattern": { "type": "string", "description": "A regular expression pattern to test each value of the property against, where a truthy response indicates validity.", "context": "Regular expressions `SHOULD` conform to the [XML Schema regular expression syntax](http://www.w3.org/TR/xmlschema-2/#regexs)." }, "enum": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, "minimum": { "type": "string" }, "maximum": { "type": "string" } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"month\",\n \"type\": \"yearmonth\"\n}\n", "{\n \"name\": \"month\",\n \"type\": \"yearmonth\",\n \"constraints\": {\n \"minimum\": 1,\n \"maximum\": 6\n }\n}\n" ] }, { "type": "object", "title": "Boolean Field", "description": "The field contains boolean (true/false) data.", "required": [ "name", "type" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `boolean`.", "enum": [ "boolean" ] }, "trueValues": { "type": "array", "minItems": 1, "items": { "type": "string" }, "default": [ "true", "True", "TRUE", "1" ] }, "falseValues": { "type": "array", "minItems": 1, "items": { "type": "string" }, "default": [ "false", "False", "FALSE", "0" ] }, "constraints": { "title": "Constraints", "description": "The following constraints are supported for `boolean` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "enum": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "boolean" } } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"registered\",\n \"type\": \"boolean\"\n}\n" ] }, { "type": "object", "title": "Object Field", "description": "The field contains data which can be parsed as a valid JSON object.", "required": [ "name", "type" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `object`.", "enum": [ "object" ] }, "format": { "description": "There are no format keyword options for `object`: only `default` is allowed.", "enum": [ "default" ], "default": "default" }, "constraints": { "title": "Constraints", "description": "The following constraints apply for `object` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "enum": { "oneOf": [ { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "object" } } ] }, "minLength": { "type": "integer", "description": "An integer that specifies the minimum length of a value." }, "maxLength": { "type": "integer", "description": "An integer that specifies the maximum length of a value." } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"extra\"\n \"type\": \"object\"\n}\n" ] }, { "type": "object", "title": "GeoPoint Field", "description": "The field contains data describing a geographic point.", "required": [ "name", "type" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `geopoint`.", "enum": [ "geopoint" ] }, "format": { "description": "The format keyword options for `geopoint` are `default`,`array`, and `object`.", "context": "The following `format` options are supported:\n * **default**: A string of the pattern 'lon, lat', where `lon` is the longitude and `lat` is the latitude.\n * **array**: An array of exactly two items, where each item is either a number, or a string parsable as a number, and the first item is `lon` and the second item is `lat`.\n * **object**: A JSON object with exactly two keys, `lat` and `lon`", "notes": [ "Implementations `MUST` strip all white space in the default format of `lon, lat`." ], "enum": [ "default", "array", "object" ], "default": "default" }, "constraints": { "title": "Constraints", "description": "The following constraints are supported for `geopoint` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "enum": { "oneOf": [ { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "array" } }, { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "object" } } ] } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"post_office\",\n \"type\": \"geopoint\"\n}\n", "{\n \"name\": \"post_office\",\n \"type\": \"geopoint\",\n \"format\": \"array\"\n}\n" ] }, { "type": "object", "title": "GeoJSON Field", "description": "The field contains a JSON object according to GeoJSON or TopoJSON", "required": [ "name", "type" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `geojson`.", "enum": [ "geojson" ] }, "format": { "description": "The format keyword options for `geojson` are `default` and `topojson`.", "context": "The following `format` options are supported:\n * **default**: A geojson object as per the [GeoJSON spec](http://geojson.org/).\n * **topojson**: A topojson object as per the [TopoJSON spec](https://github.com/topojson/topojson-specification/blob/master/README.md)", "enum": [ "default", "topojson" ], "default": "default" }, "constraints": { "title": "Constraints", "description": "The following constraints are supported for `geojson` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "enum": { "oneOf": [ { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "object" } } ] }, "minLength": { "type": "integer", "description": "An integer that specifies the minimum length of a value." }, "maxLength": { "type": "integer", "description": "An integer that specifies the maximum length of a value." } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"city_limits\",\n \"type\": \"geojson\"\n}\n", "{\n \"name\": \"city_limits\",\n \"type\": \"geojson\",\n \"format\": \"topojson\"\n}\n" ] }, { "type": "object", "title": "Array Field", "description": "The field contains data which can be parsed as a valid JSON array.", "required": [ "name", "type" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `array`.", "enum": [ "array" ] }, "format": { "description": "There are no format keyword options for `array`: only `default` is allowed.", "enum": [ "default" ], "default": "default" }, "constraints": { "title": "Constraints", "description": "The following constraints apply for `array` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "enum": { "oneOf": [ { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "array" } } ] }, "minLength": { "type": "integer", "description": "An integer that specifies the minimum length of a value." }, "maxLength": { "type": "integer", "description": "An integer that specifies the maximum length of a value." } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"options\"\n \"type\": \"array\"\n}\n" ] }, { "type": "object", "title": "Duration Field", "description": "The field contains a duration of time.", "context": "The lexical representation for duration is the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601#Durations) extended format `PnYnMnDTnHnMnS`, where `nY` represents the number of years, `nM` the number of months, `nD` the number of days, 'T' is the date/time separator, `nH` the number of hours, `nM` the number of minutes and `nS` the number of seconds. The number of seconds can include decimal digits to arbitrary precision. Date and time elements including their designator may be omitted if their value is zero, and lower order elements may also be omitted for reduced precision. Here we follow the definition of [XML Schema duration datatype](http://www.w3.org/TR/xmlschema-2/#duration) directly and that definition is implicitly inlined here.", "required": [ "name", "type" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `duration`.", "enum": [ "duration" ] }, "format": { "description": "There are no format keyword options for `duration`: only `default` is allowed.", "enum": [ "default" ], "default": "default" }, "constraints": { "title": "Constraints", "description": "The following constraints are supported for `duration` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "enum": { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, "minimum": { "type": "string" }, "maximum": { "type": "string" } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"period\"\n \"type\": \"duration\"\n}\n" ] }, { "type": "object", "title": "Any Field", "description": "Any value is accepted, including values that are not captured by the type/format/constraint requirements of the specification.", "required": [ "name", "type" ], "properties": { "name": { "title": "Name", "description": "An identifier string. Lower case characters with `.`, `_`, `-` and `/` are allowed.", "type": "string", "pattern": "^([-a-z0-9._/])+$", "context": "This is ideally a url-usable and human-readable name. Name `SHOULD` be invariant, meaning it `SHOULD NOT` change when its parent descriptor is updated.", "examples": [ "{\n \"name\": \"my-nice-name\"\n}\n" ] }, "title": { "title": "Title", "description": "A human-readable title.", "type": "string", "examples": [ "{\n \"title\": \"My Package Title\"\n}\n" ] }, "description": { "title": "Description", "description": "A text description. Markdown is encouraged.", "type": "string", "examples": [ "{\n \"description\": \"# My Package description\\nAll about my package.\"\n}\n" ] }, "type": { "description": "The type keyword, which `MUST` be a value of `any`.", "enum": [ "any" ] }, "constraints": { "title": "Constraints", "description": "The following constraints apply to `any` fields.", "type": "object", "properties": { "required": { "type": "boolean", "description": "Indicates whether a property must have a value for each instance.", "context": "An empty string is considered to be a missing value." }, "unique": { "type": "boolean", "description": "When `true`, each value for the property `MUST` be unique." }, "enum": { "type": "array", "minItems": 1, "_uniqueItems": true } } }, "rdfType": { "type": "string", "description": "The RDF type for this field." } }, "examples": [ "{\n \"name\": \"notes\",\n \"type\": \"any\"\n" ] } ] }, "description": "An `array` of Table Schema Field objects.", "examples": [ "{\n \"fields\": [\n {\n \"name\": \"my-field-name\"\n }\n ]\n}\n", "{\n \"fields\": [\n {\n \"name\": \"my-field-name\",\n \"type\": \"number\"\n },\n {\n \"name\": \"my-field-name-2\",\n \"type\": \"string\",\n \"format\": \"email\"\n }\n ]\n}\n" ] }, "primaryKey": { "oneOf": [ { "type": "array", "minItems": 1, "_uniqueItems": true, "items": { "type": "string" } }, { "type": "string" } ], "description": "A primary key is a field name or an array of field names, whose values `MUST` uniquely identify each row in the table.", "context": "Field name in the `primaryKey` `MUST` be unique, and `MUST` match a field name in the associated table. It is acceptable to have an array with a single value, indicating that the value of a single field is the primary key.", "examples": [ "{\n \"primaryKey\": [\n \"name\"\n ]\n}\n", "{\n \"primaryKey\": [\n \"first_name\",\n \"last_name\"\n ]\n}\n" ] }, "foreignKeys": { "type": "array", "minItems": 1, "items": { "title": "Table Schema Foreign Key", "description": "Table Schema Foreign Key", "type": "object", "required": [ "fields", "reference" ], "oneOf": [ { "properties": { "fields": { "type": "array", "items": { "type": "string", "minItems": 1, "_uniqueItems": true, "description": "Fields that make up the primary key." } }, "reference": { "type": "object", "required": [ "resource", "fields" ], "properties": { "resource": { "type": "string", "default": "" }, "fields": { "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true } } } } }, { "properties": { "fields": { "type": "string", "description": "Fields that make up the primary key." }, "reference": { "type": "object", "required": [ "resource", "fields" ], "properties": { "resource": { "type": "string", "default": "" }, "fields": { "type": "string" } } } } } ] }, "examples": [ "{\n \"foreignKeys\": [\n {\n \"fields\": \"state\",\n \"reference\": {\n \"resource\": \"the-resource\",\n \"fields\": \"state_id\"\n }\n }\n ]\n}\n", "{\n \"foreignKeys\": [\n {\n \"fields\": \"state\",\n \"reference\": {\n \"resource\": \"\",\n \"fields\": \"id\"\n }\n }\n ]\n}\n" ] }, "missingValues": { "type": "array", "minItems": 1, "items": { "type": "string" }, "default": [ "" ], "description": "Values that when encountered in the source, should be considered as `null`, 'not present', or 'blank' values.", "context": "Many datasets arrive with missing data values, either because a value was not collected or it never existed.\nMissing values may be indicated simply by the value being empty in other cases a special value may have been used e.g. `-`, `NaN`, `0`, `-9999` etc.\nThe `missingValues` property provides a way to indicate that these values should be interpreted as equivalent to null.\n\n`missingValues` are strings rather than being the data type of the particular field. This allows for comparison prior to casting and for fields to have missing value which are not of their type, for example a `number` field to have missing values indicated by `-`.\n\nThe default value of `missingValue` for a non-string type field is the empty string `''`. For string type fields there is no default for `missingValue` (for string fields the empty string `''` is a valid value and need not indicate null).", "examples": [ "{\n \"missingValues\": [\n \"-\",\n \"NaN\",\n \"\"\n ]\n}\n" ] } }, "examples": [ "{\n \"schema\": {\n \"fields\": [\n {\n \"name\": \"first_name\",\n \"type\": \"string\"\n \"constraints\": {\n \"required\": true\n }\n },\n {\n \"name\": \"age\",\n \"type\": \"integer\"\n },\n ],\n \"primaryKey\": [\n \"name\"\n ]\n }\n}\n" ] }
o70035
{ "properties": { "collection": { "description": "The collection to load the migrations from.", "type": "string" }, "from": { "description": "The version installed previously.", "type": "string" }, "package": { "description": "The package to migrate.", "type": "string" }, "to": { "description": "The version to migrate to.", "type": "string" } }, "required": [ "package", "collection", "from", "to" ], "type": "object" }
o83902
{ "properties": { "include_lowercase": { "description": "Include lowercase letters in the password", "type": "boolean" }, "include_numbers": { "description": "Include numbers in the password", "type": "boolean" }, "include_special_characters": { "description": "Include special characters in the password", "type": "boolean" }, "include_uppercase": { "description": "Include uppercase letters in the password", "type": "boolean" }, "length": { "description": "The length of the password", "type": "integer" } }, "required": [ "length", "include_uppercase", "include_lowercase", "include_numbers", "include_special_characters" ], "type": "object" }
generate_random_password_29b43bbb
{ "$schema": "http://json-schema.org/draft-07/schema#", "description": "schema for type boolean", "type": "object", "properties": { "Z1K1": { "enum": [ "Z50" ] }, "Z1K2": { "enum": [ "Z54", "Z55" ] }, "Z1K3": {}, "Z1K4": {}, "Z1K5": {}, "Z50K1": {} }, "required": [ "Z1K1", "Z50K1" ], "additionalProperties": false }
o44190
{ "$ref": "#/definitions/IConfiguration", "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "IConfiguration": { "defaultProperties": [], "properties": { "pull": { "$ref": "#/definitions/IPullOptions" } }, "type": "object" }, "IPullOptions": { "defaultProperties": [], "properties": { "connection": { "$ref": "#/definitions/MysqlConnectionOptions" }, "index": { "type": "boolean" }, "interactive": { "type": "boolean" }, "output": { "type": "string" } }, "required": [ "connection" ], "type": "object" }, "MysqlConnectionOptions": { "defaultProperties": [], "properties": { "adapter": { "enum": [ "mysql" ], "type": "string" }, "connectTimeout": { "type": "number" }, "database": { "type": "string" }, "host": { "type": "string" }, "password": { "type": "string" }, "port": { "type": "number" }, "user": { "type": "string" } }, "required": [ "adapter", "database", "host", "password", "user" ], "type": "object" } } }
o9207
{ "properties": { "dimensions": { "additionalProperties": false, "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "length", "width", "base", "height" ], "type": "object" }, "shape": { "description": "The type of shape", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_79767fec
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "shared_secret": { "type": "string" }, "header": { "type": "string", "pattern": "^[a-zA-Z0-9]([a-zA-Z0-9-]+[a-zA-Z0-9])?$" }, "algorithm": { "enum": [ "hmac-md5", "hmac-sha1", "hmac-sha256", "hmac-sha384", "hmac-sha512" ] } }, "additionalProperties": false, "required": [ "shared_secret", "header", "algorithm" ] } }
o71846
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "CalculationResponse", "type": "object", "required:": [ "incomeTaxYTD", "incomeTaxThisPeriod" ], "definitions": { "monetary": { "type": "number", "minimum": -100000000.0, "maximum": 100000000.0, "multipleOf": 0.01, "description": "Defines a monetary value (to 2 decimal places), between -99,999,999.99 and 99,999,999.99" }, "wholePounds": { "type": "number", "minimum": 0, "maximum": 99999999, "multipleOf": 1, "description": "Defines amounts given in whole pounds between 0.00 and 99.99" }, "percent": { "type": "number", "minimum": 0, "maximum": 99.99, "multipleOf": 0.01, "description": "Defines a percentage rate (to 2 decimal places), between 0.00 and 99.99" }, "endOfYearEstimate": { "type": "object", "properties": { "selfEmployment": { "$ref": "#/definitions/selfEmployment", "description": "An array of self-employment income sources" }, "ukProperty": { "$ref": "#/definitions/ukProperty", "description": "An array of UK property income sources" }, "totalTaxableIncome": { "$ref": "#/definitions/monetary", "description": "Sum of estimated taxable income for all income sources" }, "incomeTaxAmount": { "$ref": "#/definitions/monetary", "description": "Calculated Income tax amount from estimated taxable income" }, "nic2": { "$ref": "#/definitions/monetary", "description": "Calculated NIC Class 2 from estimates" }, "nic4": { "$ref": "#/definitions/monetary", "description": "Calculated NIC Class 4 from estimates" }, "totalNicAmount": { "$ref": "#/definitions/monetary", "description": "Sum of National Insurance amounts" }, "incomeTaxNicAmount": { "$ref": "#/definitions/monetary", "description": "Total of calculated Income Tax and National Insurance from estimated annual taxable income" } } }, "selfEmployment": { "description": "An array of annualised estimated income by income source", "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "id": { "description": "The Income Source ID", "type": "string" }, "taxableIncome": { "$ref": "#/definitions/monetary", "description": "Estimated taxable income for source" }, "supplied": { "description": "Indicates if the estimate taxable income is supplied by the taxpayer (true) or calculated (false)", "type": "boolean" }, "finalised": { "description": "Indicates if the income source has been finalised for the tax year (only applies to self-employment and UK Property income types)", "type": "boolean" } }, "required": [ "id", "taxableIncome", "supplied" ], "additionalProperties": false } }, "ukProperty": { "description": "An array of annualised estimated income by income source", "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "taxableIncome": { "$ref": "#/definitions/monetary", "description": "Estimated taxable income for source" }, "supplied": { "description": "Indicates if the estimate taxable income is supplied by the taxpayer (true) or calculated (false)", "type": "boolean" }, "finalised": { "description": "Indicates if the income source has been finalised for the tax year (only applies to self-employment and UK Property income types)", "type": "boolean" } }, "required": [ "taxableIncome", "supplied" ], "additionalProperties": false } } }, "properties": { "incomeTaxYTD": { "$ref": "#/definitions/monetary", "description": "Details the amount of income tax is due based on the year to date figures supplied" }, "incomeTaxThisPeriod": { "$ref": "#/definitions/monetary", "description": "Details the amount of income tax is due this period. This is based on the incomeTaxYTD less the amount in the same data item from the calculation result from the preceding period" }, "payFromAllEmployments": { "type": "number", "description": "Pay from all employments" }, "benefitsAndExpensesReceived": { "type": "number", "description": "Benefits and expenses received" }, "allowableExpenses": { "type": "number", "description": "Allowable expenses" }, "payFromAllEmploymentsAfterExpenses": { "type": "number", "description": "Total from all employments" }, "shareSchemes": { "type": "number", "description": "Share schemes" }, "profitFromSelfEmployment": { "$ref": "#/definitions/monetary", "description": "Profit from self-employment" }, "profitFromPartnerships": { "type": "number", "description": "Profit from partnerships" }, "profitFromUkLandAndProperty": { "$ref": "#/definitions/monetary", "description": "Profit from UK land and property" }, "foreignIncome": { "type": "number", "description": "Foreign income" }, "dividendsFromForeignCompanies": { "type": "number", "description": "Dividends from foreign companies" }, "trustsAndEstates": { "type": "number", "description": "Trusts and estates" }, "interestReceivedFromUkBanksAndBuildingSocieties": { "$ref": "#/definitions/monetary", "description": "Interest received from UK banks and building societies" }, "dividendsFromUkCompanies": { "$ref": "#/definitions/monetary", "description": "Dividends from UK companies (plus 10% tax credits)" }, "ukPensionsAndStateBenefits": { "type": "number", "description": "UK pensions and state benefits" }, "gainsOnLifeInsurance": { "type": "number", "description": "Gains on life insurance policies etc." }, "otherIncome": { "type": "number", "description": "Other income" }, "totalIncomeReceived": { "type": "number", "description": "Total income received" }, "paymentsIntoARetirementAnnuity": { "type": "number", "description": "Payments into a retirement annuity contract etc." }, "foreignTaxOnEstates": { "type": "number", "description": "Foreign tax on estates (tax credit relief not claimed)" }, "incomeTaxRelief": { "type": "number", "description": "Amount of total reliefs for deduction" }, "incomeTaxReliefReducedToMaximumAllowable": { "type": "number", "description": "Amount of total reliefs for deduction restricted to permitted maximum" }, "annuities": { "type": "number", "description": "Amount of annuities for deduction" }, "giftOfInvestmentsAndPropertyToCharity": { "type": "number", "description": "Gift of investments and property to charity for deduction" }, "personalAllowance": { "$ref": "#/definitions/wholePounds", "description": "Reduced personal allowance" }, "marriageAllowanceTransfer": { "type": "number", "description": "Marriage allowance transfer" }, "blindPersonAllowance": { "type": "number", "description": "Blind person's allowance" }, "blindPersonSurplusAllowanceFromSpouse": { "type": "number", "description": "Blind person's surplus allowance from spouse" }, "incomeExcluded": { "type": "number", "description": "Amount of income excluded from this calculation" }, "totalIncomeAllowancesUsed": { "type": "number", "description": "Total of deductions and allowances used" }, "totalIncomeOnWhichTaxIsDue": { "$ref": "#/definitions/monetary", "description": "Total income on which tax is due" }, "payPensionsExtender": { "type": "number", "description": "Basic rate band extension amount relating to pension payments made net" }, "giftExtender": { "type": "number", "description": "Basic rate band extension amount relating to gift aid" }, "extendedBR": { "type": "number", "description": "Amount for extending basic rate band" }, "payPensionsProfitAtBRT": { "$ref": "#/definitions/monetary", "description": "Amount of pay, pensions and profit at the basic rate of tax (BRT)" }, "incomeTaxOnPayPensionsProfitAtBRT": { "$ref": "#/definitions/monetary", "description": "Tax on pay, pensions and profit at the basic rate of tax (BRT)" }, "payPensionsProfitAtHRT": { "$ref": "#/definitions/monetary", "description": "Amount of pay, pensions and profit at the higher rate of tax (HRT)" }, "incomeTaxOnPayPensionsProfitAtHRT": { "$ref": "#/definitions/monetary", "description": "Tax on pay, pensions and profit at the higher rate of tax (HRT)" }, "payPensionsProfitAtART": { "$ref": "#/definitions/monetary", "description": "Amount of pay, pensions and profit at the additional higher rate of tax (AHRT)" }, "incomeTaxOnPayPensionsProfitAtART": { "$ref": "#/definitions/monetary", "description": "Tax on pay, pensions and profit at the additional higher rate of tax (AHRT)" }, "netPropertyFinanceCosts": { "$ref": "#/definitions/monetary", "description": "Net property finance costs - from landlords interest relief" }, "interestReceivedAtStartingRate": { "$ref": "#/definitions/monetary", "description": "Amount of interest received from a bank or building society etc. at starting rate (SR)" }, "incomeTaxOnInterestReceivedAtStartingRate": { "$ref": "#/definitions/monetary", "description": "Tax on interest received from a bank or building society etc. at starting rate (SR)" }, "interestReceivedAtZeroRate": { "$ref": "#/definitions/monetary", "description": "Amount of interest received from a bank or building society etc. at zero Rate" }, "incomeTaxOnInterestReceivedAtZeroRate": { "$ref": "#/definitions/monetary", "description": "Tax on interest received from a bank or building society etc. at zero Rate" }, "interestReceivedAtBRT": { "$ref": "#/definitions/monetary", "description": "Amount of interest received from a bank or building society etc. at basic rate (BRT)" }, "incomeTaxOnInterestReceivedAtBRT": { "$ref": "#/definitions/monetary", "description": "Tax on interest received from a bank or building society etc. at basic rate (BRT)" }, "interestReceivedAtHRT": { "$ref": "#/definitions/monetary", "description": "Amount of interest received from a bank or building society etc. at higher rate (HRT)" }, "incomeTaxOnInterestReceivedAtHRT": { "$ref": "#/definitions/monetary", "description": "Tax on interest received from a bank or building society etc. at higher rate (HRT)" }, "interestReceivedAtART": { "$ref": "#/definitions/monetary", "description": "Amount of interest received from a bank or building society etc. at additional higher rate (AHRT)" }, "incomeTaxOnInterestReceivedAtART": { "$ref": "#/definitions/monetary", "description": "Tax on interest received from a bank or building society etc. at additional higher rate (AHRT)" }, "dividendsAtZeroRate": { "$ref": "#/definitions/monetary", "description": "Amount of dividends from companies etc. at zero rate" }, "incomeTaxOnDividendsAtZeroRate": { "$ref": "#/definitions/monetary", "description": "Tax on dividends from companies etc. at zero rate" }, "dividendsAtBRT": { "$ref": "#/definitions/monetary", "description": "Amount of dividends from companies etc at basic rate" }, "incomeTaxOnDividendsAtBRT": { "$ref": "#/definitions/monetary", "description": "Tax on dividends from companies etc at basic rate" }, "dividendsAtHRT": { "$ref": "#/definitions/monetary", "description": "Amount of Dividends from companies etc at higher rate" }, "incomeTaxOnDividendsAtHRT": { "$ref": "#/definitions/monetary", "description": "Tax on Dividends from companies etc at higher rate" }, "dividendsAtART": { "$ref": "#/definitions/monetary", "description": "Amount of dividends from companies etc at additional higher rate" }, "incomeTaxOnDividendsAtART": { "$ref": "#/definitions/monetary", "description": "Tax on dividends from companies etc at additional higher rate" }, "totalIncomeOnWhichTaxHasBeenCharged": { "$ref": "#/definitions/monetary", "description": "Total income on which tax is due" }, "taxOnOtherIncome": { "type": "number", "description": "Tax on income excluded from this calculation" }, "incomeTaxDue": { "$ref": "#/definitions/monetary", "description": "Income tax due" }, "incomeTaxCharged": { "$ref": "#/definitions/monetary", "description": "Income tax charges" }, "deficiencyRelief": { "type": "number", "description": "Deficiency relief" }, "topSlicingRelief": { "type": "number", "description": "Top slicing relief" }, "ventureCapitalTrustRelief": { "type": "number", "description": "Venture capital trust relief" }, "enterpriseInvestmentSchemeRelief": { "type": "number", "description": "Enterprise investment scheme relief" }, "seedEnterpriseInvestmentSchemeRelief": { "type": "number", "description": "Seed enterprise investment scheme relief" }, "communityInvestmentTaxRelief": { "type": "number", "description": "Community investment tax relief" }, "socialInvestmentTaxRelief": { "type": "number", "description": "Social investment tax relief" }, "maintenanceAndAlimonyPaid": { "type": "number", "description": "Maintenance and alimony paid" }, "marriedCouplesAllowance": { "type": "number", "description": "Married couple's allowance amount" }, "marriedCouplesAllowanceRelief": { "type": "number", "description": "Relief on married couple's allowance" }, "surplusMarriedCouplesAllowance": { "type": "number", "description": "Married couple's allowance surplus amount from spouse" }, "surplusMarriedCouplesAllowanceRelief": { "type": "number", "description": "Relief on married couple's allowance surplus" }, "notionalTaxFromLifePolicies": { "type": "number", "description": "Notional tax from gains on life policies etc." }, "notionalTaxFromDividendsAndOtherIncome": { "type": "number", "description": "Notional tax from stock dividends and other income" }, "foreignTaxCreditRelief": { "type": "number", "description": "Foreign tax credit relief" }, "incomeTaxDueAfterAllowancesAndReliefs": { "type": "number", "description": "Income tax due after allowances and reliefs" }, "giftAidPaymentsAmount": { "type": "number", "description": "Amount of gift aid payments" }, "giftAidTaxDue": { "type": "number", "description": "Tax due on gift aid payments" }, "capitalGainsTaxDue": { "type": "number", "description": "Capital gains tax due" }, "remittanceForNonDomiciles": { "type": "number", "description": "Remittance basis charge for non-domiciles" }, "highIncomeChildBenefitCharge": { "type": "number", "description": "High income child benefit charge" }, "totalGiftAidTaxReduced": { "type": "number", "description": "Total of gift aid tax reduction" }, "incomeTaxDueAfterGiftAidReduction": { "type": "number", "description": "Income tax due after gift aid" }, "annuityAmount": { "type": "number", "description": "Amount of annuity and royalty payments" }, "taxDueOnAnnuity": { "type": "number", "description": "Tax annuity and royalty payments" }, "taxCreditsOnDividendsFromUkCompanies": { "$ref": "#/definitions/monetary", "description": "Tax credits on dividends from UK companies (not repayable)" }, "incomeTaxDueAfterDividendTaxCredits": { "$ref": "#/definitions/monetary", "description": "Income tax due after dividend tax credits" }, "nationalInsuranceContributionAmount": { "$ref": "#/definitions/monetary", "description": "National insurance contribution amount" }, "nationalInsuranceContributionCharge": { "$ref": "#/definitions/monetary", "description": "National insurance contribution charge" }, "nationalInsuranceContributionSupAmount": { "$ref": "#/definitions/monetary", "description": "National insurance contribution sup amount" }, "nationalInsuranceContributionSupCharge": { "$ref": "#/definitions/monetary", "description": "National insurance contribution sup charge" }, "totalClass4Charge": { "$ref": "#/definitions/monetary", "description": "Total charge on class 4 national insurance contributions" }, "nationalInsuranceClass1Amount": { "type": "number", "description": "National insurance class 1 amount" }, "nationalInsuranceClass2Amount": { "$ref": "#/definitions/monetary", "description": "Charge on class 2 national insurance contributions" }, "nicTotal": { "$ref": "#/definitions/monetary", "description": "Total of class 2 and class 4 national insurance contributions" }, "underpaidTaxForPreviousYears": { "type": "number", "description": "Underpaid tax for earlier years in your tax code for 2015-16" }, "studentLoanRepayments": { "type": "number", "description": "Student loan repayments" }, "pensionChargesGross": { "type": "number", "description": "Total pension saving charges" }, "pensionChargesTaxPaid": { "type": "number", "description": "Pension charges tax paid" }, "totalPensionSavingCharges": { "type": "number", "description": "Total pension savings charges (\u00a30.00 minus tax treated as paid \u00a30.00)" }, "pensionLumpSumAmount": { "type": "number", "description": "Sate pension lump sum payment" }, "pensionLumpSumRate": { "type": "number", "description": "State pension lump sum rate" }, "statePensionLumpSumAmount": { "type": "number", "description": "State pension lump sum payment amount" }, "remittanceBasisChargeForNonDomiciles": { "type": "number", "description": "Remittance basis charge for non-domiciles" }, "additionalTaxDueOnPensions": { "type": "number", "description": "Additional tax due on pension payments" }, "additionalTaxReliefDueOnPensions": { "type": "number", "description": "Additional tax relief due on pension payments" }, "incomeTaxDueAfterPensionDeductions": { "$ref": "#/definitions/monetary", "description": "Income tax due" }, "employmentsPensionsAndBenefits": { "type": "number", "description": "From all employments, UK pensions and state benefits" }, "outstandingDebtCollectedThroughPaye": { "type": "number", "description": "Outstanding debt collected through PAYE" }, "payeTaxBalance": { "type": "number", "description": "Balance of PAYE tax" }, "cisAndTradingIncome": { "type": "number", "description": "CIS and trading income" }, "partnerships": { "type": "number", "description": "Partnerships" }, "ukLandAndPropertyTaxPaid": { "type": "number", "description": "UK land and property" }, "foreignIncomeTaxPaid": { "type": "number", "description": "Foreign income" }, "trustAndEstatesTaxPaid": { "type": "number", "description": "Trusts and estates" }, "overseasIncomeTaxPaid": { "type": "number", "description": "Overseas income" }, "interestReceivedTaxPaid": { "type": "number", "description": "Tax paid on interest received from UK banks and building societies" }, "voidISAs": { "type": "number", "description": "Void ISAs" }, "otherIncomeTaxPaid": { "type": "number", "description": "Other income" }, "underpaidTaxForPriorYear": { "type": "number", "description": "Underpaid tax for previous tax year included in your tax code for this tax year" }, "totalTaxDeducted": { "type": "number", "description": "Total tax deducted" }, "incomeTaxOverpaid": { "$ref": "#/definitions/monetary", "description": "Income Tax over paid" }, "incomeTaxDueAfterDeductions": { "type": "number", "description": "Total income tax due" }, "propertyFinanceTaxDeduction": { "$ref": "#/definitions/monetary", "description": "Deduction from landlords interest relief" }, "taxableCapitalGains": { "type": "number", "description": "Taxable capital gains" }, "capitalGainAtEntrepreneurRate": { "type": "number", "description": "Gains that qualify for entrepreneurs' relief" }, "incomeTaxOnCapitalGainAtEntrepreneurRate": { "type": "number", "description": "Tax on capital gains that qualify for entrepreneurs' relief" }, "capitalGrainsAtLowerRate": { "type": "number", "description": "Gains that qualify for lower rate" }, "incomeTaxOnCapitalGainAtLowerRate": { "type": "number", "description": "Tax on capital gains that qualify for lower rate" }, "capitalGainAtHigherRate": { "type": "number", "description": "Gains that qualify for higher rate" }, "incomeTaxOnCapitalGainAtHigherTax": { "type": "number", "description": "Tax on capital gains that qualify for higher rate" }, "capitalGainsTaxAdjustment": { "type": "number", "description": "Capital gains tax adjustment" }, "foreignTaxCreditReliefOnCapitalGains": { "type": "number", "description": "Foreign tax credit relief" }, "liabilityFromOffShoreTrusts": { "type": "number", "description": "Liability from off-shore trusts" }, "taxOnGainsAlreadyCharged": { "type": "number", "description": "Tax on gains already charged" }, "totalCapitalGainsTax": { "type": "number", "description": "Total capital gains tax" }, "incomeAndCapitalGainsTaxDue": { "type": "number", "description": "Income and capital gains tax due" }, "taxRefundedInYear": { "type": "number", "description": "Tax already refunded in the year" }, "unpaidTaxCalculatedForEarlierYears": { "type": "number", "description": "Unpaid tax calculated by reference to earlier years" }, "marriageAllowanceTransferAmount": { "type": "number", "description": "Marriage allowance transfer amount" }, "marriageAllowanceTransferRelief": { "type": "number", "description": "Tax relief on marriage allowance transfer" }, "marriageAllowanceTransferMaximumAllowable": { "type": "number", "description": "Maximum marriage allowance transferred" }, "nationalRegime": { "type": "string", "minLength": 2, "maxLength": 16, "description": "This defines the national tax rates and rules to be applied. Values are UK and Scotland" }, "allowance": { "$ref": "#/definitions/wholePounds", "description": "Allowance" }, "limitBRT": { "$ref": "#/definitions/wholePounds", "description": "Limit for basic rate" }, "limitHRT": { "$ref": "#/definitions/wholePounds", "description": "Limit for higher rate" }, "rateBRT": { "$ref": "#/definitions/percent", "description": "Basic rate" }, "rateHRT": { "$ref": "#/definitions/percent", "description": "Higher rate" }, "rateART": { "$ref": "#/definitions/percent", "description": "Above all rate" }, "limitAIA": { "$ref": "#/definitions/wholePounds", "description": "Limit AIA" }, "allowanceBRT": { "$ref": "#/definitions/wholePounds", "description": "Allowance for basic rate" }, "interestAllowanceHRT": { "$ref": "#/definitions/wholePounds", "description": "Allowance on interest at higher rate" }, "interestAllowanceBRT": { "$ref": "#/definitions/wholePounds", "description": "Allowance on interest at basic rate" }, "dividendAllowance": { "$ref": "#/definitions/wholePounds", "description": "Allowance on dividends" }, "dividendBRT": { "$ref": "#/definitions/percent", "description": "Dividends at basic rate" }, "dividendHRT": { "$ref": "#/definitions/percent", "description": "Dividends at higher rate" }, "dividendART": { "$ref": "#/definitions/percent", "description": "Dividends at above all" }, "class2NICsLimit": { "$ref": "#/definitions/wholePounds", "description": "NICs class 2 limit" }, "class2NICsPerWeek": { "$ref": "#/definitions/monetary", "description": "NICs class 2 per week" }, "class4NICsLimitBR": { "$ref": "#/definitions/wholePounds", "description": "NICs class 4 basic rate limit" }, "class4NICsLimitHR": { "$ref": "#/definitions/wholePounds", "description": "NICs class 4 higher rate limit" }, "class4NICsBRT": { "$ref": "#/definitions/percent", "description": "NICs class 4 basic rate" }, "class4NICsHRT": { "$ref": "#/definitions/percent", "description": "NICs class 4 higher rate" }, "proportionAllowance": { "$ref": "#/definitions/wholePounds", "description": "Proportional personal allowance" }, "proportionLimitBRT": { "$ref": "#/definitions/wholePounds", "description": "Proportional limit basic rate" }, "proportionLimitHRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion limit higher rate" }, "proportionalTaxDue": { "$ref": "#/definitions/monetary", "description": "Proportion tax due" }, "proportionInterestAllowanceBRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion interest allowance basic rate" }, "proportionInterestAllowanceHRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion interest allowance higher rate" }, "proportionDividendAllowance": { "$ref": "#/definitions/wholePounds", "description": "Proportion dividend allowance" }, "proportionPayPensionsProfitAtART": { "$ref": "#/definitions/wholePounds", "description": "Proportion pay pensions profit at above all rate" }, "proportionIncomeTaxOnPayPensionsProfitAtART": { "$ref": "#/definitions/wholePounds", "description": "Proportion income tax on pay pensions at above all rate" }, "proportionPayPensionsProfitAtBRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion pay pensions at basic rate" }, "proportionIncomeTaxOnPayPensionsProfitAtBRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion income tax on pay pensions profit at higher rate" }, "proportionPayPensionsProfitAtHRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion pay pensions profit at higher rate" }, "proportionIncomeTaxOnPayPensionsProfitAtHRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion income tax on pay pensions at higher rate" }, "proportionInterestReceivedAtZeroRate": { "$ref": "#/definitions/wholePounds", "description": "Proportion interest at zero rate" }, "proportionIncomeTaxOnInterestReceivedAtZeroRate": { "$ref": "#/definitions/wholePounds", "description": "Proportion income tax on interest received at zero rat" }, "proportionInterestReceivedAtBRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion interest received at basis rate" }, "proportionIncomeTaxOnInterestReceivedAtBRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion income tax on interest received at basic rate" }, "proportionInterestReceivedAtHRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion interest on higher rate" }, "proportionIncomeTaxOnInterestReceivedAtHRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion income tax on interest on higher rate" }, "proportionInterestReceivedAtART": { "$ref": "#/definitions/wholePounds", "description": "Proportion interest at above all rate" }, "proportionIncomeTaxOnInterestReceivedAtART": { "$ref": "#/definitions/wholePounds", "description": "Proportion income tax on interest at above all rate" }, "proportionDividendsAtZeroRate": { "$ref": "#/definitions/wholePounds", "description": "Proportion dividends at zero rate" }, "proportionIncomeTaxOnDividendsAtZeroRate": { "$ref": "#/definitions/wholePounds", "description": "Proportion income tax on dividends at zero rate" }, "proportionDividendsAtBRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion dividend at basic rate" }, "proportionIncomeTaxOnDividendsAtBRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion income tax on dividends at basic rate" }, "proportionDividendsAtHRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion dividend at higher rate" }, "proportionIncomeTaxOnDividendsAtHRT": { "$ref": "#/definitions/wholePounds", "description": "Proportion income tax on dividend at higher rate" }, "proportionDividendsAtART": { "$ref": "#/definitions/wholePounds", "description": "Proportion dividends at above all rate" }, "proportionIncomeTaxOnDividendsAtART": { "$ref": "#/definitions/wholePounds", "description": "Proportion income tax dividends at above all rate" }, "proportionClass2NICsLimit": { "$ref": "#/definitions/wholePounds", "description": "Proportion class 2 NICs limit" }, "proportionClass4NICsLimitBR": { "$ref": "#/definitions/wholePounds", "description": "Proportion class 4 NICs basic rate limit" }, "proportionClass4NICsLimitHR": { "$ref": "#/definitions/wholePounds", "description": "Proportion class 4 NICs higher rate Limit" }, "proportionReducedAllowanceLimit": { "$ref": "#/definitions/wholePounds", "description": "Proportion reduced allowance limit" }, "eoyEstimate": { "$ref": "#/definitions/endOfYearEstimate", "description": "End-of-year estimate" } }, "additionalProperties": false }
o46322
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string", "description": "The scale uuid" }, "name": { "type": "string", "description": "The scale name", "minLength": 1 }, "labels": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "description": "The level uuid" }, "value": { "type": "string", "description": "The level name" } } } } }, "required": [ "id", "name" ], "claroline": { "ids": [ "id", "name" ] } }
o32499
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "colorPreset": { "enum": [ "green", "blue", "red", "yellow", "orange", "purple", "pink", "grey", "gray", "cyan", "black" ] }, "colorHex": { "type": "string", "pattern": "([0-9a-fA-F]{3}){1,2}" }, "color": { "oneOf": [ { "$ref": "#/definitions/colorPreset" }, { "$ref": "#/definitions/colorHex" } ] }, "format": { "enum": [ "abap", "actionscript", "ada", "apacheconf", "apl", "applescript", "arduino", "arff", "asciidoc", "asm6502", "aspnet", "autohotkey", "autoit", "bash", "basic", "batch", "bison", "brainfuck", "bro", "c", "c-header", "clike", "clojure", "coffeescript", "comments", "cpp", "cpp-header", "crystal", "csharp", "csp", "css-extras", "css", "d", "dart", "diff", "django", "docker", "eiffel", "elixir", "elm", "erb", "erlang", "flow", "fortran", "fsharp", "gedcom", "gherkin", "git", "glsl", "go", "graphql", "groovy", "haml", "handlebars", "haskell", "haxe", "hpkp", "hsts", "http", "ichigojam", "icon", "inform7", "ini", "io", "j", "java", "javascript", "jolie", "json", "jsx", "julia", "keymap", "kotlin", "latex", "less", "liquid", "lisp", "livescript", "lolcode", "lua", "makefile", "markdown", "markup", "matlab", "mel", "mizar", "monkey", "n4js", "nasm", "nginx", "nim", "nix", "nsis", "objectivec", "ocaml", "opencl", "oz", "parigp", "pascal", "perl", "php", "plsql", "powershell", "processing", "prolog", "properties", "protobuf", "pug", "puppet", "pure", "python", "q", "qore", "r", "reason", "renpy", "rest", "rip", "roboconf", "ruby", "rust", "sas", "sass", "scala", "scheme", "scss", "smalltalk", "smarty", "soy", "sql", "stylus", "swift", "tap", "tcl", "textile", "tsx", "tt2", "twig", "typescript", "vbnet", "velocity", "verilog", "vhdl", "vim", "visual-basic", "wasm", "url", "wiki", "xeora", "xojo", "xquery", "yaml" ] } }, "id": "https://json.schemastore.org/jscpd.json", "properties": { "minLines": { "type": "integer", "default": 5, "description": "minimum size of code block in lines to check for duplication" }, "maxLines": { "type": "integer", "default": 1000, "description": "maximum size of source file in lines to check for duplication" }, "maxSize": { "anyOf": [ { "type": "string", "pattern": "^\\+?[0-9]+(\\.[0-9]+)? *[kKmMgGtTpP][bB]$" }, { "type": "integer" } ], "default": "100kb", "description": "maximum size of source file in bytes to check for duplication (e.g.,: 1kb, 1mb, 120kb)" }, "minTokens": { "type": "integer", "default": 50, "description": "minimum size of code block in tokens to check for duplication" }, "threshold": { "type": "number", "description": "maximum allowed duplicate lines expressed as a percentage; exit with error and exit code 1 when threshold exceeded" }, "formatsExts": { "type": "object", "additionalProperties": { "type": "array", "items": { "type": "string" } }, "default": {}, "description": "custom mapping from formats to file extensions (default: https://github.com/kucherenko/jscpd/blob/master/packages/tokenizer/src/formats.ts); see https://github.com/kucherenko/jscpd/blob/master/supported_formats.md" }, "output": { "type": "string", "default": "./report", "description": "path to directory for non-console reports" }, "path": { "type": "array", "items": { "type": "string" }, "description": "paths that should be included in duplicate detection (default: [process.cwd()])" }, "pattern": { "type": "string", "default": "**/*", "description": "glob pattern for files that should be included in duplicate detection (e.g., **/*.txt); only used to filter directories configured via path option" }, "ignorePattern": { "type": "array", "items": { "type": "string" }, "default": [], "description": "ignore code blocks matching these regular expressions" }, "mode": { "enum": ["mild", "strict", "weak"], "default": "mild", "description": "mode of detection quality; see https://github.com/kucherenko/jscpd/blob/master/packages/jscpd/README.md#mode" }, "ignore": { "type": "array", "items": { "type": "string" }, "default": [], "description": "glob pattern for files that should be excluded from duplicate detection" }, "format": { "type": "array", "items": { "$ref": "#/definitions/format" }, "description": "list of formats for which to detect duplication (default: all); see https://github.com/kucherenko/jscpd/blob/master/supported_formats.md" }, "store": { "enum": ["leveldb", "redis"], "description": "store used to collect information about code (default: in-memory store); install @jscpd/leveldb-store and use leveldb for big repositories" }, "reporters": { "type": "array", "items": { "enum": [ "xml", "json", "csv", "markdown", "consoleFull", "html", "console", "silent", "threshold", "xcode" ] }, "default": ["console"], "description": "a list of reporters to use to output information about duplication; see https://github.com/kucherenko/jscpd/blob/master/packages/jscpd/README.md#reporters" }, "blame": { "type": "boolean", "default": false, "description": "get information about authors and dates of duplicated blocks from Git" }, "silent": { "type": "boolean", "default": false, "description": "do not write duplicate detection progress and result to console" }, "verbose": { "type": "boolean", "default": false, "description": "show full information during duplicate detection" }, "absolute": { "type": "boolean", "default": false, "description": "use absolute paths in reports" }, "noSymLinks": { "type": "boolean", "default": false, "description": "do not follow symlinks" }, "skipLocal": { "type": "boolean", "default": false, "description": "skip duplicates within folders; just detect cross-folder duplicates" }, "ignoreCase": { "type": "boolean", "default": false, "description": "ignore case of symbols in code (experimental)" }, "gitignore": { "type": "boolean", "default": false, "description": "ignore all files from .gitignore file" }, "reportersOptions": { "type": "object", "default": {}, "additionalProperties": false, "properties": { "badge": { "type": "object", "additionalProperties": false, "properties": { "path": { "type": "string", "description": "output path for duplication level badge (default: path.join(output, 'jscpd-badge.svg'))" }, "label": { "type": "string", "default": "Copy/Paste", "description": "badge subject text (URL-encoding needed for spaces or special characters)" }, "labelColor": { "$ref": "#/definitions/color", "default": "555", "description": "badge label color (name or RGB code without #); see https://github.com/badgen/badgen/blob/master/src/color-presets.ts" }, "status": { "type": "string", "description": "badge value text (URL-encoding needed for spaces or special characters, default: duplication %)" }, "color": { "$ref": "#/definitions/color", "description": "badge color (name or RGB code without #, default: green if beneath threshold, red if above threshold, grey if threshold not set); see https://github.com/badgen/badgen/blob/master/src/color-presets.ts" }, "style": { "enum": ["flat", "classic"], "default": "classic", "description": "badge look: flat or classic" }, "icon": { "type": "string", "description": "URL for icon to display in front of badge subject text (e.g., data:image/svg+xml;base64,...)" }, "iconWidth": { "type": "number", "default": 13, "description": "SVG width of icon to display in front of badge subject text; set this if icon is not square" }, "scale": { "type": "number", "default": 1, "description": "size of badge relative to default of 1" } } } } }, "exitCode": { "type": "integer", "default": 0, "description": "exit code to use when at least one duplicate code block is detected but threshold is not exceeded" } }, "type": "object" }
jscpd
{ "properties": { "date": { "description": "The date of the meeting", "format": "date", "type": "string" }, "end_time": { "description": "The end time of the meeting", "format": "time", "type": "string" }, "participants": { "description": "The list of participants' email addresses", "items": { "type": "string" }, "type": "array" }, "start_time": { "description": "The start time of the meeting", "format": "time", "type": "string" } }, "required": [ "participants", "date", "start_time", "end_time" ], "type": "object" }
schedule_meeting_c097104a
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Redirect step", "type": "object", "properties": { "name": { "type": "string" }, "kind": { "enum": [ "redirect" ] }, "label": { "type": "string" }, "title": { "type": "string" }, "url": { "type": "string", "minLength": 1 }, "method": { "oneOf": [ { "type": "null" }, { "enum": [ "GET", "POST" ] } ] }, "iface": { "type": "object" } }, "required": [ "name", "kind", "label", "title", "url", "method" ] }
o58489
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "title": "Page", "properties": { "title": { "type": "string" }, "description": { "type": "string" }, "children": { "type": "array", "items": { "oneOf": [ { "$ref": "#/definitions/stage" }, { "$ref": "#/definitions/teaser" } ] } } }, "additionalProperties": false, "required": [ "title", "description", "children" ], "definitions": { "stage": { "title": "stage", "properties": { "type": { "type": "string", "enum": [ "stage" ], "default": "stage" }, "props": { "properties": { "title": { "type": "string" }, "description": { "type": "string" } }, "additionalProperties": false, "required": [ "title", "description" ] } }, "required": [ "type", "props" ] }, "teaser": { "title": "teaser", "properties": { "type": { "type": "string", "enum": [ "teaser" ], "default": "teaser" }, "props": { "properties": { "children": { "type": "array", "items": { "properties": { "title": { "type": "string" }, "description": { "type": "string" }, "reference": { "type": "string" } }, "additionalProperties": false, "required": [ "title", "description", "reference" ] } } } } }, "additionalProperties": false, "required": [ "type", "props" ] } } }
o26217
{ "properties": { "category": { "description": "The category of the product", "type": "string" }, "price_range": { "properties": { "max_price": { "description": "The maximum price of the product", "type": "number" }, "min_price": { "description": "The minimum price of the product", "type": "number" } }, "required": [ "min_price", "max_price" ], "type": "object" }, "query": { "description": "The search query", "type": "string" } }, "required": [ "query" ], "type": "object" }
search_product_359a1882
{ "properties": { "alldeleted": { "type": "boolean" }, "allinactive": { "type": "boolean" }, "core": { "type": "integer" }, "counters": { "type": "string" }, "datasource": { "type": "string" }, "endtime": { "type": "string" }, "last": { "type": "integer" }, "lastupdate": { "readonly": true, "type": "integer" }, "name": { "type": "string" }, "response": { "readonly": true, "type": "string" }, "starttime": { "type": "string" }, "startupdate": { "readonly": true, "type": "integer" }, "type": { "type": "string" }, "unit": { "enum": [ "HOURS", "DAYS", "MONTHS" ], "type": "string" } }, "title": "systementitydata", "type": "object" }
o32227
{ "properties": { "directory": { "default": "+state", "description": "The name of the folder used to contain/group the generated NgRx files.", "type": "string" }, "facade": { "default": false, "description": "Create a Facade class for the the Feature.", "type": "boolean", "x-prompt": "Would you like to use a Facade with your NgRx state?" }, "minimal": { "default": false, "description": "Only register the root state management setup or feature state.", "type": "boolean" }, "module": { "description": "The path relative from root to NgModule where the feature state will be registered. The host directory will create/use the new state directory.", "type": "string", "x-prompt": "What is the path to the module where this NgRx state should be registered?" }, "name": { "$default": { "$source": "argv", "index": 0 }, "description": "Name of the NgRx feature state, such as \"products\" or \"users\"). Recommended to use the plural form of the name.", "type": "string", "x-prompt": "What name would you like to use for the NgRx feature state? An example would be \"users\"." }, "root": { "default": false, "description": "Setup root or feature state management with NgRx.", "type": "boolean", "x-prompt": "Is this the root state of the application?" }, "skipFormat": { "default": false, "description": "Skip formatting of generated files.", "type": "boolean" }, "skipImport": { "default": false, "description": "Generate NgRx feature files without registering the feature in the NgModule.", "type": "boolean" }, "skipPackageJson": { "default": false, "description": "Do not update the package.json with NgRx dependencies.", "type": "boolean" } }, "required": [ "module" ], "title": "Ngrx Entity Service Schema", "type": "object" }
o15735
{ "$schema": "http://json-schema.org/draft-04/schema", "description": "DESCRIBE NANOPUB", "type": "object", "additionalProperties": false, "required": [ "nanopub" ], "properties": { "nanopub": { "type": "object", "additionalProperties": false, "required": [ "bel_statement", "citation" ], "properties": { "bel_statement": { "type": "string", "title": "BEL Statement", "description": "A BEL Statement is an expression that represents knowledge of the existence of biological entities and relationships between them that are known to be observed within a particular context, based on some source of prior knowledge such as a scientific publication or newly generated experimental data." }, "citation": { "type": "object", "title": "Citation", "description": "The citation specifies the written source where the biological knowledge was referenced.", "required": [ "type", "id" ], "properties": { "type": { "type": "string", "enum": [ "PubMed", "Book", "Journal", "Online Resource", "Other" ], "title": "Citation Type", "description": "The citation type of the reference." }, "id": { "type": [ "string", "number" ], "title": "Citation ID", "description": "The citation identifier (PubMed ID, ISBN, DOI, URL) of the reference." }, "name": { "type": [ "string", "null" ], "title": "Citation Name", "description": "The citation name of the reference." }, "date": { "type": [ "string", "null" ], "title": "Citation Date", "description": "The citation date of the reference." }, "authors": { "type": [ "array", "null" ], "title": "Citation Authors", "description": "The citation authors of the reference.", "items": { "type": "string", "minItems": 0 } }, "comment": { "type": [ "string", "null" ], "title": "Citation Comment", "description": "The citation comment of the reference." } } }, "experiment_context": { "type": [ "array", "null" ], "title": "Experiment Context", "description": "An experiment context specifies the experiment's parameters where this interaction was observed.", "items": { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string", "title": "Annotation Type", "description": "Annotation type listing - sourced from the BEL Annotation resource names" }, "value": { "type": [ "string", "number", "boolean", "array" ], "title": "Annotations", "description": "Annotations such as Homo sapiens, cancer, epithelial tissue sourced from the BEL Annotation resources", "items": { "type": [ "string", "number", "boolean" ] } }, "uri": { "type": "string", "title": "Annotation URI", "description": "URI for Annotation", "format": "uri", "items": { "type": "string", "format": "uri" } } } } }, "support": { "type": [ "string", "null" ], "title": "Support", "description": "Abstract from source text to provide support for this nanopub" }, "references": { "type": [ "object", "null" ], "title": "References", "description": "The references section identifies annotation and namespace URIs.", "properties": { "annotations": { "type": [ "array", "null" ], "title": "Annotation references", "description": "References to annotation resources.", "item": { "type": "object", "properties": { "keyword": { "type": "string", "title": "Keyword", "description": "Keyword that identifies this annotation resource, but only in the context of this Nanopub." }, "uri": { "type": "string", "format": "uri", "title": "URI", "description": "URI that identifies this annotation resource." } }, "required": [ "keyword", "uri" ] } }, "namespaces": { "type": [ "array", "null" ], "title": "Namespace references", "description": "References to namespace resources.", "item": { "type": "object", "properties": { "keyword": { "type": "string", "title": "Keyword", "description": "Keyword that identifies this namespace resource, but only in the context of this Nanopub." }, "uri": { "type": "string", "format": "uri", "title": "URI", "description": "URI that identifies this namespace resource." } }, "required": [ "keyword", "uri" ] } } } }, "metadata": { "type": [ "array", "null" ], "title": "Nanopub resource metadata", "description": "Metadata that describes the nanopub resource.", "items": { "oneOf": [ { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string", "title": "Name", "description": "The name of this metadata property." }, "value": { "type": [ "array", "boolean", "number", "object", "string" ], "title": "Value", "description": "The value of this metadata property.", "items": { "type": [ "array", "boolean", "integer", "number", "null", "object", "string" ] } } } }, { "type": "object", "required": [ "uri" ], "title": "Annotation URI(s)", "description": "URI(s) for Annotations", "properties": { "uri": { "type": [ "string", "array" ], "format": "uri", "items": { "type": "string", "format": "uri" } } } } ] } } } } } }
o63152
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "moduleType": { "enum": ["docker"] }, "status": { "enum": ["running", "stopped"] }, "restartPolicy": { "enum": ["never", "on-failure", "on-unhealthy", "always"] }, "imagePullPolicy": { "enum": ["never", "on-create"] }, "startupOrder": { "type": "integer", "minimum": 0, "maximum": 4294967295 }, "moduleSettings": { "type": "object", "required": ["image"], "properties": { "image": { "type": "string", "examples": ["mcr.microsoft.com/azureiotedge-agent:1.0"] } }, "patternProperties": { "^(createoptions|createOptions)[0-9]*$": { "$ref": "#/definitions/createOptions" } }, "additionalProperties": false }, "env": { "type": "object", "patternProperties": { "^[^\\+#$\\s\\.]+$": { "type": "object", "required": ["value"], "properties": { "value": { "type": ["number", "string", "boolean"] } }, "additionalProperties": false } }, "additionalProperties": false }, "createOptions": { "type": "string", "contentMediaType": "application/json" } }, "id": "https://json.schemastore.org/azure-iot-edgeagent-deployment-1.1.json", "properties": { "$edgeAgent": { "type": "object", "title": "Configuration for the edgeAgent module", "required": ["properties.desired"], "properties": { "properties.desired": { "type": "object", "required": ["schemaVersion", "runtime", "systemModules", "modules"], "properties": { "schemaVersion": { "type": "string", "pattern": "1.1" }, "runtime": { "type": "object", "required": ["type", "settings"], "properties": { "type": { "$ref": "#/definitions/moduleType" }, "settings": { "type": "object", "properties": { "minDockerVersion": { "type": "string", "examples": ["v1.25"] }, "loggingOptions": { "type": "string" }, "registryCredentials": { "type": "object", "patternProperties": { "^[^\\.\\$# ]+$": { "type": "object", "required": ["username", "password", "address"], "properties": { "username": { "type": "string" }, "password": { "type": "string" }, "address": { "type": "string", "pattern": "^[^\\s]+$" } }, "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false }, "systemModules": { "type": "object", "required": ["edgeAgent", "edgeHub"], "properties": { "edgeAgent": { "type": "object", "required": ["type", "settings"], "properties": { "type": { "$ref": "#/definitions/moduleType" }, "settings": { "$ref": "#/definitions/moduleSettings" }, "env": { "$ref": "#/definitions/env" }, "imagePullPolicy": { "$ref": "#/definitions/imagePullPolicy" } }, "additionalProperties": false }, "edgeHub": { "type": "object", "title": "The Edgehub Schema", "required": ["type", "settings", "status", "restartPolicy"], "properties": { "type": { "$ref": "#/definitions/moduleType" }, "settings": { "$ref": "#/definitions/moduleSettings" }, "env": { "$ref": "#/definitions/env" }, "status": { "$ref": "#/definitions/status" }, "restartPolicy": { "$ref": "#/definitions/restartPolicy" }, "imagePullPolicy": { "$ref": "#/definitions/imagePullPolicy" }, "startupOrder": { "$ref": "#/definitions/startupOrder" } }, "additionalProperties": false } }, "additionalProperties": false }, "modules": { "type": "object", "patternProperties": { "^[a-zA-Z0-9_-]+$": { "type": "object", "required": ["type", "status", "restartPolicy", "settings"], "properties": { "version": { "type": "string", "examples": ["1.0"] }, "type": { "$ref": "#/definitions/moduleType" }, "status": { "$ref": "#/definitions/status" }, "restartPolicy": { "$ref": "#/definitions/restartPolicy" }, "env": { "$ref": "#/definitions/env" }, "settings": { "$ref": "#/definitions/moduleSettings" }, "imagePullPolicy": { "$ref": "#/definitions/imagePullPolicy" }, "startupOrder": { "$ref": "#/definitions/startupOrder" } }, "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false } }, "additionalProperties": false } }, "required": ["$edgeAgent"], "title": "JSON schema for Azure IoT EdgeAgent Deployment version 1.1", "type": "object" }
azure-iot-edgeagent-deployment-1
{ "properties": { "education": { "items": { "properties": { "degree": { "description": "The degree obtained", "type": "string" }, "school": { "description": "The name of the school", "type": "string" }, "year": { "description": "The year of graduation", "type": "integer" } }, "required": [ "school", "degree", "year" ], "type": "object" }, "type": "array" }, "experience": { "items": { "properties": { "company": { "description": "The name of the company", "type": "string" }, "duration": { "description": "The duration of employment in the company", "type": "string" }, "position": { "description": "The position held in the company", "type": "string" } }, "required": [ "company", "position", "duration" ], "type": "object" }, "type": "array" }, "name": { "description": "The name of the person", "type": "string" } }, "required": [ "name", "experience", "education" ], "type": "object" }
create_resume_3dc11395
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "side": { "description": "The side of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "The shape to calculate the area of", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_7430a12a
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "http://schemas.digitallinguistics.io/Abbreviation-2.1.0.json", "title": "Abbreviation", "type": "string", "pattern": "^[(a-z)|(A-Z)|(0-9)]+$", "description": "A human-readable abbreviation, containing on letters `a-z`, `A-Z`, and numbers `0-9` (no spaces allowed).", "examples": [ "chiti", "ctm" ] }
o36250
{ "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": { "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$", "type": "string" }, "analytics_identifier": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations." }, "body_html_and_govspeak": { "anyOf": [ { "$ref": "#/definitions/multiple_content_types" } ], "description": "The main content provided as HTML with the govspeak markdown it's rendered from" }, "change_history": { "items": { "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "_format": "date-time", "type": "string" } }, "required": [ "public_timestamp", "note" ], "type": "object" }, "type": "array" }, "description": { "type": "string" }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "additionalProperties": false, "properties": { "change_history": { "$ref": "#/definitions/change_history" }, "continuation_link": { "_format": "uri", "description": "Link to licence competent authority.", "type": "string" }, "external_related_links": { "$ref": "#/definitions/external_related_links" }, "licence_identifier": { "description": "Unique ID for a licence, starting with an LGSL code.", "type": "string" }, "licence_overview": { "$ref": "#/definitions/body_html_and_govspeak" }, "licence_short_description": { "description": "One line curated description, will appear in Licence Finder results.", "type": "string" }, "will_continue_on": { "$ref": "#/definitions/will_continue_on" } }, "required": [ "licence_identifier" ], "type": "object" }, "external_link": { "additionalProperties": false, "properties": { "title": { "type": "string" }, "url": { "_format": "uri", "type": "string" } }, "required": [ "title", "url" ], "type": "object" }, "external_related_links": { "items": { "$ref": "#/definitions/external_link" }, "type": "array" }, "first_published_at": { "_format": "date-time", "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "frontend_links": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "frontend_links_with_base_path": { "items": { "additionalProperties": true, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "api_path": { "$ref": "#/definitions/absolute_path" }, "api_url": { "_format": "uri", "description": "DEPRECATED: api_path should be used instead of api_url. This is due to values of api_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "document_type": { "type": "string" }, "links": { "patternProperties": { "^[a-z_]+$": { "$ref": "#/definitions/frontend_links_with_base_path" } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "public_updated_at": { "oneOf": [ { "$ref": "#/definitions/public_updated_at" }, { "type": "null" } ] }, "schema_name": { "type": "string" }, "title": { "type": "string" }, "web_url": { "_format": "uri", "description": "DEPRECATED: base_path should be used instead of web_url. This is due to values of web_url being tied to an environment which can cause problems when data is synced between environments. In time this field will be removed by the Publishing Platform team.", "type": "string" } }, "required": [ "base_path", "content_id", "locale", "title" ], "type": "object" }, "type": "array" }, "govuk_request_id": { "type": [ "string", "null" ] }, "guid": { "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$", "type": "string" }, "guid_list": { "items": { "$ref": "#/definitions/guid" }, "type": "array", "_uniqueItems": true }, "locale": { "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ], "type": "string" }, "multiple_content_types": { "items": { "additionalProperties": false, "properties": { "content": { "type": "string" }, "content_type": { "type": "string" } }, "required": [ "content_type", "content" ], "type": "object" }, "type": "array" }, "payload_version": { "description": "Counter to indicate when the payload was generated", "type": "integer" }, "public_updated_at": { "_format": "date-time", "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string" }, "publishing_app_name": { "description": "The application that published this item.", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ], "type": "string" }, "publishing_request_id": { "description": "A unique identifier used to track publishing requests to rendered content", "oneOf": [ { "type": "string" }, { "type": "null" } ] }, "rendering_app": { "description": "The application that renders this item.", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ], "type": "string" }, "route": { "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } }, "required": [ "path", "type" ], "type": "object" }, "routes": { "items": { "$ref": "#/definitions/route" }, "minItems": 1, "type": "array" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] }, "will_continue_on": { "description": "Description of the website the adjoining external link will be taking the user to", "type": "string" }, "withdrawn_notice": { "additionalProperties": false, "properties": { "explanation": { "type": "string" }, "withdrawn_at": { "format": "date-time" } }, "type": "object" } }, "properties": { "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "content_id": { "$ref": "#/definitions/guid" }, "content_purpose_document_supertype": { "description": "DEPRECATED. Use `content_purpose_subgroup`.", "type": "string" }, "content_purpose_subgroup": { "description": "Document subgroup grouping documents by purpose. Narrows down the purpose defined in content_purpose_supergroup.", "type": "string" }, "content_purpose_supergroup": { "description": "Document supergroup grouping documents by a purpose", "type": "string" }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "enum": [ "licence" ], "type": "string" }, "email_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "expanded_links": { "additionalProperties": false, "properties": { "available_translations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "child_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "children": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "document_collections": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "facet_groups": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/frontend_links", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "level_one_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "mainstream_browse_pages": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The user needs this piece of content meets." }, "ministers": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The parent content item.", "maxItems": 1 }, "part_of_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policies": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "policy_areas": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "related_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "role_appointments": { "$ref": "#/definitions/frontend_links", "description": "Link type automatically added by Publishing API" }, "secondary_to_step_navs": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "suggested_ordered_related_items": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Prototype-stage taxonomy label for this content item" }, "topic_taxonomy_taxons": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Link type automatically added by Publishing API" }, "topics": { "$ref": "#/definitions/frontend_links_with_base_path", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "government_document_supertype": { "description": "Document supertype grouping intended to power the Whitehall finders and email subscriptions", "type": "string" }, "govuk_request_id": { "$ref": "#/definitions/govuk_request_id" }, "links": { "additionalProperties": false, "properties": { "facet_groups": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging tree roots for this content item. A content item my belong to many facet groups without having any specific facet_values links." }, "facet_values": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage metadata tagging values for this content item, a content item can be linked to many facet values from varying facet groups." }, "finder": { "$ref": "#/definitions/guid_list", "description": "Powers links from content back to finders the content is surfaced on" }, "lead_organisations": { "$ref": "#/definitions/guid_list", "description": "DEPRECATED: A subset of organisations that should be emphasised in relation to this content item. All organisations specified here should also be part of the organisations array." }, "mainstream_browse_pages": { "$ref": "#/definitions/guid_list", "description": "Powers the /browse section of the site. These are known as sections in some legacy apps." }, "meets_user_needs": { "$ref": "#/definitions/guid_list", "description": "The user needs this piece of content meets." }, "ordered_related_items": { "$ref": "#/definitions/guid_list", "description": "Related items, can be any page on GOV.UK. Mostly used for mainstream content to power the sidebar. Ordering of the links is determined by the editor in Content Tagger." }, "ordered_related_items_overrides": { "$ref": "#/definitions/guid_list", "description": "Related items, can be any page on GOV.UK. Overrides 'more like this' automatically generated links in the beta navigation." }, "organisations": { "$ref": "#/definitions/guid_list", "description": "All organisations linked to this content item. This should include lead organisations." }, "original_primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "description": "The organisation that published the original version of the page. Corresponds to the first of the 'Lead organisations' in Whitehall for the first edition, and is empty for all other publishing applications." }, "parent": { "$ref": "#/definitions/guid_list", "description": "The parent content item.", "maxItems": 1 }, "policy_areas": { "$ref": "#/definitions/guid_list", "description": "A largely deprecated tag currently only used to power email alerts." }, "primary_publishing_organisation": { "$ref": "#/definitions/guid_list", "description": "The organisation that published the page. Corresponds to the first of the 'Lead organisations' in Whitehall, and is empty for all other publishing applications.", "maxItems": 1 }, "suggested_ordered_related_items": { "$ref": "#/definitions/guid_list", "description": "New A/B test suggestions for related items. Used for displaying related content on most pages, except for step-by-step and fatality notices. Links and their ordering are determined by the machine learning algorithms included in this A/B test." }, "taxons": { "$ref": "#/definitions/guid_list", "description": "Prototype-stage taxonomy label for this content item" }, "topics": { "$ref": "#/definitions/guid_list", "description": "Powers the /topic section of the site. These are known as specialist sectors in some legacy apps." } }, "type": "object" }, "locale": { "$ref": "#/definitions/locale" }, "navigation_document_supertype": { "description": "Document type grouping powering the new taxonomy-based navigation pages", "type": "string" }, "need_ids": { "items": { "type": "string" }, "type": "array" }, "payload_version": { "$ref": "#/definitions/payload_version" }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "enum": [ "alpha", "beta", "live" ], "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "publishing_request_id": { "$ref": "#/definitions/publishing_request_id" }, "redirects": { "additionalItems": false, "items": {}, "type": "array" }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "enum": [ "licence" ], "type": "string" }, "search_user_need_document_supertype": { "description": "Document supertype grouping core and government documents", "type": "string" }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" }, "user_journey_document_supertype": { "description": "Document type grouping powering analytics of user journeys", "type": "string" }, "user_need_document_supertype": { "description": "DEPRECATED. Use `content_purpose_document_supertype`.", "type": "string" }, "withdrawn_notice": { "$ref": "#/definitions/withdrawn_notice" } }, "required": [ "analytics_identifier", "base_path", "content_id", "description", "details", "document_type", "email_document_supertype", "expanded_links", "first_published_at", "government_document_supertype", "govuk_request_id", "links", "locale", "navigation_document_supertype", "payload_version", "phase", "public_updated_at", "publishing_app", "redirects", "rendering_app", "routes", "schema_name", "title", "update_type", "user_journey_document_supertype" ], "type": "object" }
o21276
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the shape (optional)", "type": "number" }, "height": { "description": "The height of the shape (optional)", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape (optional)", "type": "number" }, "width": { "description": "The width of the shape (optional)", "type": "number" } }, "required": [ "length" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. square, circle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_380ef84d
{ "properties": { "action": { "type": "string" }, "expression": { "type": "string" }, "input": { "type": "string" }, "istruncatedrefresult": { "readonly": true, "type": "boolean" }, "pitactionerrorresult": { "readonly": true, "type": "string" }, "pitactionevaltime": { "readonly": true, "type": "integer" }, "pitboolerrorresult": { "readonly": true, "type": "string" }, "pitboolevaltime": { "readonly": true, "type": "integer" }, "pitboolresult": { "readonly": true, "type": "boolean" }, "pitdoubleerrorresult": { "readonly": true, "type": "string" }, "pitdoubleevaltime": { "readonly": true, "type": "integer" }, "pitdoubleresult": { "readonly": true, "type": "number" }, "pitmodifiedinputdata": { "readonly": true, "type": "string" }, "pitnewoffsetarray": { "readonly": true, "type": "object" }, "pitnumerrorresult": { "readonly": true, "type": "string" }, "pitnumevaltime": { "readonly": true, "type": "integer" }, "pitnumresult": { "readonly": true, "type": "integer" }, "pitoffseterrorresult": { "readonly": true, "type": "string" }, "pitoffsetevaltime": { "readonly": true, "type": "integer" }, "pitoffsetlengtharray": { "readonly": true, "type": "object" }, "pitoffsetresult": { "readonly": true, "type": "integer" }, "pitoffsetresultlen": { "readonly": true, "type": "integer" }, "pitoldoffsetarray": { "readonly": true, "type": "object" }, "pitoperationperformerarray": { "enum": [ "INSERT", "MODIFY", "DELETE" ], "readonly": true, "type": "object" }, "pitreferrorresult": { "readonly": true, "type": "string" }, "pitrefevaltime": { "readonly": true, "type": "integer" }, "pitrefresult": { "readonly": true, "type": "string" }, "pitulongerrorresult": { "readonly": true, "type": "string" }, "pitulongevaltime": { "readonly": true, "type": "integer" }, "pitulongresult": { "readonly": true, "type": "integer" }, "type": { "enum": [ "HTTP_REQ", "HTTP_RES", "TEXT" ], "type": "string" } }, "title": "policyevaluation", "type": "object" }
o30832